SYMBOL INDEX (2660 symbols across 187 files) FILE: config/config.go function DefaultConfig (line 9) | func DefaultConfig() *Config { type Config (line 15) | type Config struct function Configure (line 22) | func Configure() *Config { function RegisterFlags (line 33) | func RegisterFlags() { FILE: main.go function configure (line 30) | func configure() { function main (line 43) | func main() { FILE: vendor/github.com/gorilla/context/context.go function Set (line 20) | func Set(r *http.Request, key, val interface{}) { function Get (line 31) | func Get(r *http.Request, key interface{}) interface{} { function GetOk (line 43) | func GetOk(r *http.Request, key interface{}) (interface{}, bool) { function GetAll (line 55) | func GetAll(r *http.Request) map[interface{}]interface{} { function GetAllOk (line 71) | func GetAllOk(r *http.Request) (map[interface{}]interface{}, bool) { function Delete (line 83) | func Delete(r *http.Request, key interface{}) { function Clear (line 95) | func Clear(r *http.Request) { function clear (line 102) | func clear(r *http.Request) { function Purge (line 116) | func Purge(maxAge int) int { function ClearHandler (line 138) | func ClearHandler(h http.Handler) http.Handler { FILE: vendor/github.com/gorilla/mux/context_gorilla.go function contextGet (line 11) | func contextGet(r *http.Request, key interface{}) interface{} { function contextSet (line 15) | func contextSet(r *http.Request, key, val interface{}) *http.Request { function contextClear (line 24) | func contextClear(r *http.Request) { FILE: vendor/github.com/gorilla/mux/context_native.go function contextGet (line 10) | func contextGet(r *http.Request, key interface{}) interface{} { function contextSet (line 14) | func contextSet(r *http.Request, key, val interface{}) *http.Request { function contextClear (line 22) | func contextClear(r *http.Request) { FILE: vendor/github.com/gorilla/mux/mux.go function NewRouter (line 17) | func NewRouter() *Router { type Router (line 39) | type Router struct method Match (line 61) | func (r *Router) Match(req *http.Request, match *RouteMatch) bool { method ServeHTTP (line 80) | func (r *Router) ServeHTTP(w http.ResponseWriter, req *http.Request) { method Get (line 118) | func (r *Router) Get(name string) *Route { method GetRoute (line 124) | func (r *Router) GetRoute(name string) *Route { method StrictSlash (line 142) | func (r *Router) StrictSlash(value bool) *Router { method SkipClean (line 155) | func (r *Router) SkipClean(value bool) *Router { method UseEncodedPath (line 170) | func (r *Router) UseEncodedPath() *Router { method getNamedRoutes (line 180) | func (r *Router) getNamedRoutes() map[string]*Route { method getRegexpGroup (line 192) | func (r *Router) getRegexpGroup() *routeRegexpGroup { method buildVars (line 199) | func (r *Router) buildVars(m map[string]string) map[string]string { method NewRoute (line 211) | func (r *Router) NewRoute() *Route { method Handle (line 219) | func (r *Router) Handle(path string, handler http.Handler) *Route { method HandleFunc (line 225) | func (r *Router) HandleFunc(path string, f func(http.ResponseWriter, method Headers (line 232) | func (r *Router) Headers(pairs ...string) *Route { method Host (line 238) | func (r *Router) Host(tpl string) *Route { method MatcherFunc (line 244) | func (r *Router) MatcherFunc(f MatcherFunc) *Route { method Methods (line 250) | func (r *Router) Methods(methods ...string) *Route { method Path (line 256) | func (r *Router) Path(tpl string) *Route { method PathPrefix (line 262) | func (r *Router) PathPrefix(tpl string) *Route { method Queries (line 268) | func (r *Router) Queries(pairs ...string) *Route { method Schemes (line 274) | func (r *Router) Schemes(schemes ...string) *Route { method BuildVarsFunc (line 280) | func (r *Router) BuildVarsFunc(f BuildVarsFunc) *Route { method Walk (line 287) | func (r *Router) Walk(walkFn WalkFunc) error { method walk (line 300) | func (r *Router) walk(walkFn WalkFunc, ancestors []*Route) error { type WalkFunc (line 298) | type WalkFunc type RouteMatch (line 338) | type RouteMatch struct type contextKey (line 344) | type contextKey constant varsKey (line 347) | varsKey contextKey = iota constant routeKey (line 348) | routeKey function Vars (line 352) | func Vars(r *http.Request) map[string]string { function CurrentRoute (line 364) | func CurrentRoute(r *http.Request) *Route { function setVars (line 371) | func setVars(r *http.Request, val interface{}) *http.Request { function setCurrentRoute (line 375) | func setCurrentRoute(r *http.Request, val interface{}) *http.Request { function getPath (line 385) | func getPath(req *http.Request) string { function cleanPath (line 407) | func cleanPath(p string) string { function uniqueVars (line 425) | func uniqueVars(s1, s2 []string) error { function checkPairs (line 438) | func checkPairs(pairs ...string) (int, error) { function mapFromPairsToString (line 449) | func mapFromPairsToString(pairs ...string) (map[string]string, error) { function mapFromPairsToRegex (line 463) | func mapFromPairsToRegex(pairs ...string) (map[string]*regexp.Regexp, er... function matchInArray (line 480) | func matchInArray(arr []string, value string) bool { function matchMapWithString (line 490) | func matchMapWithString(toCheck map[string]string, toMatch map[string][]... function matchMapWithRegex (line 518) | func matchMapWithRegex(toCheck map[string]*regexp.Regexp, toMatch map[st... FILE: vendor/github.com/gorilla/mux/regexp.go function newRouteRegexp (line 27) | func newRouteRegexp(tpl string, matchHost, matchPrefix, matchQuery, stri... type routeRegexp (line 135) | type routeRegexp struct method Match (line 158) | func (r *routeRegexp) Match(req *http.Request, match *RouteMatch) bool { method url (line 174) | func (r *routeRegexp) url(values map[string]string) (string, error) { method getURLQuery (line 202) | func (r *routeRegexp) getURLQuery(req *http.Request) string { method matchQueryString (line 215) | func (r *routeRegexp) matchQueryString(req *http.Request) bool { function braceIndices (line 221) | func braceIndices(s string) ([]int, error) { function varGroupName (line 245) | func varGroupName(idx int) string { type routeRegexpGroup (line 254) | type routeRegexpGroup struct method setMatch (line 261) | func (v *routeRegexpGroup) setMatch(req *http.Request, m *RouteMatch, ... function getHost (line 306) | func getHost(r *http.Request) string { function extractVars (line 319) | func extractVars(input string, matches []int, names []string, output map... FILE: vendor/github.com/gorilla/mux/route.go type Route (line 17) | type Route struct method SkipClean (line 44) | func (r *Route) SkipClean() bool { method Match (line 49) | func (r *Route) Match(req *http.Request, match *RouteMatch) bool { method GetError (line 81) | func (r *Route) GetError() error { method BuildOnly (line 86) | func (r *Route) BuildOnly() *Route { method Handler (line 94) | func (r *Route) Handler(handler http.Handler) *Route { method HandlerFunc (line 102) | func (r *Route) HandlerFunc(f func(http.ResponseWriter, *http.Request)... method GetHandler (line 107) | func (r *Route) GetHandler() http.Handler { method Name (line 115) | func (r *Route) Name(name string) *Route { method GetName (line 128) | func (r *Route) GetName() string { method addMatcher (line 142) | func (r *Route) addMatcher(m matcher) *Route { method addRegexpMatcher (line 150) | func (r *Route) addRegexpMatcher(tpl string, matchHost, matchPrefix, m... method Headers (line 213) | func (r *Route) Headers(pairs ...string) *Route { method HeadersRegexp (line 238) | func (r *Route) HeadersRegexp(pairs ...string) *Route { method Host (line 266) | func (r *Route) Host(tpl string) *Route { method MatcherFunc (line 282) | func (r *Route) MatcherFunc(f MatcherFunc) *Route { method Methods (line 298) | func (r *Route) Methods(methods ...string) *Route { method Path (line 326) | func (r *Route) Path(tpl string) *Route { method PathPrefix (line 342) | func (r *Route) PathPrefix(tpl string) *Route { method Queries (line 366) | func (r *Route) Queries(pairs ...string) *Route { method Schemes (line 393) | func (r *Route) Schemes(schemes ...string) *Route { method BuildVarsFunc (line 408) | func (r *Route) BuildVarsFunc(f BuildVarsFunc) *Route { method Subrouter (line 427) | func (r *Route) Subrouter() *Router { method URL (line 468) | func (r *Route) URL(pairs ...string) (*url.URL, error) { method URLHost (line 502) | func (r *Route) URLHost(pairs ...string) (*url.URL, error) { method URLPath (line 526) | func (r *Route) URLPath(pairs ...string) (*url.URL, error) { method GetPathTemplate (line 551) | func (r *Route) GetPathTemplate() (string, error) { method GetHostTemplate (line 566) | func (r *Route) GetHostTemplate() (string, error) { method prepareVars (line 578) | func (r *Route) prepareVars(pairs ...string) (map[string]string, error) { method buildVars (line 586) | func (r *Route) buildVars(m map[string]string) map[string]string { method getNamedRoutes (line 608) | func (r *Route) getNamedRoutes() map[string]*Route { method getRegexpGroup (line 617) | func (r *Route) getRegexpGroup() *routeRegexpGroup { type matcher (line 137) | type matcher interface type headerMatcher (line 198) | type headerMatcher method Match (line 200) | func (m headerMatcher) Match(r *http.Request, match *RouteMatch) bool { type headerRegexMatcher (line 223) | type headerRegexMatcher method Match (line 225) | func (m headerRegexMatcher) Match(r *http.Request, match *RouteMatch) ... type MatcherFunc (line 274) | type MatcherFunc method Match (line 277) | func (m MatcherFunc) Match(r *http.Request, match *RouteMatch) bool { type methodMatcher (line 289) | type methodMatcher method Match (line 291) | func (m methodMatcher) Match(r *http.Request, match *RouteMatch) bool { type schemeMatcher (line 385) | type schemeMatcher method Match (line 387) | func (m schemeMatcher) Match(r *http.Request, match *RouteMatch) bool { type BuildVarsFunc (line 404) | type BuildVarsFunc type parentRoute (line 601) | type parentRoute interface FILE: vendor/github.com/gorilla/pat/pat.go function New (line 18) | func New() *Router { type Router (line 25) | type Router struct method Add (line 30) | func (r *Router) Add(meth, pat string, h http.Handler) *mux.Route { method Options (line 35) | func (r *Router) Options(pat string, h http.HandlerFunc) *mux.Route { method Delete (line 40) | func (r *Router) Delete(pat string, h http.HandlerFunc) *mux.Route { method Head (line 45) | func (r *Router) Head(pat string, h http.HandlerFunc) *mux.Route { method Get (line 50) | func (r *Router) Get(pat string, h http.HandlerFunc) *mux.Route { method Post (line 55) | func (r *Router) Post(pat string, h http.HandlerFunc) *mux.Route { method Put (line 60) | func (r *Router) Put(pat string, h http.HandlerFunc) *mux.Route { method Patch (line 65) | func (r *Router) Patch(pat string, h http.HandlerFunc) *mux.Route { method ServeHTTP (line 70) | func (r *Router) ServeHTTP(w http.ResponseWriter, req *http.Request) { function registerVars (line 96) | func registerVars(r *http.Request, vars map[string]string) { function cleanPath (line 112) | func cleanPath(p string) string { FILE: vendor/github.com/gorilla/websocket/client.go function NewClient (line 39) | func NewClient(netConn net.Conn, u *url.URL, requestHeader http.Header, ... type Dialer (line 51) | type Dialer struct method Dial (line 167) | func (d *Dialer) Dial(urlStr string, requestHeader http.Header) (*Conn... function parseURL (line 95) | func parseURL(s string) (*url.URL, error) { function hostPortNoPort (line 135) | func hostPortNoPort(u *url.URL) (hostPort, hostNoPort string) { FILE: vendor/github.com/gorilla/websocket/client_clone.go function cloneTLSConfig (line 11) | func cloneTLSConfig(cfg *tls.Config) *tls.Config { FILE: vendor/github.com/gorilla/websocket/client_clone_legacy.go function cloneTLSConfig (line 15) | func cloneTLSConfig(cfg *tls.Config) *tls.Config { FILE: vendor/github.com/gorilla/websocket/compression.go constant minCompressionLevel (line 16) | minCompressionLevel = -2 constant maxCompressionLevel (line 17) | maxCompressionLevel = flate.BestCompression constant defaultCompressionLevel (line 18) | defaultCompressionLevel = 1 function decompressNoContextTakeover (line 28) | func decompressNoContextTakeover(r io.Reader) io.ReadCloser { function isValidCompressionLevel (line 40) | func isValidCompressionLevel(level int) bool { function compressNoContextTakeover (line 44) | func compressNoContextTakeover(w io.WriteCloser, level int) io.WriteClos... type truncWriter (line 58) | type truncWriter struct method Write (line 64) | func (w *truncWriter) Write(p []byte) (int, error) { type flateWriteWrapper (line 92) | type flateWriteWrapper struct method Write (line 98) | func (w *flateWriteWrapper) Write(p []byte) (int, error) { method Close (line 105) | func (w *flateWriteWrapper) Close() error { type flateReadWrapper (line 122) | type flateReadWrapper struct method Read (line 126) | func (r *flateReadWrapper) Read(p []byte) (int, error) { method Close (line 140) | func (r *flateReadWrapper) Close() error { FILE: vendor/github.com/gorilla/websocket/conn.go constant finalBit (line 23) | finalBit = 1 << 7 constant rsv1Bit (line 24) | rsv1Bit = 1 << 6 constant rsv2Bit (line 25) | rsv2Bit = 1 << 5 constant rsv3Bit (line 26) | rsv3Bit = 1 << 4 constant maskBit (line 29) | maskBit = 1 << 7 constant maxFrameHeaderSize (line 31) | maxFrameHeaderSize = 2 + 8 + 4 constant maxControlFramePayloadSize (line 32) | maxControlFramePayloadSize = 125 constant writeWait (line 34) | writeWait = time.Second constant defaultReadBufferSize (line 36) | defaultReadBufferSize = 4096 constant defaultWriteBufferSize (line 37) | defaultWriteBufferSize = 4096 constant continuationFrame (line 39) | continuationFrame = 0 constant noFrame (line 40) | noFrame = -1 constant CloseNormalClosure (line 45) | CloseNormalClosure = 1000 constant CloseGoingAway (line 46) | CloseGoingAway = 1001 constant CloseProtocolError (line 47) | CloseProtocolError = 1002 constant CloseUnsupportedData (line 48) | CloseUnsupportedData = 1003 constant CloseNoStatusReceived (line 49) | CloseNoStatusReceived = 1005 constant CloseAbnormalClosure (line 50) | CloseAbnormalClosure = 1006 constant CloseInvalidFramePayloadData (line 51) | CloseInvalidFramePayloadData = 1007 constant ClosePolicyViolation (line 52) | ClosePolicyViolation = 1008 constant CloseMessageTooBig (line 53) | CloseMessageTooBig = 1009 constant CloseMandatoryExtension (line 54) | CloseMandatoryExtension = 1010 constant CloseInternalServerErr (line 55) | CloseInternalServerErr = 1011 constant CloseServiceRestart (line 56) | CloseServiceRestart = 1012 constant CloseTryAgainLater (line 57) | CloseTryAgainLater = 1013 constant CloseTLSHandshake (line 58) | CloseTLSHandshake = 1015 constant TextMessage (line 65) | TextMessage = 1 constant BinaryMessage (line 68) | BinaryMessage = 2 constant CloseMessage (line 73) | CloseMessage = 8 constant PingMessage (line 77) | PingMessage = 9 constant PongMessage (line 81) | PongMessage = 10 type netError (line 93) | type netError struct method Error (line 99) | func (e *netError) Error() string { return e.msg } method Temporary (line 100) | func (e *netError) Temporary() bool { return e.temporary } method Timeout (line 101) | func (e *netError) Timeout() bool { return e.timeout } type CloseError (line 104) | type CloseError struct method Error (line 113) | func (e *CloseError) Error() string { function IsCloseError (line 151) | func IsCloseError(err error, codes ...int) bool { function IsUnexpectedCloseError (line 164) | func IsUnexpectedCloseError(err error, expectedCodes ...int) bool { function newMaskKey (line 184) | func newMaskKey() [4]byte { function hideTempErr (line 189) | func hideTempErr(err error) error { function isControl (line 196) | func isControl(frameType int) bool { function isData (line 200) | func isData(frameType int) bool { function isValidReceivedCloseCode (line 223) | func isValidReceivedCloseCode(code int) bool { type Conn (line 228) | type Conn struct method Subprotocol (line 342) | func (c *Conn) Subprotocol() string { method Close (line 347) | func (c *Conn) Close() error { method LocalAddr (line 352) | func (c *Conn) LocalAddr() net.Addr { method RemoteAddr (line 357) | func (c *Conn) RemoteAddr() net.Addr { method writeFatal (line 363) | func (c *Conn) writeFatal(err error) error { method write (line 373) | func (c *Conn) write(frameType int, deadline time.Time, bufs ...[]byte... method WriteControl (line 402) | func (c *Conn) WriteControl(messageType int, data []byte, deadline tim... method prepWrite (line 463) | func (c *Conn) prepWrite(messageType int) error { method NextWriter (line 487) | func (c *Conn) NextWriter(messageType int) (io.WriteCloser, error) { method WritePreparedMessage (line 707) | func (c *Conn) WritePreparedMessage(pm *PreparedMessage) error { method WriteMessage (line 730) | func (c *Conn) WriteMessage(messageType int, data []byte) error { method SetWriteDeadline (line 759) | func (c *Conn) SetWriteDeadline(t time.Time) error { method advanceFrame (line 766) | func (c *Conn) advanceFrame() (int, error) { method handleProtocolError (line 912) | func (c *Conn) handleProtocolError(message string) error { method NextReader (line 927) | func (c *Conn) NextReader() (messageType int, r io.Reader, err error) { method ReadMessage (line 1017) | func (c *Conn) ReadMessage() (messageType int, p []byte, err error) { method SetReadDeadline (line 1031) | func (c *Conn) SetReadDeadline(t time.Time) error { method SetReadLimit (line 1038) | func (c *Conn) SetReadLimit(limit int64) { method CloseHandler (line 1043) | func (c *Conn) CloseHandler() func(code int, text string) error { method SetCloseHandler (line 1060) | func (c *Conn) SetCloseHandler(h func(code int, text string) error) { method PingHandler (line 1075) | func (c *Conn) PingHandler() func(appData string) error { method SetPingHandler (line 1085) | func (c *Conn) SetPingHandler(h func(appData string) error) { method PongHandler (line 1101) | func (c *Conn) PongHandler() func(appData string) error { method SetPongHandler (line 1111) | func (c *Conn) SetPongHandler(h func(appData string) error) { method UnderlyingConn (line 1120) | func (c *Conn) UnderlyingConn() net.Conn { method EnableWriteCompression (line 1127) | func (c *Conn) EnableWriteCompression(enable bool) { method SetCompressionLevel (line 1135) | func (c *Conn) SetCompressionLevel(level int) error { function newConn (line 267) | func newConn(conn net.Conn, isServer bool, readBufferSize, writeBufferSi... type writeHook (line 271) | type writeHook struct method Write (line 275) | func (wh *writeHook) Write(p []byte) (int, error) { function newConnBRW (line 280) | func newConnBRW(conn net.Conn, isServer bool, readBufferSize, writeBuffe... type messageWriter (line 506) | type messageWriter struct method fatal (line 514) | func (w *messageWriter) fatal(err error) error { method flushFrame (line 524) | func (w *messageWriter) flushFrame(final bool, extra []byte) error { method ncopy (line 611) | func (w *messageWriter) ncopy(max int) (int, error) { method Write (line 625) | func (w *messageWriter) Write(p []byte) (int, error) { method WriteString (line 652) | func (w *messageWriter) WriteString(p string) (int, error) { method ReadFrom (line 670) | func (w *messageWriter) ReadFrom(r io.Reader) (nn int64, err error) { method Close (line 695) | func (w *messageWriter) Close() error { type messageReader (line 964) | type messageReader struct method Read (line 966) | func (r *messageReader) Read(b []byte) (int, error) { method Close (line 1011) | func (r *messageReader) Close() error { function FormatCloseMessage (line 1144) | func FormatCloseMessage(closeCode int, text string) []byte { FILE: vendor/github.com/gorilla/websocket/conn_read.go method read (line 11) | func (c *Conn) read(n int) ([]byte, error) { FILE: vendor/github.com/gorilla/websocket/conn_read_legacy.go method read (line 11) | func (c *Conn) read(n int) ([]byte, error) { FILE: vendor/github.com/gorilla/websocket/json.go function WriteJSON (line 13) | func WriteJSON(c *Conn, v interface{}) error { method WriteJSON (line 21) | func (c *Conn) WriteJSON(v interface{}) error { function ReadJSON (line 35) | func ReadJSON(c *Conn, v interface{}) error { method ReadJSON (line 44) | func (c *Conn) ReadJSON(v interface{}) error { FILE: vendor/github.com/gorilla/websocket/mask.go constant wordSize (line 11) | wordSize = int(unsafe.Sizeof(uintptr(0))) function maskBytes (line 13) | func maskBytes(key [4]byte, pos int, b []byte) int { FILE: vendor/github.com/gorilla/websocket/mask_safe.go function maskBytes (line 9) | func maskBytes(key [4]byte, pos int, b []byte) int { FILE: vendor/github.com/gorilla/websocket/prepared.go type PreparedMessage (line 19) | type PreparedMessage struct method frame (line 63) | func (pm *PreparedMessage) frame(key prepareKey) (int, []byte, error) { type prepareKey (line 28) | type prepareKey struct type preparedFrame (line 35) | type preparedFrame struct function NewPreparedMessage (line 44) | func NewPreparedMessage(messageType int, data []byte) (*PreparedMessage,... type prepareConn (line 97) | type prepareConn struct method Write (line 102) | func (pc *prepareConn) Write(p []byte) (int, error) { return pc... method SetWriteDeadline (line 103) | func (pc *prepareConn) SetWriteDeadline(t time.Time) error { return nil } FILE: vendor/github.com/gorilla/websocket/server.go type HandshakeError (line 18) | type HandshakeError struct method Error (line 22) | func (e HandshakeError) Error() string { return e.message } type Upgrader (line 26) | type Upgrader struct method returnError (line 58) | func (u *Upgrader) returnError(w http.ResponseWriter, r *http.Request,... method selectSubprotocol (line 82) | func (u *Upgrader) selectSubprotocol(r *http.Request, responseHeader h... method Upgrade (line 106) | func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, res... function checkSameOrigin (line 70) | func checkSameOrigin(r *http.Request) bool { function Upgrade (line 260) | func Upgrade(w http.ResponseWriter, r *http.Request, responseHeader http... function Subprotocols (line 274) | func Subprotocols(r *http.Request) []string { function IsWebSocketUpgrade (line 288) | func IsWebSocketUpgrade(r *http.Request) bool { FILE: vendor/github.com/gorilla/websocket/util.go function computeAcceptKey (line 18) | func computeAcceptKey(challengeKey string) string { function generateChallengeKey (line 25) | func generateChallengeKey() (string, error) { constant isTokenOctet (line 37) | isTokenOctet = 1 << iota constant isSpaceOctet (line 38) | isSpaceOctet function init (line 41) | func init() { function skipSpace (line 75) | func skipSpace(s string) (rest string) { function nextToken (line 85) | func nextToken(s string) (token, rest string) { function nextTokenOrQuoted (line 95) | func nextTokenOrQuoted(s string) (value string, rest string) { function tokenListContainsValue (line 132) | func tokenListContainsValue(header http.Header, name string, value strin... function parseExtensions (line 158) | func parseExtensions(header http.Header) []map[string]string { FILE: vendor/github.com/ian-kent/envconf/envconf.go function FromEnvP (line 16) | func FromEnvP(env string, value interface{}) interface{} { function FromEnv (line 26) | func FromEnv(env string, value interface{}) (interface{}, error) { FILE: vendor/github.com/ian-kent/go-log/appenders/appender.go type Appender (line 18) | type Appender interface FILE: vendor/github.com/ian-kent/go-log/appenders/console.go type consoleAppender (line 9) | type consoleAppender struct method Write (line 21) | func (a *consoleAppender) Write(level levels.LogLevel, message string,... method Layout (line 25) | func (a *consoleAppender) Layout() layout.Layout { method SetLayout (line 29) | func (a *consoleAppender) SetLayout(layout layout.Layout) { function Console (line 14) | func Console() *consoleAppender { FILE: vendor/github.com/ian-kent/go-log/appenders/fluentd.go type fluentdAppender (line 11) | type fluentdAppender struct method Close (line 34) | func (a *fluentdAppender) Close() { method Open (line 39) | func (a *fluentdAppender) Open() error { method Write (line 48) | func (a *fluentdAppender) Write(level levels.LogLevel, message string,... method Layout (line 58) | func (a *fluentdAppender) Layout() layout.Layout { method SetLayout (line 62) | func (a *fluentdAppender) SetLayout(layout layout.Layout) { function SafeFluentd (line 18) | func SafeFluentd(config fluent.Config) (*fluentdAppender, error) { function Fluentd (line 29) | func Fluentd(config fluent.Config) *fluentdAppender { FILE: vendor/github.com/ian-kent/go-log/appenders/multiple_appender.go type multipleAppender (line 8) | type multipleAppender struct method Layout (line 20) | func (this *multipleAppender) Layout() layout.Layout { method SetLayout (line 24) | func (this *multipleAppender) SetLayout(l layout.Layout) { method Write (line 28) | func (this *multipleAppender) Write(level levels.LogLevel, message str... function Multiple (line 13) | func Multiple(layout layout.Layout, appenders ...Appender) Appender { FILE: vendor/github.com/ian-kent/go-log/appenders/rollingfile.go type rollingFileAppender (line 13) | type rollingFileAppender struct method Close (line 43) | func (a *rollingFileAppender) Close() { method Write (line 50) | func (a *rollingFileAppender) Write(level levels.LogLevel, message str... method Layout (line 68) | func (a *rollingFileAppender) Layout() layout.Layout { method SetLayout (line 72) | func (a *rollingFileAppender) SetLayout(layout layout.Layout) { method Filename (line 76) | func (a *rollingFileAppender) Filename() string { method SetFilename (line 80) | func (a *rollingFileAppender) SetFilename(filename string) error { method rotateFile (line 90) | func (a *rollingFileAppender) rotateFile() { method closeFile (line 108) | func (a *rollingFileAppender) closeFile() { method openFile (line 114) | func (a *rollingFileAppender) openFile() error { function RollingFile (line 27) | func RollingFile(filename string, append bool) *rollingFileAppender { FILE: vendor/github.com/ian-kent/go-log/layout/basic.go type basicLayout (line 8) | type basicLayout struct method Format (line 16) | func (a *basicLayout) Format(level levels.LogLevel, message string, ar... function Basic (line 12) | func Basic() *basicLayout { FILE: vendor/github.com/ian-kent/go-log/layout/layout.go type Layout (line 18) | type Layout interface function Default (line 22) | func Default() Layout { FILE: vendor/github.com/ian-kent/go-log/layout/pattern.go type patternLayout (line 24) | type patternLayout struct method Format (line 63) | func (a *patternLayout) Format(level levels.LogLevel, message string, ... type caller (line 31) | type caller struct function Pattern (line 41) | func Pattern(pattern string) *patternLayout { function getCaller (line 49) | func getCaller() *caller { FILE: vendor/github.com/ian-kent/go-log/levels/levels.go type LogLevel (line 3) | type LogLevel constant FATAL (line 6) | FATAL LogLevel = iota constant ERROR (line 7) | ERROR constant INFO (line 8) | INFO constant WARN (line 9) | WARN constant DEBUG (line 10) | DEBUG constant TRACE (line 11) | TRACE constant INHERIT (line 12) | INHERIT FILE: vendor/github.com/ian-kent/go-log/log/log.go function Stol (line 12) | func Stol(level string) levels.LogLevel { function Logger (line 23) | func Logger(args ...string) logger.Logger { function Log (line 41) | func Log(level levels.LogLevel, params ...interface{}) { function Level (line 45) | func Level(level levels.LogLevel) { Logger().Level() } function Debug (line 46) | func Debug(params ...interface{}) { Log(levels.DEBUG, params...) } function Info (line 47) | func Info(params ...interface{}) { Log(levels.INFO, params...) } function Warn (line 48) | func Warn(params ...interface{}) { Log(levels.WARN, params...) } function Error (line 49) | func Error(params ...interface{}) { Log(levels.ERROR, params...) } function Trace (line 50) | func Trace(params ...interface{}) { Log(levels.TRACE, params...) } function Fatal (line 51) | func Fatal(params ...interface{}) { Log(levels.FATAL, params...) } function Printf (line 52) | func Printf(params ...interface{}) { Log(levels.INFO, params...) } function Println (line 53) | func Println(params ...interface{}) { Log(levels.INFO, params...) } function Fatalf (line 54) | func Fatalf(params ...interface{}) { Log(levels.FATAL, params...) } FILE: vendor/github.com/ian-kent/go-log/logger/logger.go type Logger (line 14) | type Logger interface type logger (line 38) | type logger struct method New (line 85) | func (l *logger) New(name string) Logger { method GetLogger (line 98) | func (l *logger) GetLogger(name string) Logger { method write (line 125) | func (l *logger) write(level levels.LogLevel, params ...interface{}) { method Appender (line 138) | func (l *logger) Appender() Appender { method Log (line 150) | func (l *logger) Log(level levels.LogLevel, params ...interface{}) { method Level (line 161) | func (l *logger) Level() levels.LogLevel { method Enabled (line 168) | func (l *logger) Enabled() map[levels.LogLevel]bool { method Name (line 175) | func (l *logger) Name() string { method FullName (line 179) | func (l *logger) FullName() string { method Children (line 190) | func (l *logger) Children() []Logger { method Parent (line 194) | func (l *logger) Parent() Logger { method SetLevel (line 198) | func (l *logger) SetLevel(level levels.LogLevel) { method SetAppender (line 209) | func (l *logger) SetAppender(appender Appender) { method Debug (line 213) | func (l *logger) Debug(params ...interface{}) { l.Log(levels.DEBUG, ... method Info (line 214) | func (l *logger) Info(params ...interface{}) { l.Log(levels.INFO, p... method Warn (line 215) | func (l *logger) Warn(params ...interface{}) { l.Log(levels.WARN, p... method Error (line 216) | func (l *logger) Error(params ...interface{}) { l.Log(levels.ERROR, ... method Trace (line 217) | func (l *logger) Trace(params ...interface{}) { l.Log(levels.TRACE, ... method Printf (line 218) | func (l *logger) Printf(params ...interface{}) { l.Log(levels.INFO, p... method Println (line 219) | func (l *logger) Println(params ...interface{}) { l.Log(levels.INFO, p... method Fatal (line 220) | func (l *logger) Fatal(params ...interface{}) { l.Log(levels.FATAL, ... method Fatalf (line 221) | func (l *logger) Fatalf(params ...interface{}) { l.Log(levels.FATAL, ... type Appender (line 49) | type Appender interface function New (line 56) | func New(name string) Logger { function unwrap (line 70) | func unwrap(args ...interface{}) []interface{} { type stringer (line 121) | type stringer interface FILE: vendor/github.com/ian-kent/goose/goose.go type EventStream (line 20) | type EventStream struct method Notify (line 41) | func (es *EventStream) Notify(event string, bytes []byte) { method AddReceiver (line 98) | func (es *EventStream) AddReceiver(w http.ResponseWriter) (*EventRecei... function NewEventStream (line 26) | func NewEventStream() *EventStream { type EventReceiver (line 34) | type EventReceiver struct method send (line 59) | func (er *EventReceiver) send(size, data string) { method write (line 75) | func (er *EventReceiver) write(bytes []byte) (int, error) { FILE: vendor/github.com/ian-kent/linkio/linkio.go type Throughput (line 17) | type Throughput constant BitPerSecond (line 30) | BitPerSecond Throughput = 1 constant BytePerSecond (line 31) | BytePerSecond = 8 * BitPerSecond constant KilobitPerSecond (line 32) | KilobitPerSecond = 1024 * BitPerSecond constant KilobytePerSecond (line 33) | KilobytePerSecond = 1024 * BytePerSecond constant MegabitPerSecond (line 34) | MegabitPerSecond = 1024 * KilobitPerSecond constant MegabytePerSecond (line 35) | MegabytePerSecond = 1024 * KilobytePerSecond constant GigabitPerSecond (line 36) | GigabitPerSecond = 1024 * MegabitPerSecond constant GigabytePerSecond (line 37) | GigabytePerSecond = 1024 * MegabytePerSecond type LinkReader (line 42) | type LinkReader struct method Read (line 132) | func (l *LinkReader) Read(buf []byte) (n int, err error) { type LinkWriter (line 49) | type LinkWriter struct method Write (line 152) | func (l *LinkWriter) Write(buf []byte) (n int, err error) { type Link (line 59) | type Link struct method NewLinkReader (line 74) | func (link *Link) NewLinkReader(r io.Reader) (s *LinkReader) { method NewLinkWriter (line 81) | func (link *Link) NewLinkWriter(w io.Writer) (s *LinkWriter) { method SetThroughput (line 118) | func (link *Link) SetThroughput(throughput Throughput) { type linkRequest (line 67) | type linkRequest struct function NewLink (line 87) | func NewLink(throughput Throughput) (l *Link) { function min (line 124) | func min(a, b int) int { FILE: vendor/github.com/jtolds/gls/context.go type Values (line 15) | type Values type ContextManager (line 22) | type ContextManager struct method Unregister (line 41) | func (m *ContextManager) Unregister() { method SetValues (line 54) | func (m *ContextManager) SetValues(new_values Values, context_call fun... method GetValue (line 104) | func (m *ContextManager) GetValue(key interface{}) ( method getValues (line 122) | func (m *ContextManager) getValues() Values { function NewContextManager (line 30) | func NewContextManager() *ContextManager { function Go (line 139) | func Go(cb func()) { FILE: vendor/github.com/jtolds/gls/gen_sym.go type ContextKey (line 13) | type ContextKey struct function GenSym (line 16) | func GenSym() ContextKey { FILE: vendor/github.com/jtolds/gls/gid.go function GetGoroutineId (line 10) | func GetGoroutineId() (gid uint, ok bool) { function EnsureGoroutineId (line 17) | func EnsureGoroutineId(cb func(gid uint)) { FILE: vendor/github.com/jtolds/gls/id_pool.go type idPool (line 11) | type idPool struct method Acquire (line 17) | func (p *idPool) Acquire() (id uint) { method Release (line 30) | func (p *idPool) Release(id uint) { FILE: vendor/github.com/jtolds/gls/stack_tags.go constant bitWidth (line 6) | bitWidth = 4 constant stackBatchSize (line 7) | stackBatchSize = 16 function init (line 15) | func init() { function addStackTag (line 45) | func addStackTag(tag uint, context_call func()) { function github_com_jtolds_gls_markS (line 54) | func github_com_jtolds_gls_markS(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_mark0 (line 55) | func github_com_jtolds_gls_mark0(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_mark1 (line 56) | func github_com_jtolds_gls_mark1(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_mark2 (line 57) | func github_com_jtolds_gls_mark2(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_mark3 (line 58) | func github_com_jtolds_gls_mark3(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_mark4 (line 59) | func github_com_jtolds_gls_mark4(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_mark5 (line 60) | func github_com_jtolds_gls_mark5(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_mark6 (line 61) | func github_com_jtolds_gls_mark6(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_mark7 (line 62) | func github_com_jtolds_gls_mark7(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_mark8 (line 63) | func github_com_jtolds_gls_mark8(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_mark9 (line 64) | func github_com_jtolds_gls_mark9(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_markA (line 65) | func github_com_jtolds_gls_markA(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_markB (line 66) | func github_com_jtolds_gls_markB(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_markC (line 67) | func github_com_jtolds_gls_markC(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_markD (line 68) | func github_com_jtolds_gls_markD(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_markE (line 69) | func github_com_jtolds_gls_markE(tag uint, cb func()) { _m(tag, cb) } function github_com_jtolds_gls_markF (line 70) | func github_com_jtolds_gls_markF(tag uint, cb func()) { _m(tag, cb) } function _m (line 72) | func _m(tag_remainder uint, cb func()) { function readStackTag (line 80) | func readStackTag() (tag uint, ok bool) { FILE: vendor/github.com/jtolds/gls/stack_tags_js.go constant jsFuncNamePrefix (line 16) | jsFuncNamePrefix = "github_com_jtolds_gls_mark" function jsMarkStack (line 19) | func jsMarkStack() (f []uintptr) { function findPtr (line 62) | func findPtr() uintptr { function getStack (line 70) | func getStack(offset, amount int) []uintptr { FILE: vendor/github.com/jtolds/gls/stack_tags_main.go function getStack (line 12) | func getStack(offset, amount int) []uintptr { function findPtr (line 17) | func findPtr() uintptr { FILE: vendor/github.com/mailhog/MailHog-Server/api/api.go function CreateAPI (line 10) | func CreateAPI(conf *config.Config, r gohttp.Handler) { FILE: vendor/github.com/mailhog/MailHog-Server/api/v1.go type APIv1 (line 27) | type APIv1 struct method defaultOptions (line 86) | func (apiv1 *APIv1) defaultOptions(w http.ResponseWriter, req *http.Re... method broadcast (line 94) | func (apiv1 *APIv1) broadcast(json string) { method keepalive (line 105) | func (apiv1 *APIv1) keepalive() { method eventstream (line 110) | func (apiv1 *APIv1) eventstream(w http.ResponseWriter, req *http.Reque... method messages (line 122) | func (apiv1 *APIv1) messages(w http.ResponseWriter, req *http.Request) { method message (line 144) | func (apiv1 *APIv1) message(w http.ResponseWriter, req *http.Request) { method download (line 168) | func (apiv1 *APIv1) download(w http.ResponseWriter, req *http.Request) { method download_part (line 199) | func (apiv1 *APIv1) download_part(w http.ResponseWriter, req *http.Req... method delete_all (line 239) | func (apiv1 *APIv1) delete_all(w http.ResponseWriter, req *http.Reques... method release_one (line 256) | func (apiv1 *APIv1) release_one(w http.ResponseWriter, req *http.Reque... method delete_one (line 344) | func (apiv1 *APIv1) delete_one(w http.ResponseWriter, req *http.Reques... type ReleaseConfig (line 36) | type ReleaseConfig function createAPIv1 (line 38) | func createAPIv1(conf *config.Config, r *pat.Router) *APIv1 { FILE: vendor/github.com/mailhog/MailHog-Server/api/v2.go type APIv2 (line 20) | type APIv2 struct method defaultOptions (line 64) | func (apiv2 *APIv2) defaultOptions(w http.ResponseWriter, req *http.Re... method getStartLimit (line 79) | func (apiv2 *APIv2) getStartLimit(w http.ResponseWriter, req *http.Req... method messages (line 99) | func (apiv2 *APIv2) messages(w http.ResponseWriter, req *http.Request) { method search (line 123) | func (apiv2 *APIv2) search(w http.ResponseWriter, req *http.Request) { method jim (line 156) | func (apiv2 *APIv2) jim(w http.ResponseWriter, req *http.Request) { method deleteJim (line 171) | func (apiv2 *APIv2) deleteJim(w http.ResponseWriter, req *http.Request) { method createJim (line 184) | func (apiv2 *APIv2) createJim(w http.ResponseWriter, req *http.Request) { method newJimFromBody (line 204) | func (apiv2 *APIv2) newJimFromBody(w http.ResponseWriter, req *http.Re... method updateJim (line 222) | func (apiv2 *APIv2) updateJim(w http.ResponseWriter, req *http.Request) { method listOutgoingSMTP (line 238) | func (apiv2 *APIv2) listOutgoingSMTP(w http.ResponseWriter, req *http.... method websocket (line 248) | func (apiv2 *APIv2) websocket(w http.ResponseWriter, req *http.Request) { method broadcast (line 254) | func (apiv2 *APIv2) broadcast(msg *data.Message) { function createAPIv2 (line 26) | func createAPIv2(conf *config.Config, r *pat.Router) *APIv2 { type messagesResult (line 72) | type messagesResult struct FILE: vendor/github.com/mailhog/MailHog-Server/config/config.go function DefaultConfig (line 16) | func DefaultConfig() *Config { type Config (line 34) | type Config struct type OutgoingSMTP (line 55) | type OutgoingSMTP struct function Configure (line 72) | func Configure() *Config { function RegisterFlags (line 119) | func RegisterFlags() { FILE: vendor/github.com/mailhog/MailHog-Server/main.go function configure (line 22) | func configure() { function main (line 30) | func main() { FILE: vendor/github.com/mailhog/MailHog-Server/monkey/jim.go type Jim (line 13) | type Jim struct method RegisterFlags (line 26) | func (j *Jim) RegisterFlags() { method Configure (line 38) | func (j *Jim) Configure(logf func(string, ...interface{})) { method ConfigureFrom (line 45) | func (j *Jim) ConfigureFrom(j2 *Jim) { method Accept (line 50) | func (j *Jim) Accept(conn net.Conn) bool { method LinkSpeed (line 60) | func (j *Jim) LinkSpeed() *linkio.Throughput { method ValidRCPT (line 74) | func (j *Jim) ValidRCPT(rcpt string) bool { method ValidMAIL (line 84) | func (j *Jim) ValidMAIL(mail string) bool { method ValidAUTH (line 94) | func (j *Jim) ValidAUTH(mechanism string, args ...string) bool { method Disconnect (line 104) | func (j *Jim) Disconnect() bool { FILE: vendor/github.com/mailhog/MailHog-Server/monkey/monkey.go type ChaosMonkey (line 10) | type ChaosMonkey interface FILE: vendor/github.com/mailhog/MailHog-Server/smtp/session.go type Session (line 18) | type Session struct method validateAuthentication (line 70) | func (c *Session) validateAuthentication(mechanism string, args ...str... method validateRecipient (line 81) | func (c *Session) validateRecipient(to string) bool { method validateSender (line 91) | func (c *Session) validateSender(from string) bool { method acceptMessage (line 101) | func (c *Session) acceptMessage(msg *data.SMTPMessage) (id string, err... method logf (line 109) | func (c *Session) logf(message string, args ...interface{}) { method Read (line 116) | func (c *Session) Read() bool { method Write (line 155) | func (c *Session) Write(reply *smtp.Reply) { function Accept (line 34) | func Accept(remoteAddress string, conn io.ReadWriteCloser, storage stora... FILE: vendor/github.com/mailhog/MailHog-Server/smtp/session_test.go type fakeRw (line 14) | type fakeRw struct method Read (line 20) | func (rw *fakeRw) Read(p []byte) (n int, err error) { method Close (line 26) | func (rw *fakeRw) Close() error { method Write (line 32) | func (rw *fakeRw) Write(p []byte) (n int, err error) { function TestAccept (line 39) | func TestAccept(t *testing.T) { function TestSocketError (line 47) | func TestSocketError(t *testing.T) { function TestAcceptMessage (line 59) | func TestAcceptMessage(t *testing.T) { function TestValidateAuthentication (line 107) | func TestValidateAuthentication(t *testing.T) { function TestValidateRecipient (line 125) | func TestValidateRecipient(t *testing.T) { function TestValidateSender (line 134) | func TestValidateSender(t *testing.T) { FILE: vendor/github.com/mailhog/MailHog-Server/smtp/smtp.go function Listen (line 11) | func Listen(cfg *config.Config, exitCh chan int) *net.TCPListener { FILE: vendor/github.com/mailhog/MailHog-Server/websockets/connection.go constant writeWait (line 11) | writeWait = 10 * time.Second constant pongWait (line 13) | pongWait = 60 * time.Second constant pingPeriod (line 15) | pingPeriod = (pongWait * 9) / 10 constant maxMessageSize (line 17) | maxMessageSize = 1 type connection (line 20) | type connection struct method readLoop (line 26) | func (c *connection) readLoop() { method writeLoop (line 41) | func (c *connection) writeLoop() { method writeJSON (line 65) | func (c *connection) writeJSON(message interface{}) error { method writeControl (line 70) | func (c *connection) writeControl(messageType int) error { FILE: vendor/github.com/mailhog/MailHog-Server/websockets/hub.go type Hub (line 10) | type Hub struct method run (line 36) | func (h *Hub) run() { method unregister (line 55) | func (h *Hub) unregister(c *connection) { method Serve (line 62) | func (h *Hub) Serve(w http.ResponseWriter, r *http.Request) { method Broadcast (line 74) | func (h *Hub) Broadcast(data interface{}) { function NewHub (line 18) | func NewHub() *Hub { FILE: vendor/github.com/mailhog/MailHog-UI/assets/assets.go function bindataRead (line 42) | func bindataRead(data []byte, name string) ([]byte, error) { type asset (line 62) | type asset struct type bindataFileInfo (line 67) | type bindataFileInfo struct method Name (line 74) | func (fi bindataFileInfo) Name() string { method Size (line 77) | func (fi bindataFileInfo) Size() int64 { method Mode (line 80) | func (fi bindataFileInfo) Mode() os.FileMode { method ModTime (line 83) | func (fi bindataFileInfo) ModTime() time.Time { method IsDir (line 86) | func (fi bindataFileInfo) IsDir() bool { method Sys (line 89) | func (fi bindataFileInfo) Sys() interface{} { function assetsCssBootstrap332MinCssBytes (line 95) | func assetsCssBootstrap332MinCssBytes() ([]byte, error) { function assetsCssBootstrap332MinCss (line 102) | func assetsCssBootstrap332MinCss() (*asset, error) { function assetsCssJqueryUi1104SmoothnessCssBytes (line 115) | func assetsCssJqueryUi1104SmoothnessCssBytes() ([]byte, error) { function assetsCssJqueryUi1104SmoothnessCss (line 122) | func assetsCssJqueryUi1104SmoothnessCss() (*asset, error) { function assetsCssStyleCssBytes (line 135) | func assetsCssStyleCssBytes() ([]byte, error) { function assetsCssStyleCss (line 142) | func assetsCssStyleCss() (*asset, error) { function assetsFontsGlyphiconsHalflingsRegularEotBytes (line 155) | func assetsFontsGlyphiconsHalflingsRegularEotBytes() ([]byte, error) { function assetsFontsGlyphiconsHalflingsRegularEot (line 162) | func assetsFontsGlyphiconsHalflingsRegularEot() (*asset, error) { function assetsFontsGlyphiconsHalflingsRegularSvgBytes (line 175) | func assetsFontsGlyphiconsHalflingsRegularSvgBytes() ([]byte, error) { function assetsFontsGlyphiconsHalflingsRegularSvg (line 182) | func assetsFontsGlyphiconsHalflingsRegularSvg() (*asset, error) { function assetsFontsGlyphiconsHalflingsRegularTtfBytes (line 195) | func assetsFontsGlyphiconsHalflingsRegularTtfBytes() ([]byte, error) { function assetsFontsGlyphiconsHalflingsRegularTtf (line 202) | func assetsFontsGlyphiconsHalflingsRegularTtf() (*asset, error) { function assetsFontsGlyphiconsHalflingsRegularWoffBytes (line 215) | func assetsFontsGlyphiconsHalflingsRegularWoffBytes() ([]byte, error) { function assetsFontsGlyphiconsHalflingsRegularWoff (line 222) | func assetsFontsGlyphiconsHalflingsRegularWoff() (*asset, error) { function assetsFontsGlyphiconsHalflingsRegularWoff2Bytes (line 235) | func assetsFontsGlyphiconsHalflingsRegularWoff2Bytes() ([]byte, error) { function assetsFontsGlyphiconsHalflingsRegularWoff2 (line 242) | func assetsFontsGlyphiconsHalflingsRegularWoff2() (*asset, error) { function assetsImagesGithubPngBytes (line 255) | func assetsImagesGithubPngBytes() ([]byte, error) { function assetsImagesGithubPng (line 262) | func assetsImagesGithubPng() (*asset, error) { function assetsImagesHogPngBytes (line 275) | func assetsImagesHogPngBytes() ([]byte, error) { function assetsImagesHogPng (line 282) | func assetsImagesHogPng() (*asset, error) { function assetsJsAngular138JsBytes (line 295) | func assetsJsAngular138JsBytes() ([]byte, error) { function assetsJsAngular138Js (line 302) | func assetsJsAngular138Js() (*asset, error) { function assetsJsBootstrap332MinJsBytes (line 315) | func assetsJsBootstrap332MinJsBytes() ([]byte, error) { function assetsJsBootstrap332MinJs (line 322) | func assetsJsBootstrap332MinJs() (*asset, error) { function assetsJsControllersJsBytes (line 335) | func assetsJsControllersJsBytes() ([]byte, error) { function assetsJsControllersJs (line 342) | func assetsJsControllersJs() (*asset, error) { function assetsJsFilesize312MinJsBytes (line 355) | func assetsJsFilesize312MinJsBytes() ([]byte, error) { function assetsJsFilesize312MinJs (line 362) | func assetsJsFilesize312MinJs() (*asset, error) { function assetsJsIso88591_mapJsBytes (line 375) | func assetsJsIso88591_mapJsBytes() ([]byte, error) { function assetsJsIso88591_mapJs (line 382) | func assetsJsIso88591_mapJs() (*asset, error) { function assetsJsJquery1110MinJsBytes (line 395) | func assetsJsJquery1110MinJsBytes() ([]byte, error) { function assetsJsJquery1110MinJs (line 402) | func assetsJsJquery1110MinJs() (*asset, error) { function assetsJsJqueryUi1104MinJsBytes (line 415) | func assetsJsJqueryUi1104MinJsBytes() ([]byte, error) { function assetsJsJqueryUi1104MinJs (line 422) | func assetsJsJqueryUi1104MinJs() (*asset, error) { function assetsJsMoment284JsBytes (line 435) | func assetsJsMoment284JsBytes() ([]byte, error) { function assetsJsMoment284Js (line 442) | func assetsJsMoment284Js() (*asset, error) { function assetsJsPunycodeJsBytes (line 455) | func assetsJsPunycodeJsBytes() ([]byte, error) { function assetsJsPunycodeJs (line 462) | func assetsJsPunycodeJs() (*asset, error) { function assetsJsSjis_mapJsBytes (line 475) | func assetsJsSjis_mapJsBytes() ([]byte, error) { function assetsJsSjis_mapJs (line 482) | func assetsJsSjis_mapJs() (*asset, error) { function assetsJsStrutilJsBytes (line 495) | func assetsJsStrutilJsBytes() ([]byte, error) { function assetsJsStrutilJs (line 502) | func assetsJsStrutilJs() (*asset, error) { function assetsTemplatesIndexHtmlBytes (line 515) | func assetsTemplatesIndexHtmlBytes() ([]byte, error) { function assetsTemplatesIndexHtml (line 522) | func assetsTemplatesIndexHtml() (*asset, error) { function assetsTemplatesLayoutHtmlBytes (line 535) | func assetsTemplatesLayoutHtmlBytes() ([]byte, error) { function assetsTemplatesLayoutHtml (line 542) | func assetsTemplatesLayoutHtml() (*asset, error) { function Asset (line 556) | func Asset(name string) ([]byte, error) { function MustAsset (line 570) | func MustAsset(name string) []byte { function AssetInfo (line 582) | func AssetInfo(name string) (os.FileInfo, error) { function AssetNames (line 595) | func AssetNames() []string { function AssetDir (line 643) | func AssetDir(name string) ([]string, error) { type bintree (line 665) | type bintree struct function RestoreAsset (line 709) | func RestoreAsset(dir, name string) error { function RestoreAssets (line 734) | func RestoreAssets(dir, name string) error { function _filePath (line 750) | func _filePath(dir, name string) string { FILE: vendor/github.com/mailhog/MailHog-UI/config/config.go function DefaultConfig (line 9) | func DefaultConfig() *Config { type Config (line 17) | type Config struct function Configure (line 25) | func Configure() *Config { function RegisterFlags (line 29) | func RegisterFlags() { FILE: vendor/github.com/mailhog/MailHog-UI/main.go function configure (line 22) | func configure() { function main (line 32) | func main() { FILE: vendor/github.com/mailhog/MailHog-UI/web/web.go type Web (line 19) | type Web struct method Static (line 45) | func (web Web) Static(pattern string) func(http.ResponseWriter, *http.... method Index (line 61) | func (web Web) Index() func(http.ResponseWriter, *http.Request) { function CreateWeb (line 24) | func CreateWeb(cfg *config.Config, r http.Handler, asset func(string) ([... FILE: vendor/github.com/mailhog/data/message.go function logf (line 18) | func logf(message string, args ...interface{}) { type MessageID (line 27) | type MessageID function NewMessageID (line 30) | func NewMessageID(hostname string) (MessageID, error) { type Messages (line 47) | type Messages type Message (line 50) | type Message struct method Bytes (line 200) | func (m *Message) Bytes() io.Reader { type Path (line 61) | type Path struct type Content (line 69) | type Content struct method IsMIME (line 216) | func (content *Content) IsMIME() bool { method ParseMIMEBody (line 225) | func (content *Content) ParseMIMEBody() *MIMEBody { type SMTPMessage (line 77) | type SMTPMessage struct method Parse (line 90) | func (m *SMTPMessage) Parse(hostname string) *Message { method Bytes (line 151) | func (m *SMTPMessage) Bytes() io.Reader { type MIMEBody (line 85) | type MIMEBody struct function FromBytes (line 166) | func FromBytes(b []byte) *SMTPMessage { function PathFromString (line 258) | func PathFromString(path string) *Path { function ContentFromString (line 284) | func ContentFromString(data string) *Content { function extractBoundary (line 324) | func extractBoundary(contentType string) string { FILE: vendor/github.com/mailhog/http/server.go function AuthFile (line 21) | func AuthFile(file string) { function BasicAuthHandler (line 79) | func BasicAuthHandler(h http.Handler) http.Handler { function Listen (line 99) | func Listen(httpBindAddr string, Asset func(string) ([]byte, error), exi... FILE: vendor/github.com/mailhog/mhsendmail/cmd/cmd.go function Go (line 17) | func Go() { FILE: vendor/github.com/mailhog/smtp/protocol.go type Command (line 16) | type Command struct function ParseCommand (line 23) | func ParseCommand(line string) *Command { type Protocol (line 36) | type Protocol struct method resetState (line 114) | func (proto *Protocol) resetState() { method logf (line 118) | func (proto *Protocol) logf(message string, args ...interface{}) { method Start (line 131) | func (proto *Protocol) Start() *Reply { method Parse (line 142) | func (proto *Protocol) Parse(line string) (string, *Reply) { method ProcessData (line 170) | func (proto *Protocol) ProcessData(line string) (reply *Reply) { method ProcessCommand (line 199) | func (proto *Protocol) ProcessCommand(line string) (reply *Reply) { method Command (line 213) | func (proto *Protocol) Command(command *Command) (reply *Reply) { method HELO (line 411) | func (proto *Protocol) HELO(args string) (reply *Reply) { method EHLO (line 419) | func (proto *Protocol) EHLO(args string) (reply *Reply) { method STARTTLS (line 441) | func (proto *Protocol) STARTTLS(args string) (reply *Reply) { method ParseMAIL (line 475) | func (proto *Protocol) ParseMAIL(mail string) (string, error) { method ParseRCPT (line 493) | func (proto *Protocol) ParseRCPT(rcpt string) (string, error) { function NewProtocol (line 102) | func NewProtocol() *Protocol { FILE: vendor/github.com/mailhog/smtp/reply.go type Reply (line 8) | type Reply struct method Lines (line 15) | func (r Reply) Lines() []string { function ReplyIdent (line 38) | func ReplyIdent(ident string) *Reply { return &Reply{220, []string{ident... function ReplyReadyToStartTLS (line 41) | func ReplyReadyToStartTLS(callback func()) *Reply { function ReplyBye (line 46) | func ReplyBye() *Reply { return &Reply{221, []string{"Bye"}, nil} } function ReplyAuthOk (line 49) | func ReplyAuthOk() *Reply { return &Reply{235, []string{"Authentication ... function ReplyOk (line 52) | func ReplyOk(message ...string) *Reply { function ReplySenderOk (line 60) | func ReplySenderOk(sender string) *Reply { function ReplyRecipientOk (line 65) | func ReplyRecipientOk(recipient string) *Reply { function ReplyAuthResponse (line 70) | func ReplyAuthResponse(response string) *Reply { return &Reply{334, []st... function ReplyDataResponse (line 73) | func ReplyDataResponse() *Reply { return &Reply{354, []string{"End data ... function ReplyStorageFailed (line 76) | func ReplyStorageFailed(reason string) *Reply { return &Reply{452, []str... function ReplyUnrecognisedCommand (line 79) | func ReplyUnrecognisedCommand() *Reply { return &Reply{500, []string{"Un... function ReplyLineTooLong (line 82) | func ReplyLineTooLong() *Reply { return &Reply{500, []string{"Line too l... function ReplySyntaxError (line 85) | func ReplySyntaxError(response string) *Reply { function ReplyUnsupportedAuth (line 93) | func ReplyUnsupportedAuth() *Reply { function ReplyMustIssueSTARTTLSFirst (line 98) | func ReplyMustIssueSTARTTLSFirst() *Reply { function ReplyInvalidAuth (line 103) | func ReplyInvalidAuth() *Reply { function ReplyError (line 108) | func ReplyError(err error) *Reply { return &Reply{550, []string{err.Erro... function ReplyTooManyRecipients (line 111) | func ReplyTooManyRecipients() *Reply { return &Reply{552, []string{"Too ... FILE: vendor/github.com/mailhog/smtp/state.go type State (line 4) | type State constant INVALID (line 8) | INVALID = State(-1) constant ESTABLISH (line 9) | ESTABLISH = State(iota) constant AUTHPLAIN (line 10) | AUTHPLAIN constant AUTHLOGIN (line 11) | AUTHLOGIN constant AUTHLOGIN2 (line 12) | AUTHLOGIN2 constant AUTHCRAMMD5 (line 13) | AUTHCRAMMD5 constant MAIL (line 14) | MAIL constant RCPT (line 15) | RCPT constant DATA (line 16) | DATA constant DONE (line 17) | DONE FILE: vendor/github.com/mailhog/storage/maildir.go type Maildir (line 15) | type Maildir struct method Store (line 41) | func (maildir *Maildir) Store(m *data.Message) (string, error) { method Count (line 51) | func (maildir *Maildir) Count() int { method Search (line 64) | func (maildir *Maildir) Search(kind, query string, start, limit int) (... method List (line 127) | func (maildir *Maildir) List(start, limit int) (*data.Messages, error) { method DeleteOne (line 161) | func (maildir *Maildir) DeleteOne(id string) error { method DeleteAll (line 166) | func (maildir *Maildir) DeleteAll() error { method Load (line 175) | func (maildir *Maildir) Load(id string) (*data.Message, error) { function CreateMaildir (line 20) | func CreateMaildir(path string) *Maildir { FILE: vendor/github.com/mailhog/storage/memory.go type InMemory (line 12) | type InMemory struct method Store (line 27) | func (memory *InMemory) Store(m *data.Message) (string, error) { method Count (line 36) | func (memory *InMemory) Count() int { method Search (line 41) | func (memory *InMemory) Search(kind, query string, start, limit int) (... method List (line 131) | func (memory *InMemory) List(start int, limit int) (*data.Messages, er... method DeleteOne (line 163) | func (memory *InMemory) DeleteOne(id string) error { method DeleteAll (line 185) | func (memory *InMemory) DeleteAll() error { method Load (line 194) | func (memory *InMemory) Load(id string) (*data.Message, error) { function CreateInMemory (line 19) | func CreateInMemory() *InMemory { FILE: vendor/github.com/mailhog/storage/mongodb.go type MongoDB (line 11) | type MongoDB struct method Store (line 36) | func (mongo *MongoDB) Store(m *data.Message) (string, error) { method Count (line 46) | func (mongo *MongoDB) Count() int { method Search (line 52) | func (mongo *MongoDB) Search(kind, query string, start, limit int) (*d... method List (line 82) | func (mongo *MongoDB) List(start int, limit int) (*data.Messages, erro... method DeleteOne (line 102) | func (mongo *MongoDB) DeleteOne(id string) error { method DeleteAll (line 108) | func (mongo *MongoDB) DeleteAll() error { method Load (line 114) | func (mongo *MongoDB) Load(id string) (*data.Message, error) { function CreateMongoDB (line 17) | func CreateMongoDB(uri, db, coll string) *MongoDB { FILE: vendor/github.com/mailhog/storage/storage.go type Storage (line 6) | type Storage interface FILE: vendor/github.com/philhofer/fwd/reader.go constant DefaultReaderSize (line 41) | DefaultReaderSize = 2048 constant minReaderSize (line 44) | minReaderSize = 16 function NewReader (line 48) | func NewReader(r io.Reader) *Reader { function NewReaderSize (line 54) | func NewReaderSize(r io.Reader, n int) *Reader { type Reader (line 66) | type Reader struct method Reset (line 81) | func (r *Reader) Reset(rd io.Reader) { method more (line 94) | func (r *Reader) more() { method err (line 117) | func (r *Reader) err() (e error) { method noEOF (line 123) | func (r *Reader) noEOF() (e error) { method buffered (line 132) | func (r *Reader) buffered() int { return len(r.data) - r.n } method Buffered (line 135) | func (r *Reader) Buffered() int { return len(r.data) - r.n } method BufferSize (line 138) | func (r *Reader) BufferSize() int { return cap(r.data) } method Peek (line 146) | func (r *Reader) Peek(n int) ([]byte, error) { method Skip (line 186) | func (r *Reader) Skip(n int) (int, error) { method Next (line 225) | func (r *Reader) Next(n int) ([]byte, error) { method skipSeek (line 250) | func (r *Reader) skipSeek(n int) (int, error) { method Read (line 263) | func (r *Reader) Read(b []byte) (int, error) { method ReadFull (line 292) | func (r *Reader) ReadFull(b []byte) (int, error) { method ReadByte (line 318) | func (r *Reader) ReadByte() (byte, error) { method WriteTo (line 331) | func (r *Reader) WriteTo(w io.Writer) (int64, error) { function min (line 367) | func min(a int, b int) int { function max (line 374) | func max(a int, b int) int { FILE: vendor/github.com/philhofer/fwd/writer.go constant DefaultWriterSize (line 8) | DefaultWriterSize = 2048 constant minWriterSize (line 10) | minWriterSize = minReaderSize type Writer (line 14) | type Writer struct method Buffered (line 47) | func (w *Writer) Buffered() int { return len(w.buf) } method BufferSize (line 50) | func (w *Writer) BufferSize() int { return cap(w.buf) } method Flush (line 54) | func (w *Writer) Flush() error { method Write (line 79) | func (w *Writer) Write(p []byte) (int, error) { method WriteString (line 102) | func (w *Writer) WriteString(s string) (int, error) { method WriteByte (line 137) | func (w *Writer) WriteByte(b byte) error { method Next (line 153) | func (w *Writer) Next(n int) ([]byte, error) { method pushback (line 172) | func (w *Writer) pushback(n int) { method ReadFrom (line 177) | func (w *Writer) ReadFrom(r io.Reader) (int64, error) { function NewWriter (line 22) | func NewWriter(w io.Writer) *Writer { function NewWriterSize (line 35) | func NewWriterSize(w io.Writer, size int) *Writer { FILE: vendor/github.com/philhofer/fwd/writer_appengine.go function unsafestr (line 5) | func unsafestr(s string) []byte { return []byte(s) } FILE: vendor/github.com/philhofer/fwd/writer_unsafe.go function unsafestr (line 11) | func unsafestr(b string) []byte { FILE: vendor/github.com/smartystreets/assertions/collections.go function ShouldContain (line 12) | func ShouldContain(actual interface{}, expected ...interface{}) string { function ShouldNotContain (line 30) | func ShouldNotContain(actual interface{}, expected ...interface{}) string { function ShouldContainKey (line 47) | func ShouldContainKey(actual interface{}, expected ...interface{}) string { function ShouldNotContainKey (line 66) | func ShouldNotContainKey(actual interface{}, expected ...interface{}) st... function mapKeys (line 83) | func mapKeys(m interface{}) ([]reflect.Value, bool) { function keyFound (line 90) | func keyFound(keys []reflect.Value, expectedKey interface{}) bool { function ShouldBeIn (line 104) | func ShouldBeIn(actual interface{}, expected ...interface{}) string { function shouldBeIn (line 114) | func shouldBeIn(actual interface{}, expected interface{}) string { function ShouldNotBeIn (line 125) | func ShouldNotBeIn(actual interface{}, expected ...interface{}) string { function shouldNotBeIn (line 135) | func shouldNotBeIn(actual interface{}, expected interface{}) string { function ShouldBeEmpty (line 145) | func ShouldBeEmpty(actual interface{}, expected ...interface{}) string { function ShouldNotBeEmpty (line 186) | func ShouldNotBeEmpty(actual interface{}, expected ...interface{}) string { function ShouldHaveLength (line 201) | func ShouldHaveLength(actual interface{}, expected ...interface{}) string { FILE: vendor/github.com/smartystreets/assertions/doc.go function GoConveyMode (line 30) | func GoConveyMode(yes bool) { type testingT (line 38) | type testingT interface type Assertion (line 42) | type Assertion struct method Failed (line 54) | func (this *Assertion) Failed() bool { method So (line 59) | func (this *Assertion) So(actual interface{}, assert assertion, expect... function New (line 49) | func New(t testingT) *Assertion { function So (line 85) | func So(actual interface{}, assert assertion, expected ...interface{}) (... function so (line 95) | func so(actual interface{}, assert func(interface{}, ...interface{}) str... type assertion (line 103) | type assertion FILE: vendor/github.com/smartystreets/assertions/equality.go constant defaultDelta (line 15) | defaultDelta = 0.0000000001 function ShouldEqual (line 18) | func ShouldEqual(actual interface{}, expected ...interface{}) string { function shouldEqual (line 24) | func shouldEqual(actual, expected interface{}) (message string) { function ShouldNotEqual (line 48) | func ShouldNotEqual(actual interface{}, expected ...interface{}) string { function ShouldAlmostEqual (line 60) | func ShouldAlmostEqual(actual interface{}, expected ...interface{}) stri... function ShouldNotAlmostEqual (line 75) | func ShouldNotAlmostEqual(actual interface{}, expected ...interface{}) s... function cleanAlmostEqualInput (line 89) | func cleanAlmostEqualInput(actual interface{}, expected ...interface{}) ... function getFloat (line 122) | func getFloat(num interface{}) (float64, error) { function ShouldResemble (line 147) | func ShouldResemble(actual interface{}, expected ...interface{}) string { function ShouldNotResemble (line 161) | func ShouldNotResemble(actual interface{}, expected ...interface{}) stri... function ShouldPointTo (line 171) | func ShouldPointTo(actual interface{}, expected ...interface{}) string { function shouldPointTo (line 178) | func shouldPointTo(actual, expected interface{}) string { function ShouldNotPointTo (line 201) | func ShouldNotPointTo(actual interface{}, expected ...interface{}) string { function ShouldBeNil (line 215) | func ShouldBeNil(actual interface{}, expected ...interface{}) string { function interfaceHasNilValue (line 225) | func interfaceHasNilValue(actual interface{}) bool { function ShouldNotBeNil (line 240) | func ShouldNotBeNil(actual interface{}, expected ...interface{}) string { function ShouldBeTrue (line 250) | func ShouldBeTrue(actual interface{}, expected ...interface{}) string { function ShouldBeFalse (line 260) | func ShouldBeFalse(actual interface{}, expected ...interface{}) string { function ShouldBeZeroValue (line 271) | func ShouldBeZeroValue(actual interface{}, expected ...interface{}) stri... FILE: vendor/github.com/smartystreets/assertions/filter.go constant success (line 6) | success = "" constant needExactValues (line 7) | needExactValues = "This assertion requires exactly %d comparison ... constant needNonEmptyCollection (line 8) | needNonEmptyCollection = "This assertion requires at least 1 comparison ... function need (line 11) | func need(needed int, expected []interface{}) string { function atLeast (line 18) | func atLeast(minimum int, expected []interface{}) string { FILE: vendor/github.com/smartystreets/assertions/internal/go-render/render/render.go function init (line 37) | func init() { function Render (line 51) | func Render(v interface{}) string { type traverseState (line 70) | type traverseState struct method forkFor (line 75) | func (s *traverseState) forkFor(ptr uintptr) *traverseState { method render (line 89) | func (s *traverseState) render(buf *bytes.Buffer, ptrs int, v reflect.... function writeType (line 267) | func writeType(buf *bytes.Buffer, ptrs int, t reflect.Type) { type cmpFn (line 333) | type cmpFn type sortableValueSlice (line 335) | type sortableValueSlice struct method Len (line 340) | func (s sortableValueSlice) Len() int { method Less (line 344) | func (s sortableValueSlice) Less(i, j int) bool { method Swap (line 348) | func (s sortableValueSlice) Swap(i, j int) { function cmpForType (line 354) | func cmpForType(t reflect.Type) cmpFn { function tryAndSortMapKeys (line 473) | func tryAndSortMapKeys(mt reflect.Type, k []reflect.Value) { FILE: vendor/github.com/smartystreets/assertions/internal/oglematchers/any_of.go function AnyOf (line 41) | func AnyOf(vals ...interface{}) Matcher { type anyOfMatcher (line 61) | type anyOfMatcher struct method Description (line 65) | func (m *anyOfMatcher) Description() string { method Matches (line 74) | func (m *anyOfMatcher) Matches(c interface{}) (err error) { FILE: vendor/github.com/smartystreets/assertions/internal/oglematchers/contains.go function Contains (line 26) | func Contains(x interface{}) Matcher { type containsMatcher (line 37) | type containsMatcher struct method Description (line 41) | func (m *containsMatcher) Description() string { method Matches (line 45) | func (m *containsMatcher) Matches(candidate interface{}) error { FILE: vendor/github.com/smartystreets/assertions/internal/oglematchers/deep_equals.go function DeepEquals (line 30) | func DeepEquals(x interface{}) Matcher { type deepEqualsMatcher (line 34) | type deepEqualsMatcher struct method Description (line 38) | func (m *deepEqualsMatcher) Description() string { method Matches (line 52) | func (m *deepEqualsMatcher) Matches(c interface{}) error { FILE: vendor/github.com/smartystreets/assertions/internal/oglematchers/equals.go function Equals (line 58) | func Equals(x interface{}) Matcher { type equalsMatcher (line 74) | type equalsMatcher struct method Matches (line 476) | func (m *equalsMatcher) Matches(candidate interface{}) error { method Description (line 534) | func (m *equalsMatcher) Description() string { function isSignedInteger (line 82) | func isSignedInteger(v reflect.Value) bool { function isUnsignedInteger (line 87) | func isUnsignedInteger(v reflect.Value) bool { function isInteger (line 92) | func isInteger(v reflect.Value) bool { function isFloat (line 96) | func isFloat(v reflect.Value) bool { function isComplex (line 101) | func isComplex(v reflect.Value) bool { function checkAgainstInt64 (line 106) | func checkAgainstInt64(e int64, c reflect.Value) (err error) { function checkAgainstUint64 (line 133) | func checkAgainstUint64(e uint64, c reflect.Value) (err error) { function checkAgainstFloat32 (line 160) | func checkAgainstFloat32(e float32, c reflect.Value) (err error) { function checkAgainstFloat64 (line 199) | func checkAgainstFloat64(e float64, c reflect.Value) (err error) { function checkAgainstComplex64 (line 243) | func checkAgainstComplex64(e complex64, c reflect.Value) (err error) { function checkAgainstComplex128 (line 272) | func checkAgainstComplex128(e complex128, c reflect.Value) (err error) { function checkAgainstBool (line 303) | func checkAgainstBool(e bool, c reflect.Value) (err error) { function checkAgainstChan (line 316) | func checkAgainstChan(e reflect.Value, c reflect.Value) (err error) { function checkAgainstFunc (line 335) | func checkAgainstFunc(e reflect.Value, c reflect.Value) (err error) { function checkAgainstMap (line 349) | func checkAgainstMap(e reflect.Value, c reflect.Value) (err error) { function checkAgainstPtr (line 363) | func checkAgainstPtr(e reflect.Value, c reflect.Value) (err error) { function checkAgainstSlice (line 381) | func checkAgainstSlice(e reflect.Value, c reflect.Value) (err error) { function checkAgainstString (line 399) | func checkAgainstString(e reflect.Value, c reflect.Value) (err error) { function checkAgainstArray (line 413) | func checkAgainstArray(e reflect.Value, c reflect.Value) (err error) { function checkAgainstUnsafePointer (line 432) | func checkAgainstUnsafePointer(e reflect.Value, c reflect.Value) (err er... function checkForNil (line 446) | func checkForNil(c reflect.Value) (err error) { FILE: vendor/github.com/smartystreets/assertions/internal/oglematchers/greater_or_equal.go function GreaterOrEqual (line 30) | func GreaterOrEqual(x interface{}) Matcher { FILE: vendor/github.com/smartystreets/assertions/internal/oglematchers/greater_than.go function GreaterThan (line 30) | func GreaterThan(x interface{}) Matcher { FILE: vendor/github.com/smartystreets/assertions/internal/oglematchers/less_or_equal.go function LessOrEqual (line 30) | func LessOrEqual(x interface{}) Matcher { FILE: vendor/github.com/smartystreets/assertions/internal/oglematchers/less_than.go function LessThan (line 31) | func LessThan(x interface{}) Matcher { type lessThanMatcher (line 47) | type lessThanMatcher struct method Description (line 51) | func (m *lessThanMatcher) Description() string { method Matches (line 107) | func (m *lessThanMatcher) Matches(c interface{}) (err error) { function compareIntegers (line 60) | func compareIntegers(v1, v2 reflect.Value) (err error) { function getFloat (line 92) | func getFloat(v reflect.Value) float64 { FILE: vendor/github.com/smartystreets/assertions/internal/oglematchers/matcher.go type Matcher (line 33) | type Matcher interface type FatalError (line 75) | type FatalError struct method Error (line 84) | func (e *FatalError) Error() string { function NewFatalError (line 80) | func NewFatalError(s string) *FatalError { FILE: vendor/github.com/smartystreets/assertions/internal/oglematchers/not.go function Not (line 26) | func Not(m Matcher) Matcher { type notMatcher (line 30) | type notMatcher struct method Matches (line 34) | func (m *notMatcher) Matches(c interface{}) (err error) { method Description (line 51) | func (m *notMatcher) Description() string { FILE: vendor/github.com/smartystreets/assertions/internal/oglematchers/transform_description.go function transformDescription (line 21) | func transformDescription(m Matcher, newDesc string) Matcher { type transformDescriptionMatcher (line 25) | type transformDescriptionMatcher struct method Description (line 30) | func (m *transformDescriptionMatcher) Description() string { method Matches (line 34) | func (m *transformDescriptionMatcher) Matches(c interface{}) error { FILE: vendor/github.com/smartystreets/assertions/messages.go constant shouldHaveBeenEqual (line 4) | shouldHaveBeenEqual = "Expected: '%v'\nActual: '%v'\n(Shou... constant shouldNotHaveBeenEqual (line 5) | shouldNotHaveBeenEqual = "Expected '%v'\nto NOT equal '%v'\... constant shouldHaveBeenEqualTypeMismatch (line 6) | shouldHaveBeenEqualTypeMismatch = "Expected: '%v' (%T)\nActual: '%v' (... constant shouldHaveBeenAlmostEqual (line 7) | shouldHaveBeenAlmostEqual = "Expected '%v' to almost equal '%v' (b... constant shouldHaveNotBeenAlmostEqual (line 8) | shouldHaveNotBeenAlmostEqual = "Expected '%v' to NOT almost equal '%v... constant shouldHaveResembled (line 9) | shouldHaveResembled = "Expected: '%s'\nActual: '%s'\n(Shou... constant shouldNotHaveResembled (line 10) | shouldNotHaveResembled = "Expected '%#v'\nto NOT resembl... constant shouldBePointers (line 11) | shouldBePointers = "Both arguments should be pointers " constant shouldHaveBeenNonNilPointer (line 12) | shouldHaveBeenNonNilPointer = shouldBePointers + "(the %s was %s)!" constant shouldHavePointedTo (line 13) | shouldHavePointedTo = "Expected '%+v' (address: '%v') and '%... constant shouldNotHavePointedTo (line 14) | shouldNotHavePointedTo = "Expected '%+v' and '%+v' to be differ... constant shouldHaveBeenNil (line 15) | shouldHaveBeenNil = "Expected: nil\nActual: '%v'" constant shouldNotHaveBeenNil (line 16) | shouldNotHaveBeenNil = "Expected '%+v' to NOT be nil (but it ... constant shouldHaveBeenTrue (line 17) | shouldHaveBeenTrue = "Expected: true\nActual: %v" constant shouldHaveBeenFalse (line 18) | shouldHaveBeenFalse = "Expected: false\nActual: %v" constant shouldHaveBeenZeroValue (line 19) | shouldHaveBeenZeroValue = "'%+v' should have been the zero value" constant shouldHaveBeenGreater (line 23) | shouldHaveBeenGreater = "Expected '%v' to be greater than '%v... constant shouldHaveBeenGreaterOrEqual (line 24) | shouldHaveBeenGreaterOrEqual = "Expected '%v' to be greater than or ... constant shouldHaveBeenLess (line 25) | shouldHaveBeenLess = "Expected '%v' to be less than '%v' (... constant shouldHaveBeenLessOrEqual (line 26) | shouldHaveBeenLessOrEqual = "Expected '%v' to be less than or equ... constant shouldHaveBeenBetween (line 27) | shouldHaveBeenBetween = "Expected '%v' to be between '%v' and... constant shouldNotHaveBeenBetween (line 28) | shouldNotHaveBeenBetween = "Expected '%v' NOT to be between '%v'... constant shouldHaveDifferentUpperAndLower (line 29) | shouldHaveDifferentUpperAndLower = "The lower and upper bounds must be d... constant shouldHaveBeenBetweenOrEqual (line 30) | shouldHaveBeenBetweenOrEqual = "Expected '%v' to be between '%v' and... constant shouldNotHaveBeenBetweenOrEqual (line 31) | shouldNotHaveBeenBetweenOrEqual = "Expected '%v' NOT to be between '%v'... constant shouldHaveContained (line 35) | shouldHaveContained = "Expected the container (%v) to contain... constant shouldNotHaveContained (line 36) | shouldNotHaveContained = "Expected the container (%v) NOT to con... constant shouldHaveContainedKey (line 37) | shouldHaveContainedKey = "Expected the %v to contain the key: %v... constant shouldNotHaveContainedKey (line 38) | shouldNotHaveContainedKey = "Expected the %v NOT to contain the key... constant shouldHaveBeenIn (line 39) | shouldHaveBeenIn = "Expected '%v' to be in the container (... constant shouldNotHaveBeenIn (line 40) | shouldNotHaveBeenIn = "Expected '%v' NOT to be in the contain... constant shouldHaveBeenAValidCollection (line 41) | shouldHaveBeenAValidCollection = "You must provide a valid container (wa... constant shouldHaveBeenAValidMap (line 42) | shouldHaveBeenAValidMap = "You must provide a valid map type (was... constant shouldHaveBeenEmpty (line 43) | shouldHaveBeenEmpty = "Expected %+v to be empty (but it wasn'... constant shouldNotHaveBeenEmpty (line 44) | shouldNotHaveBeenEmpty = "Expected %+v to NOT be empty (but it w... constant shouldHaveBeenAValidInteger (line 45) | shouldHaveBeenAValidInteger = "You must provide a valid integer (was ... constant shouldHaveBeenAValidLength (line 46) | shouldHaveBeenAValidLength = "You must provide a valid positive inte... constant shouldHaveHadLength (line 47) | shouldHaveHadLength = "Expected %+v (length: %v) to have leng... constant shouldHaveStartedWith (line 51) | shouldHaveStartedWith = "Expected '%v'\nto start with '%v... constant shouldNotHaveStartedWith (line 52) | shouldNotHaveStartedWith = "Expected '%v'\nNOT to start ... constant shouldHaveEndedWith (line 53) | shouldHaveEndedWith = "Expected '%v'\nto end with '%v'\n(... constant shouldNotHaveEndedWith (line 54) | shouldNotHaveEndedWith = "Expected '%v'\nNOT to end with... constant shouldAllBeStrings (line 55) | shouldAllBeStrings = "All arguments to this assertion must ... constant shouldBothBeStrings (line 56) | shouldBothBeStrings = "Both arguments to this assertion must... constant shouldBeString (line 57) | shouldBeString = "The argument to this assertion must b... constant shouldHaveContainedSubstring (line 58) | shouldHaveContainedSubstring = "Expected '%s' to contain substring '%... constant shouldNotHaveContainedSubstring (line 59) | shouldNotHaveContainedSubstring = "Expected '%s' NOT to contain substrin... constant shouldHaveBeenBlank (line 60) | shouldHaveBeenBlank = "Expected '%s' to be blank (but it was... constant shouldNotHaveBeenBlank (line 61) | shouldNotHaveBeenBlank = "Expected value to NOT be blank (but i... constant shouldUseVoidNiladicFunction (line 65) | shouldUseVoidNiladicFunction = "You must provide a void, niladic functio... constant shouldHavePanickedWith (line 66) | shouldHavePanickedWith = "Expected func() to panic with '%v' (but ... constant shouldHavePanicked (line 67) | shouldHavePanicked = "Expected func() to panic (but it didn't)!" constant shouldNotHavePanicked (line 68) | shouldNotHavePanicked = "Expected func() NOT to panic (error: '%+... constant shouldNotHavePanickedWith (line 69) | shouldNotHavePanickedWith = "Expected func() NOT to panic with '%v' (... constant shouldHaveBeenA (line 73) | shouldHaveBeenA = "Expected '%v' to be: '%v' (but was: '%v')!" constant shouldNotHaveBeenA (line 74) | shouldNotHaveBeenA = "Expected '%v' to NOT be: '%v' (but it was)!" constant shouldHaveImplemented (line 76) | shouldHaveImplemented = "Expected: '%v interface support'\nA... constant shouldNotHaveImplemented (line 77) | shouldNotHaveImplemented = "Expected '%v'\nto NOT imple... constant shouldCompareWithInterfacePointer (line 78) | shouldCompareWithInterfacePointer = "The expected value must be a pointe... constant shouldNotBeNilActual (line 79) | shouldNotBeNilActual = "The actual value was 'nil' and shou... constant shouldUseTimes (line 83) | shouldUseTimes = "You must provide time instances as a... constant shouldUseTimeSlice (line 84) | shouldUseTimeSlice = "You must provide a slice of time ins... constant shouldUseDurationAndTime (line 85) | shouldUseDurationAndTime = "You must provide a duration and a ti... constant shouldHaveHappenedBefore (line 86) | shouldHaveHappenedBefore = "Expected '%v' to happen before '%v' ... constant shouldHaveHappenedAfter (line 87) | shouldHaveHappenedAfter = "Expected '%v' to happen after '%v' (... constant shouldHaveHappenedBetween (line 88) | shouldHaveHappenedBetween = "Expected '%v' to happen between '%v'... constant shouldNotHaveHappenedOnOrBetween (line 89) | shouldNotHaveHappenedOnOrBetween = "Expected '%v' to NOT happen on or be... constant shouldHaveBeenChronological (line 92) | shouldHaveBeenChronological = "The 'Time' at index [%d] should have happ... FILE: vendor/github.com/smartystreets/assertions/panic.go function ShouldPanic (line 6) | func ShouldPanic(actual interface{}, expected ...interface{}) (message s... function ShouldNotPanic (line 32) | func ShouldNotPanic(actual interface{}, expected ...interface{}) (messag... function ShouldPanicWith (line 58) | func ShouldPanicWith(actual interface{}, expected ...interface{}) (messa... function ShouldNotPanicWith (line 88) | func ShouldNotPanicWith(actual interface{}, expected ...interface{}) (me... FILE: vendor/github.com/smartystreets/assertions/quantity.go function ShouldBeGreaterThan (line 10) | func ShouldBeGreaterThan(actual interface{}, expected ...interface{}) st... function ShouldBeGreaterThanOrEqualTo (line 22) | func ShouldBeGreaterThanOrEqualTo(actual interface{}, expected ...interf... function ShouldBeLessThan (line 32) | func ShouldBeLessThan(actual interface{}, expected ...interface{}) string { function ShouldBeLessThanOrEqualTo (line 42) | func ShouldBeLessThanOrEqualTo(actual interface{}, expected ...interface... function ShouldBeBetween (line 53) | func ShouldBeBetween(actual interface{}, expected ...interface{}) string { function ShouldNotBeBetween (line 69) | func ShouldNotBeBetween(actual interface{}, expected ...interface{}) str... function deriveBounds (line 82) | func deriveBounds(values []interface{}) (lower interface{}, upper interf... function isBetween (line 93) | func isBetween(value, lower, upper interface{}) bool { function ShouldBeBetweenOrEqual (line 104) | func ShouldBeBetweenOrEqual(actual interface{}, expected ...interface{})... function ShouldNotBeBetweenOrEqual (line 120) | func ShouldNotBeBetweenOrEqual(actual interface{}, expected ...interface... function isBetweenOrEqual (line 134) | func isBetweenOrEqual(value, lower, upper interface{}) bool { FILE: vendor/github.com/smartystreets/assertions/serializer.go type Serializer (line 10) | type Serializer interface type failureSerializer (line 15) | type failureSerializer struct method serializeDetailed (line 17) | func (self *failureSerializer) serializeDetailed(expected, actual inte... method serialize (line 30) | func (self *failureSerializer) serialize(expected, actual interface{},... function newSerializer (line 43) | func newSerializer() *failureSerializer { type FailureView (line 51) | type FailureView struct type noopSerializer (line 62) | type noopSerializer struct method serialize (line 64) | func (self *noopSerializer) serialize(expected, actual interface{}, me... method serializeDetailed (line 67) | func (self *noopSerializer) serializeDetailed(expected, actual interfa... FILE: vendor/github.com/smartystreets/assertions/strings.go function ShouldStartWith (line 10) | func ShouldStartWith(actual interface{}, expected ...interface{}) string { function shouldStartWith (line 24) | func shouldStartWith(value, prefix string) string { function ShouldNotStartWith (line 36) | func ShouldNotStartWith(actual interface{}, expected ...interface{}) str... function shouldNotStartWith (line 50) | func shouldNotStartWith(value, prefix string) string { function ShouldEndWith (line 64) | func ShouldEndWith(actual interface{}, expected ...interface{}) string { function shouldEndWith (line 78) | func shouldEndWith(value, suffix string) string { function ShouldNotEndWith (line 90) | func ShouldNotEndWith(actual interface{}, expected ...interface{}) string { function shouldNotEndWith (line 104) | func shouldNotEndWith(value, suffix string) string { function ShouldContainSubstring (line 118) | func ShouldContainSubstring(actual interface{}, expected ...interface{})... function ShouldNotContainSubstring (line 137) | func ShouldNotContainSubstring(actual interface{}, expected ...interface... function ShouldBeBlank (line 156) | func ShouldBeBlank(actual interface{}, expected ...interface{}) string { function ShouldNotBeBlank (line 171) | func ShouldNotBeBlank(actual interface{}, expected ...interface{}) string { function ShouldEqualWithout (line 187) | func ShouldEqualWithout(actual interface{}, expected ...interface{}) str... function ShouldEqualTrimSpace (line 213) | func ShouldEqualTrimSpace(actual interface{}, expected ...interface{}) s... FILE: vendor/github.com/smartystreets/assertions/time.go function ShouldHappenBefore (line 9) | func ShouldHappenBefore(actual interface{}, expected ...interface{}) str... function ShouldHappenOnOrBefore (line 28) | func ShouldHappenOnOrBefore(actual interface{}, expected ...interface{})... function ShouldHappenAfter (line 46) | func ShouldHappenAfter(actual interface{}, expected ...interface{}) stri... function ShouldHappenOnOrAfter (line 63) | func ShouldHappenOnOrAfter(actual interface{}, expected ...interface{}) ... function ShouldHappenBetween (line 80) | func ShouldHappenBetween(actual interface{}, expected ...interface{}) st... function ShouldHappenOnOrBetween (line 102) | func ShouldHappenOnOrBetween(actual interface{}, expected ...interface{}... function ShouldNotHappenOnOrBetween (line 121) | func ShouldNotHappenOnOrBetween(actual interface{}, expected ...interfac... function ShouldHappenWithin (line 144) | func ShouldHappenWithin(actual interface{}, expected ...interface{}) str... function ShouldNotHappenWithin (line 164) | func ShouldNotHappenWithin(actual interface{}, expected ...interface{}) ... function ShouldBeChronological (line 183) | func ShouldBeChronological(actual interface{}, expected ...interface{}) ... FILE: vendor/github.com/smartystreets/assertions/type.go function ShouldHaveSameTypeAs (line 9) | func ShouldHaveSameTypeAs(actual interface{}, expected ...interface{}) s... function ShouldNotHaveSameTypeAs (line 24) | func ShouldNotHaveSameTypeAs(actual interface{}, expected ...interface{}... function ShouldImplement (line 40) | func ShouldImplement(actual interface{}, expectedList ...interface{}) st... function ShouldNotImplement (line 80) | func ShouldNotImplement(actual interface{}, expectedList ...interface{})... FILE: vendor/github.com/smartystreets/goconvey/convey/context.go type conveyErr (line 10) | type conveyErr struct method Error (line 15) | func (e *conveyErr) Error() string { function conveyPanic (line 19) | func conveyPanic(fmt string, params ...interface{}) { constant missingGoTest (line 24) | missingGoTest = `Top-level calls to Convey(...) need a reference to the ... constant extraGoTest (line 26) | extraGoTest = `Only the top-level call to Convey(...) needs a referen... constant noStackContext (line 27) | noStackContext = "Convey operation made without context on goroutine sta... constant differentConveySituations (line 29) | differentConveySituations = "Different set of Convey statements on subse... constant multipleIdenticalConvey (line 30) | multipleIdenticalConvey = "Multiple convey suites with identical names... constant failureHalt (line 34) | failureHalt = "___FAILURE_HALT___" constant nodeKey (line 36) | nodeKey = "node" function getCurrentContext (line 41) | func getCurrentContext() *context { function mustGetCurrentContext (line 49) | func mustGetCurrentContext() *context { type context (line 69) | type context struct method SkipConvey (line 118) | func (ctx *context) SkipConvey(items ...interface{}) { method FocusConvey (line 122) | func (ctx *context) FocusConvey(items ...interface{}) { method Convey (line 126) | func (ctx *context) Convey(items ...interface{}) { method SkipSo (line 168) | func (ctx *context) SkipSo(stuff ...interface{}) { method So (line 172) | func (ctx *context) So(actual interface{}, assert assertion, expected ... method Reset (line 180) | func (ctx *context) Reset(action func()) { method Print (line 185) | func (ctx *context) Print(items ...interface{}) (int, error) { method Println (line 190) | func (ctx *context) Println(items ...interface{}) (int, error) { method Printf (line 195) | func (ctx *context) Printf(format string, items ...interface{}) (int, ... method shouldVisit (line 205) | func (c *context) shouldVisit() bool { method conveyInner (line 212) | func (ctx *context) conveyInner(situation string, f func(C)) { method assertionReport (line 267) | func (ctx *context) assertionReport(r *reporting.AssertionResult) { function rootConvey (line 87) | func rootConvey(items ...interface{}) { FILE: vendor/github.com/smartystreets/goconvey/convey/discovery.go type actionSpecifier (line 3) | type actionSpecifier constant noSpecifier (line 6) | noSpecifier actionSpecifier = iota constant skipConvey (line 7) | skipConvey constant focusConvey (line 8) | focusConvey type suite (line 11) | type suite struct function newSuite (line 19) | func newSuite(situation string, failureMode FailureMode, f func(C), test... function discover (line 35) | func discover(items []interface{}) *suite { function item (line 48) | func item(items []interface{}) interface{} { function parseName (line 54) | func parseName(items []interface{}) (string, []interface{}) { function parseGoTest (line 61) | func parseGoTest(items []interface{}) (t, []interface{}) { function parseFailureMode (line 67) | func parseFailureMode(items []interface{}) (FailureMode, []interface{}) { function parseAction (line 73) | func parseAction(items []interface{}) (func(C), []interface{}) { function parseSpecifier (line 85) | func parseSpecifier(items []interface{}) (actionSpecifier, []interface{}) { type t (line 99) | type t interface constant parseError (line 103) | parseError = "You must provide a name (string), then a *testing.T (if in... FILE: vendor/github.com/smartystreets/goconvey/convey/doc.go type C (line 21) | type C interface function Convey (line 73) | func Convey(items ...interface{}) { function SkipConvey (line 84) | func SkipConvey(items ...interface{}) { function FocusConvey (line 95) | func FocusConvey(items ...interface{}) { function Reset (line 101) | func Reset(action func()) { type assertion (line 111) | type assertion constant assertionSuccess (line 113) | assertionSuccess = "" function So (line 124) | func So(actual interface{}, assert assertion, expected ...interface{}) { function SkipSo (line 130) | func SkipSo(stuff ...interface{}) { type FailureMode (line 136) | type FailureMode method combine (line 156) | func (f FailureMode) combine(other FailureMode) FailureMode { constant FailureContinues (line 143) | FailureContinues FailureMode = "continue" constant FailureHalts (line 148) | FailureHalts FailureMode = "halt" constant FailureInherits (line 153) | FailureInherits FailureMode = "inherits" function SetDefaultFailureMode (line 169) | func SetDefaultFailureMode(mode FailureMode) { function Print (line 181) | func Print(items ...interface{}) (written int, err error) { function Println (line 187) | func Println(items ...interface{}) (written int, err error) { function Printf (line 193) | func Printf(format string, items ...interface{}) (written int, err error) { function SuppressConsoleStatistics (line 201) | func SuppressConsoleStatistics() { function PrintConsoleStatistics (line 216) | func PrintConsoleStatistics() { FILE: vendor/github.com/smartystreets/goconvey/convey/gotest/utils.go function ResolveExternalCaller (line 11) | func ResolveExternalCaller() (file string, line int, name string) { constant maxStackDepth (line 26) | maxStackDepth = 100 FILE: vendor/github.com/smartystreets/goconvey/convey/init.go function init (line 12) | func init() { function declareFlags (line 20) | func declareFlags() { function noStoryFlagProvided (line 32) | func noStoryFlagProvided() bool { function buildReporter (line 36) | func buildReporter() reporting.Reporter { function flagFound (line 74) | func flagFound(flagValue string) bool { FILE: vendor/github.com/smartystreets/goconvey/convey/nilReporter.go type nilReporter (line 7) | type nilReporter struct method BeginStory (line 9) | func (self *nilReporter) BeginStory(story *reporting.StoryReport) {} method Enter (line 10) | func (self *nilReporter) Enter(scope *reporting.ScopeReport) {} method Report (line 11) | func (self *nilReporter) Report(report *reporting.AssertionResult) {} method Exit (line 12) | func (self *nilReporter) Exit() {} method EndStory (line 13) | func (self *nilReporter) EndStory() {} method Write (line 14) | func (self *nilReporter) Write(p []byte) (int, error) { r... function newNilReporter (line 15) | func newNilReporter() *nilReporter { ret... FILE: vendor/github.com/smartystreets/goconvey/convey/reporting/console.go type console (line 8) | type console struct method Write (line 10) | func (self *console) Write(p []byte) (n int, err error) { function NewConsole (line 14) | func NewConsole() io.Writer { FILE: vendor/github.com/smartystreets/goconvey/convey/reporting/dot.go type dot (line 5) | type dot struct method BeginStory (line 7) | func (self *dot) BeginStory(story *StoryReport) {} method Enter (line 9) | func (self *dot) Enter(scope *ScopeReport) {} method Report (line 11) | func (self *dot) Report(report *AssertionResult) { method Exit (line 28) | func (self *dot) Exit() {} method EndStory (line 30) | func (self *dot) EndStory() {} method Write (line 32) | func (self *dot) Write(content []byte) (written int, err error) { function NewDotReporter (line 36) | func NewDotReporter(out *Printer) *dot { FILE: vendor/github.com/smartystreets/goconvey/convey/reporting/gotest.go type gotestReporter (line 3) | type gotestReporter struct method BeginStory (line 5) | func (self *gotestReporter) BeginStory(story *StoryReport) { method Enter (line 9) | func (self *gotestReporter) Enter(scope *ScopeReport) {} method Report (line 11) | func (self *gotestReporter) Report(r *AssertionResult) { method Exit (line 17) | func (self *gotestReporter) Exit() {} method EndStory (line 19) | func (self *gotestReporter) EndStory() { method Write (line 23) | func (self *gotestReporter) Write(content []byte) (written int, err er... function NewGoTestReporter (line 27) | func NewGoTestReporter() *gotestReporter { function passed (line 31) | func passed(r *AssertionResult) bool { FILE: vendor/github.com/smartystreets/goconvey/convey/reporting/init.go function init (line 9) | func init() { function BuildJsonReporter (line 19) | func BuildJsonReporter() Reporter { function BuildDotReporter (line 25) | func BuildDotReporter() Reporter { function BuildStoryReporter (line 33) | func BuildStoryReporter() Reporter { function BuildSilentReporter (line 41) | func BuildSilentReporter() Reporter { function SuppressConsoleStatistics (line 71) | func SuppressConsoleStatistics() { consoleStatistics.Suppress() } function PrintConsoleStatistics (line 72) | func PrintConsoleStatistics() { consoleStatistics.PrintSummary() } function QuietMode (line 77) | func QuietMode() { function monochrome (line 81) | func monochrome() { function isColorableTerminal (line 85) | func isColorableTerminal() bool { type T (line 92) | type T interface FILE: vendor/github.com/smartystreets/goconvey/convey/reporting/json.go type JsonReporter (line 12) | type JsonReporter struct method depth (line 20) | func (self *JsonReporter) depth() int { return len(self.currentKey) } method BeginStory (line 22) | func (self *JsonReporter) BeginStory(story *StoryReport) {} method Enter (line 24) | func (self *JsonReporter) Enter(scope *ScopeReport) { method Report (line 35) | func (self *JsonReporter) Report(report *AssertionResult) { method Exit (line 39) | func (self *JsonReporter) Exit() { method EndStory (line 43) | func (self *JsonReporter) EndStory() { method report (line 47) | func (self *JsonReporter) report() { method reset (line 61) | func (self *JsonReporter) reset() { method Write (line 67) | func (self *JsonReporter) Write(content []byte) (written int, err erro... function NewJsonReporter (line 72) | func NewJsonReporter(out *Printer) *JsonReporter { constant OpenJson (line 79) | OpenJson = ">->->OPEN-JSON->->->" constant CloseJson (line 80) | CloseJson = "<-<-<-CLOSE-JSON<-<-<" constant jsonMarshalFailure (line 81) | jsonMarshalFailure = ` FILE: vendor/github.com/smartystreets/goconvey/convey/reporting/printer.go type Printer (line 9) | type Printer struct method Println (line 14) | func (self *Printer) Println(message string, values ...interface{}) { method Print (line 19) | func (self *Printer) Print(message string, values ...interface{}) { method Insert (line 24) | func (self *Printer) Insert(text string) { method format (line 28) | func (self *Printer) format(message string, values ...interface{}) str... method Indent (line 39) | func (self *Printer) Indent() { method Dedent (line 43) | func (self *Printer) Dedent() { function NewPrinter (line 49) | func NewPrinter(out io.Writer) *Printer { constant space (line 55) | space = " " constant pad (line 56) | pad = space + space constant padLength (line 57) | padLength = len(pad) FILE: vendor/github.com/smartystreets/goconvey/convey/reporting/problems.go type problem (line 5) | type problem struct method BeginStory (line 12) | func (self *problem) BeginStory(story *StoryReport) {} method Enter (line 14) | func (self *problem) Enter(scope *ScopeReport) {} method Report (line 16) | func (self *problem) Report(report *AssertionResult) { method Exit (line 24) | func (self *problem) Exit() {} method EndStory (line 26) | func (self *problem) EndStory() { method show (line 31) | func (self *problem) show(display func(), color string) { method showErrors (line 41) | func (self *problem) showErrors() { method showFailures (line 50) | func (self *problem) showFailures() { method Write (line 60) | func (self *problem) Write(content []byte) (written int, err error) { method prepareForNextStory (line 77) | func (self *problem) prepareForNextStory() { function NewProblemReporter (line 64) | func NewProblemReporter(out *Printer) *problem { function NewSilentProblemReporter (line 71) | func NewSilentProblemReporter(out *Printer) *problem { FILE: vendor/github.com/smartystreets/goconvey/convey/reporting/reporter.go type Reporter (line 5) | type Reporter interface type reporters (line 14) | type reporters struct method BeginStory (line 16) | func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(... method Enter (line 17) | func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(... method Report (line 18) | func (self *reporters) Report(a *AssertionResult) { self.foreach(func(... method Exit (line 19) | func (self *reporters) Exit() { self.foreach(func(... method EndStory (line 20) | func (self *reporters) EndStory() { self.foreach(func(... method Write (line 22) | func (self *reporters) Write(contents []byte) (written int, err error) { method foreach (line 29) | func (self *reporters) foreach(action func(Reporter)) { function NewReporters (line 35) | func NewReporters(collection ...Reporter) *reporters { FILE: vendor/github.com/smartystreets/goconvey/convey/reporting/reports.go type ScopeReport (line 14) | type ScopeReport struct function NewScopeReport (line 20) | func NewScopeReport(title string) *ScopeReport { type ScopeResult (line 31) | type ScopeResult struct function newScopeResult (line 40) | func newScopeResult(title string, depth int, file string, line int) *Sco... type StoryReport (line 52) | type StoryReport struct function NewStoryReport (line 59) | func NewStoryReport(test T) *StoryReport { function removePackagePath (line 72) | func removePackagePath(name string) string { type FailureView (line 81) | type FailureView struct type AssertionResult (line 89) | type AssertionResult struct function NewFailureReport (line 100) | func NewFailureReport(failure string) *AssertionResult { function parseFailure (line 107) | func parseFailure(failure string, report *AssertionResult) { function NewErrorReport (line 118) | func NewErrorReport(err interface{}) *AssertionResult { function NewSuccessReport (line 125) | func NewSuccessReport() *AssertionResult { function NewSkipReport (line 128) | func NewSkipReport() *AssertionResult { function caller (line 136) | func caller() (file string, line int) { function stackTrace (line 141) | func stackTrace() string { function fullStackTrace (line 146) | func fullStackTrace() string { function removeInternalEntries (line 151) | func removeInternalEntries(stack string) string { function isExternal (line 161) | func isExternal(line string) bool { FILE: vendor/github.com/smartystreets/goconvey/convey/reporting/statistics.go function NewStatisticsReporter (line 86) | func NewStatisticsReporter(out *Printer) *statistics { type statistics (line 92) | type statistics struct method BeginStory (line 8) | func (self *statistics) BeginStory(story *StoryReport) {} method Enter (line 10) | func (self *statistics) Enter(scope *ScopeReport) {} method Report (line 12) | func (self *statistics) Report(report *AssertionResult) { method Exit (line 29) | func (self *statistics) Exit() {} method EndStory (line 31) | func (self *statistics) EndStory() { method Suppress (line 40) | func (self *statistics) Suppress() { method PrintSummary (line 46) | func (self *statistics) PrintSummary() { method printSummaryLocked (line 52) | func (self *statistics) printSummaryLocked() { method reportAssertionsLocked (line 57) | func (self *statistics) reportAssertionsLocked() { method decideColorLocked (line 61) | func (self *statistics) decideColorLocked() { method reportSkippedSectionsLocked (line 70) | func (self *statistics) reportSkippedSectionsLocked() { method completeReportLocked (line 76) | func (self *statistics) completeReportLocked() { method Write (line 82) | func (self *statistics) Write(content []byte) (written int, err error) { function plural (line 103) | func plural(word string, count int) string { FILE: vendor/github.com/smartystreets/goconvey/convey/reporting/story.go type story (line 15) | type story struct method BeginStory (line 21) | func (self *story) BeginStory(story *StoryReport) {} method Enter (line 23) | func (self *story) Enter(scope *ScopeReport) { method Report (line 37) | func (self *story) Report(report *AssertionResult) { method Exit (line 54) | func (self *story) Exit() { method EndStory (line 59) | func (self *story) EndStory() { method Write (line 64) | func (self *story) Write(content []byte) (written int, err error) { function NewStoryReporter (line 68) | func NewStoryReporter(out *Printer) *story { FILE: vendor/github.com/spf13/pflag/bool.go type boolFlag (line 10) | type boolFlag interface type boolValue (line 16) | type boolValue method Set (line 23) | func (b *boolValue) Set(s string) error { method Type (line 29) | func (b *boolValue) Type() string { method String (line 33) | func (b *boolValue) String() string { return fmt.Sprintf("%v", *b) } method IsBoolFlag (line 35) | func (b *boolValue) IsBoolFlag() bool { return true } function newBoolValue (line 18) | func newBoolValue(val bool, p *bool) *boolValue { function boolConv (line 37) | func boolConv(sval string) (interface{}, error) { method GetBool (line 42) | func (f *FlagSet) GetBool(name string) (bool, error) { method BoolVar (line 52) | func (f *FlagSet) BoolVar(p *bool, name string, value bool, usage string) { method BoolVarP (line 57) | func (f *FlagSet) BoolVarP(p *bool, name, shorthand string, value bool, ... function BoolVar (line 64) | func BoolVar(p *bool, name string, value bool, usage string) { function BoolVarP (line 69) | func BoolVarP(p *bool, name, shorthand string, value bool, usage string) { method Bool (line 76) | func (f *FlagSet) Bool(name string, value bool, usage string) *bool { method BoolP (line 81) | func (f *FlagSet) BoolP(name, shorthand string, value bool, usage string... function Bool (line 89) | func Bool(name string, value bool, usage string) *bool { function BoolP (line 94) | func BoolP(name, shorthand string, value bool, usage string) *bool { FILE: vendor/github.com/spf13/pflag/count.go type countValue (line 9) | type countValue method Set (line 16) | func (i *countValue) Set(s string) error { method Type (line 27) | func (i *countValue) Type() string { method String (line 31) | func (i *countValue) String() string { return fmt.Sprintf("%v", *i) } function newCountValue (line 11) | func newCountValue(val int, p *int) *countValue { function countConv (line 33) | func countConv(sval string) (interface{}, error) { method GetCount (line 42) | func (f *FlagSet) GetCount(name string) (int, error) { method CountVar (line 53) | func (f *FlagSet) CountVar(p *int, name string, usage string) { method CountVarP (line 58) | func (f *FlagSet) CountVarP(p *int, name, shorthand string, usage string) { function CountVar (line 64) | func CountVar(p *int, name string, usage string) { function CountVarP (line 69) | func CountVarP(p *int, name, shorthand string, usage string) { method Count (line 76) | func (f *FlagSet) Count(name string, usage string) *int { method CountP (line 83) | func (f *FlagSet) CountP(name, shorthand string, usage string) *int { function Count (line 90) | func Count(name string, usage string) *int { function CountP (line 95) | func CountP(name, shorthand string, usage string) *int { FILE: vendor/github.com/spf13/pflag/duration.go type durationValue (line 8) | type durationValue method Set (line 15) | func (d *durationValue) Set(s string) error { method Type (line 21) | func (d *durationValue) Type() string { method String (line 25) | func (d *durationValue) String() string { return (*time.Duration)(d).S... function newDurationValue (line 10) | func newDurationValue(val time.Duration, p *time.Duration) *durationValue { function durationConv (line 27) | func durationConv(sval string) (interface{}, error) { method GetDuration (line 32) | func (f *FlagSet) GetDuration(name string) (time.Duration, error) { method DurationVar (line 42) | func (f *FlagSet) DurationVar(p *time.Duration, name string, value time.... method DurationVarP (line 47) | func (f *FlagSet) DurationVarP(p *time.Duration, name, shorthand string,... function DurationVar (line 53) | func DurationVar(p *time.Duration, name string, value time.Duration, usa... function DurationVarP (line 58) | func DurationVarP(p *time.Duration, name, shorthand string, value time.D... method Duration (line 64) | func (f *FlagSet) Duration(name string, value time.Duration, usage strin... method DurationP (line 71) | func (f *FlagSet) DurationP(name, shorthand string, value time.Duration,... function Duration (line 79) | func Duration(name string, value time.Duration, usage string) *time.Dura... function DurationP (line 84) | func DurationP(name, shorthand string, value time.Duration, usage string... FILE: vendor/github.com/spf13/pflag/flag.go type ErrorHandling (line 115) | type ErrorHandling constant ContinueOnError (line 119) | ContinueOnError ErrorHandling = iota constant ExitOnError (line 121) | ExitOnError constant PanicOnError (line 123) | PanicOnError type NormalizedName (line 128) | type NormalizedName type FlagSet (line 131) | type FlagSet struct method SetNormalizeFunc (line 195) | func (f *FlagSet) SetNormalizeFunc(n func(f *FlagSet, name string) Nor... method GetNormalizeFunc (line 207) | func (f *FlagSet) GetNormalizeFunc() func(f *FlagSet, name string) Nor... method normalizeFlagName (line 214) | func (f *FlagSet) normalizeFlagName(name string) NormalizedName { method out (line 219) | func (f *FlagSet) out() io.Writer { method SetOutput (line 228) | func (f *FlagSet) SetOutput(output io.Writer) { method VisitAll (line 234) | func (f *FlagSet) VisitAll(fn func(*Flag)) { method HasFlags (line 241) | func (f *FlagSet) HasFlags() bool { method HasAvailableFlags (line 247) | func (f *FlagSet) HasAvailableFlags() bool { method Visit (line 264) | func (f *FlagSet) Visit(fn func(*Flag)) { method Lookup (line 277) | func (f *FlagSet) Lookup(name string) *Flag { method lookup (line 282) | func (f *FlagSet) lookup(name NormalizedName) *Flag { method getFlagType (line 287) | func (f *FlagSet) getFlagType(name string, ftype string, convFunc func... method ArgsLenAtDash (line 310) | func (f *FlagSet) ArgsLenAtDash() int { method MarkDeprecated (line 317) | func (f *FlagSet) MarkDeprecated(name string, usageMessage string) err... method MarkShorthandDeprecated (line 332) | func (f *FlagSet) MarkShorthandDeprecated(name string, usageMessage st... method MarkHidden (line 346) | func (f *FlagSet) MarkHidden(name string) error { method Set (line 362) | func (f *FlagSet) Set(name, value string) error { method SetAnnotation (line 386) | func (f *FlagSet) SetAnnotation(name, key string, values []string) err... method Changed (line 401) | func (f *FlagSet) Changed(name string) bool { method PrintDefaults (line 417) | func (f *FlagSet) PrintDefaults() { method FlagUsages (line 479) | func (f *FlagSet) FlagUsages() string { method NFlag (line 567) | func (f *FlagSet) NFlag() int { return len(f.actual) } method Arg (line 574) | func (f *FlagSet) Arg(i int) string { method NArg (line 588) | func (f *FlagSet) NArg() int { return len(f.args) } method Args (line 594) | func (f *FlagSet) Args() []string { return f.args } method Var (line 605) | func (f *FlagSet) Var(value Value, name string, usage string) { method VarPF (line 610) | func (f *FlagSet) VarPF(value Value, name, shorthand, usage string) *F... method VarP (line 624) | func (f *FlagSet) VarP(value Value, name, shorthand, usage string) { method AddFlag (line 629) | func (f *FlagSet) AddFlag(flag *Flag) { method AddFlagSet (line 667) | func (f *FlagSet) AddFlagSet(newSet *FlagSet) { method failf (line 695) | func (f *FlagSet) failf(format string, a ...interface{}) error { method usage (line 704) | func (f *FlagSet) usage() { method setFlag (line 714) | func (f *FlagSet) setFlag(flag *Flag, value string, origArg string) er... method parseLongArg (line 742) | func (f *FlagSet) parseLongArg(s string, args []string) (a []string, e... method parseSingleShortArg (line 780) | func (f *FlagSet) parseSingleShortArg(shorthands string, args []string... method parseShortArg (line 819) | func (f *FlagSet) parseShortArg(s string, args []string) (a []string, ... method parseArgs (line 833) | func (f *FlagSet) parseArgs(args []string) (err error) { method Parse (line 868) | func (f *FlagSet) Parse(arguments []string) error { method Parsed (line 886) | func (f *FlagSet) Parsed() bool { method SetInterspersed (line 923) | func (f *FlagSet) SetInterspersed(interspersed bool) { method Init (line 930) | func (f *FlagSet) Init(name string, errorHandling ErrorHandling) { type Flag (line 152) | type Flag struct type Value (line 168) | type Value interface function sortFlags (line 175) | func sortFlags(flags map[NormalizedName]*Flag) []*Flag { function VisitAll (line 258) | func VisitAll(fn func(*Flag)) { function Visit (line 272) | func Visit(fn func(*Flag)) { function Lookup (line 357) | func Lookup(name string) *Flag { function Set (line 411) | func Set(name, value string) error { function isZeroValue (line 424) | func isZeroValue(value string) bool { function UnquoteUsage (line 443) | func UnquoteUsage(flag *Flag) (name string, usage string) { function PrintDefaults (line 543) | func PrintDefaults() { function defaultUsage (line 548) | func defaultUsage(f *FlagSet) { function NFlag (line 570) | func NFlag() int { return len(CommandLine.actual) } function Arg (line 583) | func Arg(i int) string { function NArg (line 591) | func NArg() int { return len(CommandLine.args) } function Args (line 597) | func Args() []string { return CommandLine.args } function Var (line 684) | func Var(value Value, name string, usage string) { function VarP (line 689) | func VarP(value Value, name, shorthand, usage string) { function containsShorthand (line 733) | func containsShorthand(arg, shorthand string) bool { function Parse (line 892) | func Parse() { function SetInterspersed (line 898) | func SetInterspersed(interspersed bool) { function Parsed (line 903) | func Parsed() bool { function NewFlagSet (line 912) | func NewFlagSet(name string, errorHandling ErrorHandling) *FlagSet { FILE: vendor/github.com/spf13/pflag/float32.go type float32Value (line 9) | type float32Value method Set (line 16) | func (f *float32Value) Set(s string) error { method Type (line 22) | func (f *float32Value) Type() string { method String (line 26) | func (f *float32Value) String() string { return fmt.Sprintf("%v", *f) } function newFloat32Value (line 11) | func newFloat32Value(val float32, p *float32) *float32Value { function float32Conv (line 28) | func float32Conv(sval string) (interface{}, error) { method GetFloat32 (line 37) | func (f *FlagSet) GetFloat32(name string) (float32, error) { method Float32Var (line 47) | func (f *FlagSet) Float32Var(p *float32, name string, value float32, usa... method Float32VarP (line 52) | func (f *FlagSet) Float32VarP(p *float32, name, shorthand string, value ... function Float32Var (line 58) | func Float32Var(p *float32, name string, value float32, usage string) { function Float32VarP (line 63) | func Float32VarP(p *float32, name, shorthand string, value float32, usag... method Float32 (line 69) | func (f *FlagSet) Float32(name string, value float32, usage string) *flo... method Float32P (line 76) | func (f *FlagSet) Float32P(name, shorthand string, value float32, usage ... function Float32 (line 84) | func Float32(name string, value float32, usage string) *float32 { function Float32P (line 89) | func Float32P(name, shorthand string, value float32, usage string) *floa... FILE: vendor/github.com/spf13/pflag/float64.go type float64Value (line 9) | type float64Value method Set (line 16) | func (f *float64Value) Set(s string) error { method Type (line 22) | func (f *float64Value) Type() string { method String (line 26) | func (f *float64Value) String() string { return fmt.Sprintf("%v", *f) } function newFloat64Value (line 11) | func newFloat64Value(val float64, p *float64) *float64Value { function float64Conv (line 28) | func float64Conv(sval string) (interface{}, error) { method GetFloat64 (line 33) | func (f *FlagSet) GetFloat64(name string) (float64, error) { method Float64Var (line 43) | func (f *FlagSet) Float64Var(p *float64, name string, value float64, usa... method Float64VarP (line 48) | func (f *FlagSet) Float64VarP(p *float64, name, shorthand string, value ... function Float64Var (line 54) | func Float64Var(p *float64, name string, value float64, usage string) { function Float64VarP (line 59) | func Float64VarP(p *float64, name, shorthand string, value float64, usag... method Float64 (line 65) | func (f *FlagSet) Float64(name string, value float64, usage string) *flo... method Float64P (line 72) | func (f *FlagSet) Float64P(name, shorthand string, value float64, usage ... function Float64 (line 80) | func Float64(name string, value float64, usage string) *float64 { function Float64P (line 85) | func Float64P(name, shorthand string, value float64, usage string) *floa... FILE: vendor/github.com/spf13/pflag/golangflag.go type flagValueWrapper (line 20) | type flagValueWrapper struct method String (line 51) | func (v *flagValueWrapper) String() string { method Set (line 55) | func (v *flagValueWrapper) Set(s string) error { method Type (line 59) | func (v *flagValueWrapper) Type() string { type goBoolFlag (line 27) | type goBoolFlag interface function wrapFlagValue (line 32) | func wrapFlagValue(v goflag.Value) Value { function PFlagFromGoFlag (line 67) | func PFlagFromGoFlag(goflag *goflag.Flag) *Flag { method AddGoFlag (line 88) | func (f *FlagSet) AddGoFlag(goflag *goflag.Flag) { method AddGoFlagSet (line 97) | func (f *FlagSet) AddGoFlagSet(newSet *goflag.FlagSet) { FILE: vendor/github.com/spf13/pflag/int.go type intValue (line 9) | type intValue method Set (line 16) | func (i *intValue) Set(s string) error { method Type (line 22) | func (i *intValue) Type() string { method String (line 26) | func (i *intValue) String() string { return fmt.Sprintf("%v", *i) } function newIntValue (line 11) | func newIntValue(val int, p *int) *intValue { function intConv (line 28) | func intConv(sval string) (interface{}, error) { method GetInt (line 33) | func (f *FlagSet) GetInt(name string) (int, error) { method IntVar (line 43) | func (f *FlagSet) IntVar(p *int, name string, value int, usage string) { method IntVarP (line 48) | func (f *FlagSet) IntVarP(p *int, name, shorthand string, value int, usa... function IntVar (line 54) | func IntVar(p *int, name string, value int, usage string) { function IntVarP (line 59) | func IntVarP(p *int, name, shorthand string, value int, usage string) { method Int (line 65) | func (f *FlagSet) Int(name string, value int, usage string) *int { method IntP (line 72) | func (f *FlagSet) IntP(name, shorthand string, value int, usage string) ... function Int (line 80) | func Int(name string, value int, usage string) *int { function IntP (line 85) | func IntP(name, shorthand string, value int, usage string) *int { FILE: vendor/github.com/spf13/pflag/int32.go type int32Value (line 9) | type int32Value method Set (line 16) | func (i *int32Value) Set(s string) error { method Type (line 22) | func (i *int32Value) Type() string { method String (line 26) | func (i *int32Value) String() string { return fmt.Sprintf("%v", *i) } function newInt32Value (line 11) | func newInt32Value(val int32, p *int32) *int32Value { function int32Conv (line 28) | func int32Conv(sval string) (interface{}, error) { method GetInt32 (line 37) | func (f *FlagSet) GetInt32(name string) (int32, error) { method Int32Var (line 47) | func (f *FlagSet) Int32Var(p *int32, name string, value int32, usage str... method Int32VarP (line 52) | func (f *FlagSet) Int32VarP(p *int32, name, shorthand string, value int3... function Int32Var (line 58) | func Int32Var(p *int32, name string, value int32, usage string) { function Int32VarP (line 63) | func Int32VarP(p *int32, name, shorthand string, value int32, usage stri... method Int32 (line 69) | func (f *FlagSet) Int32(name string, value int32, usage string) *int32 { method Int32P (line 76) | func (f *FlagSet) Int32P(name, shorthand string, value int32, usage stri... function Int32 (line 84) | func Int32(name string, value int32, usage string) *int32 { function Int32P (line 89) | func Int32P(name, shorthand string, value int32, usage string) *int32 { FILE: vendor/github.com/spf13/pflag/int64.go type int64Value (line 9) | type int64Value method Set (line 16) | func (i *int64Value) Set(s string) error { method Type (line 22) | func (i *int64Value) Type() string { method String (line 26) | func (i *int64Value) String() string { return fmt.Sprintf("%v", *i) } function newInt64Value (line 11) | func newInt64Value(val int64, p *int64) *int64Value { function int64Conv (line 28) | func int64Conv(sval string) (interface{}, error) { method GetInt64 (line 33) | func (f *FlagSet) GetInt64(name string) (int64, error) { method Int64Var (line 43) | func (f *FlagSet) Int64Var(p *int64, name string, value int64, usage str... method Int64VarP (line 48) | func (f *FlagSet) Int64VarP(p *int64, name, shorthand string, value int6... function Int64Var (line 54) | func Int64Var(p *int64, name string, value int64, usage string) { function Int64VarP (line 59) | func Int64VarP(p *int64, name, shorthand string, value int64, usage stri... method Int64 (line 65) | func (f *FlagSet) Int64(name string, value int64, usage string) *int64 { method Int64P (line 72) | func (f *FlagSet) Int64P(name, shorthand string, value int64, usage stri... function Int64 (line 80) | func Int64(name string, value int64, usage string) *int64 { function Int64P (line 85) | func Int64P(name, shorthand string, value int64, usage string) *int64 { FILE: vendor/github.com/spf13/pflag/int8.go type int8Value (line 9) | type int8Value method Set (line 16) | func (i *int8Value) Set(s string) error { method Type (line 22) | func (i *int8Value) Type() string { method String (line 26) | func (i *int8Value) String() string { return fmt.Sprintf("%v", *i) } function newInt8Value (line 11) | func newInt8Value(val int8, p *int8) *int8Value { function int8Conv (line 28) | func int8Conv(sval string) (interface{}, error) { method GetInt8 (line 37) | func (f *FlagSet) GetInt8(name string) (int8, error) { method Int8Var (line 47) | func (f *FlagSet) Int8Var(p *int8, name string, value int8, usage string) { method Int8VarP (line 52) | func (f *FlagSet) Int8VarP(p *int8, name, shorthand string, value int8, ... function Int8Var (line 58) | func Int8Var(p *int8, name string, value int8, usage string) { function Int8VarP (line 63) | func Int8VarP(p *int8, name, shorthand string, value int8, usage string) { method Int8 (line 69) | func (f *FlagSet) Int8(name string, value int8, usage string) *int8 { method Int8P (line 76) | func (f *FlagSet) Int8P(name, shorthand string, value int8, usage string... function Int8 (line 84) | func Int8(name string, value int8, usage string) *int8 { function Int8P (line 89) | func Int8P(name, shorthand string, value int8, usage string) *int8 { FILE: vendor/github.com/spf13/pflag/int_slice.go type intSliceValue (line 10) | type intSliceValue struct method Set (line 22) | func (s *intSliceValue) Set(val string) error { method Type (line 42) | func (s *intSliceValue) Type() string { method String (line 46) | func (s *intSliceValue) String() string { function newIntSliceValue (line 15) | func newIntSliceValue(val []int, p *[]int) *intSliceValue { function intSliceConv (line 54) | func intSliceConv(val string) (interface{}, error) { method GetIntSlice (line 74) | func (f *FlagSet) GetIntSlice(name string) ([]int, error) { method IntSliceVar (line 84) | func (f *FlagSet) IntSliceVar(p *[]int, name string, value []int, usage ... method IntSliceVarP (line 89) | func (f *FlagSet) IntSliceVarP(p *[]int, name, shorthand string, value [... function IntSliceVar (line 95) | func IntSliceVar(p *[]int, name string, value []int, usage string) { function IntSliceVarP (line 100) | func IntSliceVarP(p *[]int, name, shorthand string, value []int, usage s... method IntSlice (line 106) | func (f *FlagSet) IntSlice(name string, value []int, usage string) *[]int { method IntSliceP (line 113) | func (f *FlagSet) IntSliceP(name, shorthand string, value []int, usage s... function IntSlice (line 121) | func IntSlice(name string, value []int, usage string) *[]int { function IntSliceP (line 126) | func IntSliceP(name, shorthand string, value []int, usage string) *[]int { FILE: vendor/github.com/spf13/pflag/ip.go type ipValue (line 12) | type ipValue method String (line 19) | func (i *ipValue) String() string { return net.IP(*i).String() } method Set (line 20) | func (i *ipValue) Set(s string) error { method Type (line 29) | func (i *ipValue) Type() string { function newIPValue (line 14) | func newIPValue(val net.IP, p *net.IP) *ipValue { function ipConv (line 33) | func ipConv(sval string) (interface{}, error) { method GetIP (line 42) | func (f *FlagSet) GetIP(name string) (net.IP, error) { method IPVar (line 52) | func (f *FlagSet) IPVar(p *net.IP, name string, value net.IP, usage stri... method IPVarP (line 57) | func (f *FlagSet) IPVarP(p *net.IP, name, shorthand string, value net.IP... function IPVar (line 63) | func IPVar(p *net.IP, name string, value net.IP, usage string) { function IPVarP (line 68) | func IPVarP(p *net.IP, name, shorthand string, value net.IP, usage strin... method IP (line 74) | func (f *FlagSet) IP(name string, value net.IP, usage string) *net.IP { method IPP (line 81) | func (f *FlagSet) IPP(name, shorthand string, value net.IP, usage string... function IP (line 89) | func IP(name string, value net.IP, usage string) *net.IP { function IPP (line 94) | func IPP(name, shorthand string, value net.IP, usage string) *net.IP { FILE: vendor/github.com/spf13/pflag/ipmask.go type ipMaskValue (line 10) | type ipMaskValue method String (line 17) | func (i *ipMaskValue) String() string { return net.IPMask(*i).String() } method Set (line 18) | func (i *ipMaskValue) Set(s string) error { method Type (line 27) | func (i *ipMaskValue) Type() string { function newIPMaskValue (line 12) | func newIPMaskValue(val net.IPMask, p *net.IPMask) *ipMaskValue { function ParseIPv4Mask (line 33) | func ParseIPv4Mask(s string) net.IPMask { function parseIPv4Mask (line 59) | func parseIPv4Mask(sval string) (interface{}, error) { method GetIPv4Mask (line 68) | func (f *FlagSet) GetIPv4Mask(name string) (net.IPMask, error) { method IPMaskVar (line 78) | func (f *FlagSet) IPMaskVar(p *net.IPMask, name string, value net.IPMask... method IPMaskVarP (line 83) | func (f *FlagSet) IPMaskVarP(p *net.IPMask, name, shorthand string, valu... function IPMaskVar (line 89) | func IPMaskVar(p *net.IPMask, name string, value net.IPMask, usage strin... function IPMaskVarP (line 94) | func IPMaskVarP(p *net.IPMask, name, shorthand string, value net.IPMask,... method IPMask (line 100) | func (f *FlagSet) IPMask(name string, value net.IPMask, usage string) *n... method IPMaskP (line 107) | func (f *FlagSet) IPMaskP(name, shorthand string, value net.IPMask, usag... function IPMask (line 115) | func IPMask(name string, value net.IPMask, usage string) *net.IPMask { function IPMaskP (line 120) | func IPMaskP(name, shorthand string, value net.IPMask, usage string) *ne... FILE: vendor/github.com/spf13/pflag/ipnet.go type ipNetValue (line 10) | type ipNetValue method String (line 12) | func (ipnet ipNetValue) String() string { method Set (line 17) | func (ipnet *ipNetValue) Set(value string) error { method Type (line 26) | func (*ipNetValue) Type() string { function newIPNetValue (line 32) | func newIPNetValue(val net.IPNet, p *net.IPNet) *ipNetValue { function ipNetConv (line 37) | func ipNetConv(sval string) (interface{}, error) { method GetIPNet (line 46) | func (f *FlagSet) GetIPNet(name string) (net.IPNet, error) { method IPNetVar (line 56) | func (f *FlagSet) IPNetVar(p *net.IPNet, name string, value net.IPNet, u... method IPNetVarP (line 61) | func (f *FlagSet) IPNetVarP(p *net.IPNet, name, shorthand string, value ... function IPNetVar (line 67) | func IPNetVar(p *net.IPNet, name string, value net.IPNet, usage string) { function IPNetVarP (line 72) | func IPNetVarP(p *net.IPNet, name, shorthand string, value net.IPNet, us... method IPNet (line 78) | func (f *FlagSet) IPNet(name string, value net.IPNet, usage string) *net... method IPNetP (line 85) | func (f *FlagSet) IPNetP(name, shorthand string, value net.IPNet, usage ... function IPNet (line 93) | func IPNet(name string, value net.IPNet, usage string) *net.IPNet { function IPNetP (line 98) | func IPNetP(name, shorthand string, value net.IPNet, usage string) *net.... FILE: vendor/github.com/spf13/pflag/string.go type stringValue (line 6) | type stringValue method Set (line 13) | func (s *stringValue) Set(val string) error { method Type (line 17) | func (s *stringValue) Type() string { method String (line 21) | func (s *stringValue) String() string { return fmt.Sprintf("%s", *s) } function newStringValue (line 8) | func newStringValue(val string, p *string) *stringValue { function stringConv (line 23) | func stringConv(sval string) (interface{}, error) { method GetString (line 28) | func (f *FlagSet) GetString(name string) (string, error) { method StringVar (line 38) | func (f *FlagSet) StringVar(p *string, name string, value string, usage ... method StringVarP (line 43) | func (f *FlagSet) StringVarP(p *string, name, shorthand string, value st... function StringVar (line 49) | func StringVar(p *string, name string, value string, usage string) { function StringVarP (line 54) | func StringVarP(p *string, name, shorthand string, value string, usage s... method String (line 60) | func (f *FlagSet) String(name string, value string, usage string) *string { method StringP (line 67) | func (f *FlagSet) StringP(name, shorthand string, value string, usage st... function String (line 75) | func String(name string, value string, usage string) *string { function StringP (line 80) | func StringP(name, shorthand string, value string, usage string) *string { FILE: vendor/github.com/spf13/pflag/string_slice.go type stringSliceValue (line 12) | type stringSliceValue struct method Set (line 24) | func (s *stringSliceValue) Set(val string) error { method Type (line 40) | func (s *stringSliceValue) Type() string { method String (line 44) | func (s *stringSliceValue) String() string { return "[" + strings.Join... function newStringSliceValue (line 17) | func newStringSliceValue(val []string, p *[]string) *stringSliceValue { function stringSliceConv (line 46) | func stringSliceConv(sval string) (interface{}, error) { method GetStringSlice (line 57) | func (f *FlagSet) GetStringSlice(name string) ([]string, error) { method StringSliceVar (line 67) | func (f *FlagSet) StringSliceVar(p *[]string, name string, value []strin... method StringSliceVarP (line 72) | func (f *FlagSet) StringSliceVarP(p *[]string, name, shorthand string, v... function StringSliceVar (line 78) | func StringSliceVar(p *[]string, name string, value []string, usage stri... function StringSliceVarP (line 83) | func StringSliceVarP(p *[]string, name, shorthand string, value []string... method StringSlice (line 89) | func (f *FlagSet) StringSlice(name string, value []string, usage string)... method StringSliceP (line 96) | func (f *FlagSet) StringSliceP(name, shorthand string, value []string, u... function StringSlice (line 104) | func StringSlice(name string, value []string, usage string) *[]string { function StringSliceP (line 109) | func StringSliceP(name, shorthand string, value []string, usage string) ... FILE: vendor/github.com/spf13/pflag/uint.go type uintValue (line 9) | type uintValue method Set (line 16) | func (i *uintValue) Set(s string) error { method Type (line 22) | func (i *uintValue) Type() string { method String (line 26) | func (i *uintValue) String() string { return fmt.Sprintf("%v", *i) } function newUintValue (line 11) | func newUintValue(val uint, p *uint) *uintValue { function uintConv (line 28) | func uintConv(sval string) (interface{}, error) { method GetUint (line 37) | func (f *FlagSet) GetUint(name string) (uint, error) { method UintVar (line 47) | func (f *FlagSet) UintVar(p *uint, name string, value uint, usage string) { method UintVarP (line 52) | func (f *FlagSet) UintVarP(p *uint, name, shorthand string, value uint, ... function UintVar (line 58) | func UintVar(p *uint, name string, value uint, usage string) { function UintVarP (line 63) | func UintVarP(p *uint, name, shorthand string, value uint, usage string) { method Uint (line 69) | func (f *FlagSet) Uint(name string, value uint, usage string) *uint { method UintP (line 76) | func (f *FlagSet) UintP(name, shorthand string, value uint, usage string... function Uint (line 84) | func Uint(name string, value uint, usage string) *uint { function UintP (line 89) | func UintP(name, shorthand string, value uint, usage string) *uint { FILE: vendor/github.com/spf13/pflag/uint16.go type uint16Value (line 9) | type uint16Value method String (line 15) | func (i *uint16Value) String() string { return fmt.Sprintf("%d", *i) } method Set (line 16) | func (i *uint16Value) Set(s string) error { method Type (line 22) | func (i *uint16Value) Type() string { function newUint16Value (line 11) | func newUint16Value(val uint16, p *uint16) *uint16Value { function uint16Conv (line 26) | func uint16Conv(sval string) (interface{}, error) { method GetUint16 (line 35) | func (f *FlagSet) GetUint16(name string) (uint16, error) { method Uint16Var (line 45) | func (f *FlagSet) Uint16Var(p *uint16, name string, value uint16, usage ... method Uint16VarP (line 50) | func (f *FlagSet) Uint16VarP(p *uint16, name, shorthand string, value ui... function Uint16Var (line 56) | func Uint16Var(p *uint16, name string, value uint16, usage string) { function Uint16VarP (line 61) | func Uint16VarP(p *uint16, name, shorthand string, value uint16, usage s... method Uint16 (line 67) | func (f *FlagSet) Uint16(name string, value uint16, usage string) *uint16 { method Uint16P (line 74) | func (f *FlagSet) Uint16P(name, shorthand string, value uint16, usage st... function Uint16 (line 82) | func Uint16(name string, value uint16, usage string) *uint16 { function Uint16P (line 87) | func Uint16P(name, shorthand string, value uint16, usage string) *uint16 { FILE: vendor/github.com/spf13/pflag/uint32.go type uint32Value (line 9) | type uint32Value method String (line 15) | func (i *uint32Value) String() string { return fmt.Sprintf("%d", *i) } method Set (line 16) | func (i *uint32Value) Set(s string) error { method Type (line 22) | func (i *uint32Value) Type() string { function newUint32Value (line 11) | func newUint32Value(val uint32, p *uint32) *uint32Value { function uint32Conv (line 26) | func uint32Conv(sval string) (interface{}, error) { method GetUint32 (line 35) | func (f *FlagSet) GetUint32(name string) (uint32, error) { method Uint32Var (line 45) | func (f *FlagSet) Uint32Var(p *uint32, name string, value uint32, usage ... method Uint32VarP (line 50) | func (f *FlagSet) Uint32VarP(p *uint32, name, shorthand string, value ui... function Uint32Var (line 56) | func Uint32Var(p *uint32, name string, value uint32, usage string) { function Uint32VarP (line 61) | func Uint32VarP(p *uint32, name, shorthand string, value uint32, usage s... method Uint32 (line 67) | func (f *FlagSet) Uint32(name string, value uint32, usage string) *uint32 { method Uint32P (line 74) | func (f *FlagSet) Uint32P(name, shorthand string, value uint32, usage st... function Uint32 (line 82) | func Uint32(name string, value uint32, usage string) *uint32 { function Uint32P (line 87) | func Uint32P(name, shorthand string, value uint32, usage string) *uint32 { FILE: vendor/github.com/spf13/pflag/uint64.go type uint64Value (line 9) | type uint64Value method Set (line 16) | func (i *uint64Value) Set(s string) error { method Type (line 22) | func (i *uint64Value) Type() string { method String (line 26) | func (i *uint64Value) String() string { return fmt.Sprintf("%v", *i) } function newUint64Value (line 11) | func newUint64Value(val uint64, p *uint64) *uint64Value { function uint64Conv (line 28) | func uint64Conv(sval string) (interface{}, error) { method GetUint64 (line 37) | func (f *FlagSet) GetUint64(name string) (uint64, error) { method Uint64Var (line 47) | func (f *FlagSet) Uint64Var(p *uint64, name string, value uint64, usage ... method Uint64VarP (line 52) | func (f *FlagSet) Uint64VarP(p *uint64, name, shorthand string, value ui... function Uint64Var (line 58) | func Uint64Var(p *uint64, name string, value uint64, usage string) { function Uint64VarP (line 63) | func Uint64VarP(p *uint64, name, shorthand string, value uint64, usage s... method Uint64 (line 69) | func (f *FlagSet) Uint64(name string, value uint64, usage string) *uint64 { method Uint64P (line 76) | func (f *FlagSet) Uint64P(name, shorthand string, value uint64, usage st... function Uint64 (line 84) | func Uint64(name string, value uint64, usage string) *uint64 { function Uint64P (line 89) | func Uint64P(name, shorthand string, value uint64, usage string) *uint64 { FILE: vendor/github.com/spf13/pflag/uint8.go type uint8Value (line 9) | type uint8Value method Set (line 16) | func (i *uint8Value) Set(s string) error { method Type (line 22) | func (i *uint8Value) Type() string { method String (line 26) | func (i *uint8Value) String() string { return fmt.Sprintf("%v", *i) } function newUint8Value (line 11) | func newUint8Value(val uint8, p *uint8) *uint8Value { function uint8Conv (line 28) | func uint8Conv(sval string) (interface{}, error) { method GetUint8 (line 37) | func (f *FlagSet) GetUint8(name string) (uint8, error) { method Uint8Var (line 47) | func (f *FlagSet) Uint8Var(p *uint8, name string, value uint8, usage str... method Uint8VarP (line 52) | func (f *FlagSet) Uint8VarP(p *uint8, name, shorthand string, value uint... function Uint8Var (line 58) | func Uint8Var(p *uint8, name string, value uint8, usage string) { function Uint8VarP (line 63) | func Uint8VarP(p *uint8, name, shorthand string, value uint8, usage stri... method Uint8 (line 69) | func (f *FlagSet) Uint8(name string, value uint8, usage string) *uint8 { method Uint8P (line 76) | func (f *FlagSet) Uint8P(name, shorthand string, value uint8, usage stri... function Uint8 (line 84) | func Uint8(name string, value uint8, usage string) *uint8 { function Uint8P (line 89) | func Uint8P(name, shorthand string, value uint8, usage string) *uint8 { FILE: vendor/github.com/t-k/fluent-logger-golang/fluent/fluent.go constant defaultHost (line 15) | defaultHost = "127.0.0.1" constant defaultPort (line 16) | defaultPort = 24224 constant defaultTimeout (line 17) | defaultTimeout = 3 * time.Second constant defaultBufferLimit (line 18) | defaultBufferLimit = 8 * 1024 * 1024 constant defaultRetryWait (line 19) | defaultRetryWait = 500 constant defaultMaxRetry (line 20) | defaultMaxRetry = 13 constant defaultReconnectWaitIncreRate (line 21) | defaultReconnectWaitIncreRate = 1.5 type Config (line 24) | type Config struct type Fluent (line 34) | type Fluent struct method Post (line 95) | func (f *Fluent) Post(tag string, message interface{}) error { method PostWithTime (line 100) | func (f *Fluent) PostWithTime(tag string, tm time.Time, message interf... method EncodeAndPostData (line 139) | func (f *Fluent) EncodeAndPostData(tag string, tm time.Time, message i... method PostRawData (line 149) | func (f *Fluent) PostRawData(data []byte) { method EncodeData (line 163) | func (f *Fluent) EncodeData(tag string, tm time.Time, message interfac... method Close (line 171) | func (f *Fluent) Close() (err error) { method close (line 180) | func (f *Fluent) close() (err error) { method connect (line 195) | func (f *Fluent) connect() (err error) { method reconnect (line 204) | func (f *Fluent) reconnect() { method flushBuffer (line 224) | func (f *Fluent) flushBuffer() { method send (line 230) | func (f *Fluent) send() (err error) { function New (line 43) | func New(config Config) (f *Fluent, err error) { function e (line 200) | func e(x, y float64) int { FILE: vendor/github.com/t-k/fluent-logger-golang/fluent/proto.go type Entry (line 6) | type Entry struct type Forward (line 12) | type Forward struct type Message (line 19) | type Message struct FILE: vendor/github.com/t-k/fluent-logger-golang/fluent/proto_gen.go method DecodeMsg (line 12) | func (z *Entry) DecodeMsg(dc *msgp.Reader) (err error) { method EncodeMsg (line 34) | func (z Entry) EncodeMsg(en *msgp.Writer) (err error) { method MarshalMsg (line 51) | func (z Entry) MarshalMsg(b []byte) (o []byte, err error) { method UnmarshalMsg (line 63) | func (z *Entry) UnmarshalMsg(bts []byte) (o []byte, err error) { method Msgsize (line 87) | func (z Entry) Msgsize() (s int) { method DecodeMsg (line 93) | func (z *Forward) DecodeMsg(dc *msgp.Reader) (err error) { method EncodeMsg (line 144) | func (z *Forward) EncodeMsg(en *msgp.Writer) (err error) { method MarshalMsg (line 179) | func (z *Forward) MarshalMsg(b []byte) (o []byte, err error) { method UnmarshalMsg (line 200) | func (z *Forward) UnmarshalMsg(bts []byte) (o []byte, err error) { method Msgsize (line 255) | func (z *Forward) Msgsize() (s int) { method DecodeMsg (line 265) | func (z *Message) DecodeMsg(dc *msgp.Reader) (err error) { method EncodeMsg (line 295) | func (z *Message) EncodeMsg(en *msgp.Writer) (err error) { method MarshalMsg (line 320) | func (z *Message) MarshalMsg(b []byte) (o []byte, err error) { method UnmarshalMsg (line 337) | func (z *Message) UnmarshalMsg(bts []byte) (o []byte, err error) { method Msgsize (line 369) | func (z *Message) Msgsize() (s int) { FILE: vendor/github.com/t-k/fluent-logger-golang/fluent/version.go constant Version (line 3) | Version = "0.5.1" FILE: vendor/github.com/tinylib/msgp/msgp/advise_linux.go function adviseRead (line 10) | func adviseRead(mem []byte) { function adviseWrite (line 14) | func adviseWrite(mem []byte) { function fallocate (line 18) | func fallocate(f *os.File, sz int64) error { FILE: vendor/github.com/tinylib/msgp/msgp/advise_other.go function adviseRead (line 11) | func adviseRead(mem []byte) {} function adviseWrite (line 13) | func adviseWrite(mem []byte) {} function fallocate (line 15) | func fallocate(f *os.File, sz int64) error { FILE: vendor/github.com/tinylib/msgp/msgp/appengine.go constant smallint (line 7) | smallint = false function UnsafeString (line 9) | func UnsafeString(b []byte) string { function UnsafeBytes (line 13) | func UnsafeBytes(s string) []byte { FILE: vendor/github.com/tinylib/msgp/msgp/circular.go type timer (line 3) | type timer interface type EndlessReader (line 11) | type EndlessReader struct method Read (line 26) | func (c *EndlessReader) Read(p []byte) (int, error) { function NewEndlessReader (line 18) | func NewEndlessReader(b []byte, tb timer) *EndlessReader { FILE: vendor/github.com/tinylib/msgp/msgp/defs.go constant last4 (line 26) | last4 = 0x0f constant first4 (line 27) | first4 = 0xf0 constant last5 (line 28) | last5 = 0x1f constant first3 (line 29) | first3 = 0xe0 constant last7 (line 30) | last7 = 0x7f function isfixint (line 32) | func isfixint(b byte) bool { function isnfixint (line 36) | func isnfixint(b byte) bool { function isfixmap (line 40) | func isfixmap(b byte) bool { function isfixarray (line 44) | func isfixarray(b byte) bool { function isfixstr (line 48) | func isfixstr(b byte) bool { function wfixint (line 52) | func wfixint(u uint8) byte { function rfixint (line 56) | func rfixint(b byte) uint8 { function wnfixint (line 60) | func wnfixint(i int8) byte { function rnfixint (line 64) | func rnfixint(b byte) int8 { function rfixmap (line 68) | func rfixmap(b byte) uint8 { function wfixmap (line 72) | func wfixmap(u uint8) byte { function rfixstr (line 76) | func rfixstr(b byte) uint8 { function wfixstr (line 80) | func wfixstr(u uint8) byte { function rfixarray (line 84) | func rfixarray(b byte) uint8 { function wfixarray (line 88) | func wfixarray(u uint8) byte { constant mfixint (line 97) | mfixint uint8 = 0x00 constant mnfixint (line 100) | mnfixint uint8 = 0xe0 constant mfixmap (line 103) | mfixmap uint8 = 0x80 constant mfixarray (line 106) | mfixarray uint8 = 0x90 constant mfixstr (line 109) | mfixstr uint8 = 0xa0 constant mnil (line 111) | mnil uint8 = 0xc0 constant mfalse (line 112) | mfalse uint8 = 0xc2 constant mtrue (line 113) | mtrue uint8 = 0xc3 constant mbin8 (line 114) | mbin8 uint8 = 0xc4 constant mbin16 (line 115) | mbin16 uint8 = 0xc5 constant mbin32 (line 116) | mbin32 uint8 = 0xc6 constant mext8 (line 117) | mext8 uint8 = 0xc7 constant mext16 (line 118) | mext16 uint8 = 0xc8 constant mext32 (line 119) | mext32 uint8 = 0xc9 constant mfloat32 (line 120) | mfloat32 uint8 = 0xca constant mfloat64 (line 121) | mfloat64 uint8 = 0xcb constant muint8 (line 122) | muint8 uint8 = 0xcc constant muint16 (line 123) | muint16 uint8 = 0xcd constant muint32 (line 124) | muint32 uint8 = 0xce constant muint64 (line 125) | muint64 uint8 = 0xcf constant mint8 (line 126) | mint8 uint8 = 0xd0 constant mint16 (line 127) | mint16 uint8 = 0xd1 constant mint32 (line 128) | mint32 uint8 = 0xd2 constant mint64 (line 129) | mint64 uint8 = 0xd3 constant mfixext1 (line 130) | mfixext1 uint8 = 0xd4 constant mfixext2 (line 131) | mfixext2 uint8 = 0xd5 constant mfixext4 (line 132) | mfixext4 uint8 = 0xd6 constant mfixext8 (line 133) | mfixext8 uint8 = 0xd7 constant mfixext16 (line 134) | mfixext16 uint8 = 0xd8 constant mstr8 (line 135) | mstr8 uint8 = 0xd9 constant mstr16 (line 136) | mstr16 uint8 = 0xda constant mstr32 (line 137) | mstr32 uint8 = 0xdb constant marray16 (line 138) | marray16 uint8 = 0xdc constant marray32 (line 139) | marray32 uint8 = 0xdd constant mmap16 (line 140) | mmap16 uint8 = 0xde constant mmap32 (line 141) | mmap32 uint8 = 0xdf FILE: vendor/github.com/tinylib/msgp/msgp/edit.go function Locate (line 11) | func Locate(key string, raw []byte) []byte { function Replace (line 23) | func Replace(key string, raw []byte, val []byte) []byte { function CopyReplace (line 34) | func CopyReplace(key string, raw []byte, val []byte) []byte { function Remove (line 44) | func Remove(key string, raw []byte) []byte { function HasKey (line 55) | func HasKey(key string, raw []byte) bool { function replace (line 73) | func replace(raw []byte, start int, end int, val []byte, inplace bool) [... function locate (line 115) | func locate(raw []byte, key string) (start int, end int) { function locateKV (line 153) | func locateKV(raw []byte, key string) (start int, end int) { function resizeMap (line 189) | func resizeMap(raw []byte, delta int64) []byte { FILE: vendor/github.com/tinylib/msgp/msgp/elsize.go function init (line 42) | func init() { type bytespec (line 75) | type bytespec struct type varmode (line 84) | type varmode constant constsize (line 87) | constsize varmode = 0 constant extra8 (line 88) | extra8 = -1 constant extra16 (line 89) | extra16 = -2 constant extra32 (line 90) | extra32 = -3 constant map16v (line 91) | map16v = -4 constant map32v (line 92) | map32v = -5 constant array16v (line 93) | array16v = -6 constant array32v (line 94) | array32v = -7 function getType (line 97) | func getType(v byte) Type { FILE: vendor/github.com/tinylib/msgp/msgp/errors.go type Error (line 23) | type Error interface type errShort (line 33) | type errShort struct method Error (line 35) | func (e errShort) Error() string { return "msgp: too few bytes left ... method Resumable (line 36) | func (e errShort) Resumable() bool { return false } type errFatal (line 38) | type errFatal struct method Error (line 40) | func (f errFatal) Error() string { return "msgp: fatal decoding erro... method Resumable (line 41) | func (f errFatal) Resumable() bool { return false } type ArrayError (line 46) | type ArrayError struct method Error (line 52) | func (a ArrayError) Error() string { method Resumable (line 57) | func (a ArrayError) Resumable() bool { return true } type IntOverflow (line 62) | type IntOverflow struct method Error (line 68) | func (i IntOverflow) Error() string { method Resumable (line 73) | func (i IntOverflow) Resumable() bool { return true } type UintOverflow (line 78) | type UintOverflow struct method Error (line 84) | func (u UintOverflow) Error() string { method Resumable (line 89) | func (u UintOverflow) Resumable() bool { return true } type TypeError (line 94) | type TypeError struct method Error (line 100) | func (t TypeError) Error() string { method Resumable (line 105) | func (t TypeError) Resumable() bool { return true } function badPrefix (line 110) | func badPrefix(want Type, lead byte) error { type InvalidPrefixError (line 121) | type InvalidPrefixError method Error (line 124) | func (i InvalidPrefixError) Error() string { method Resumable (line 129) | func (i InvalidPrefixError) Resumable() bool { return false } type ErrUnsupportedType (line 134) | type ErrUnsupportedType struct method Error (line 139) | func (e *ErrUnsupportedType) Error() string { return fmt.Sprintf("msgp... method Resumable (line 142) | func (e *ErrUnsupportedType) Resumable() bool { return true } FILE: vendor/github.com/tinylib/msgp/msgp/extension.go constant Complex64Extension (line 10) | Complex64Extension = 3 constant Complex128Extension (line 13) | Complex128Extension = 4 constant TimeExtension (line 16) | TimeExtension = 5 function RegisterExtension (line 38) | func RegisterExtension(typ int8, f func() Extension) { type ExtensionTypeError (line 52) | type ExtensionTypeError struct method Error (line 58) | func (e ExtensionTypeError) Error() string { method Resumable (line 63) | func (e ExtensionTypeError) Resumable() bool { return true } function errExt (line 65) | func errExt(got int8, wanted int8) error { type Extension (line 72) | type Extension interface type RawExtension (line 93) | type RawExtension struct method ExtensionType (line 99) | func (r *RawExtension) ExtensionType() int8 { return r.Type } method Len (line 102) | func (r *RawExtension) Len() int { return len(r.Data) } method MarshalBinaryTo (line 106) | func (r *RawExtension) MarshalBinaryTo(d []byte) error { method UnmarshalBinary (line 113) | func (r *RawExtension) UnmarshalBinary(b []byte) error { method WriteExtension (line 124) | func (mw *Writer) WriteExtension(e Extension) error { method peekExtensionType (line 228) | func (m *Reader) peekExtensionType() (int8, error) { function peekExtension (line 250) | func peekExtension(b []byte) (int8, error) { method ReadExtension (line 274) | func (m *Reader) ReadExtension(e Extension) (err error) { function AppendExtension (line 412) | func AppendExtension(b []byte, e Extension) ([]byte, error) { function ReadExtensionBytes (line 480) | func ReadExtensionBytes(b []byte, e Extension) ([]byte, error) { FILE: vendor/github.com/tinylib/msgp/msgp/file.go function ReadFile (line 23) | func ReadFile(dst Unmarshaler, file *os.File) error { type MarshalSizer (line 44) | type MarshalSizer interface function WriteFile (line 70) | func WriteFile(src MarshalSizer, file *os.File) error { FILE: vendor/github.com/tinylib/msgp/msgp/file_port.go type MarshalSizer (line 13) | type MarshalSizer interface function ReadFile (line 18) | func ReadFile(dst Unmarshaler, file *os.File) error { function WriteFile (line 31) | func WriteFile(src MarshalSizer, file *os.File) error { FILE: vendor/github.com/tinylib/msgp/msgp/integers.go function putMint64 (line 13) | func putMint64(b []byte, i int64) { function getMint64 (line 25) | func getMint64(b []byte) int64 { function putMint32 (line 32) | func putMint32(b []byte, i int32) { function getMint32 (line 40) | func getMint32(b []byte) int32 { function putMint16 (line 44) | func putMint16(b []byte, i int16) { function getMint16 (line 50) | func getMint16(b []byte) (i int16) { function putMint8 (line 54) | func putMint8(b []byte, i int8) { function getMint8 (line 59) | func getMint8(b []byte) (i int8) { function putMuint64 (line 63) | func putMuint64(b []byte, u uint64) { function getMuint64 (line 75) | func getMuint64(b []byte) uint64 { function putMuint32 (line 82) | func putMuint32(b []byte, u uint32) { function getMuint32 (line 90) | func getMuint32(b []byte) uint32 { function putMuint16 (line 94) | func putMuint16(b []byte, u uint16) { function getMuint16 (line 100) | func getMuint16(b []byte) uint16 { function putMuint8 (line 104) | func putMuint8(b []byte, u uint8) { function getMuint8 (line 109) | func getMuint8(b []byte) uint8 { function getUnix (line 113) | func getUnix(b []byte) (sec int64, nsec int32) { function putUnix (line 123) | func putUnix(b []byte, sec int64, nsec int32) { function prefixu8 (line 143) | func prefixu8(b []byte, pre byte, sz uint8) { function prefixu16 (line 149) | func prefixu16(b []byte, pre byte, sz uint16) { function prefixu32 (line 156) | func prefixu32(b []byte, pre byte, sz uint32) { function prefixu64 (line 164) | func prefixu64(b []byte, pre byte, sz uint64) { FILE: vendor/github.com/tinylib/msgp/msgp/json.go function init (line 21) | func init() { type jsWriter (line 45) | type jsWriter interface function CopyToJSON (line 53) | func CopyToJSON(dst io.Writer, src io.Reader) (n int64, err error) { method WriteToJSON (line 63) | func (r *Reader) WriteToJSON(w io.Writer) (n int64, err error) { function rwNext (line 90) | func rwNext(w jsWriter, src *Reader) (int, error) { function rwMap (line 98) | func rwMap(dst jsWriter, src *Reader) (n int, err error) { function rwArray (line 160) | func rwArray(dst jsWriter, src *Reader) (n int, err error) { function rwNil (line 196) | func rwNil(dst jsWriter, src *Reader) (int, error) { function rwFloat32 (line 204) | func rwFloat32(dst jsWriter, src *Reader) (int, error) { function rwFloat64 (line 213) | func rwFloat64(dst jsWriter, src *Reader) (int, error) { function rwInt (line 222) | func rwInt(dst jsWriter, src *Reader) (int, error) { function rwUint (line 231) | func rwUint(dst jsWriter, src *Reader) (int, error) { function rwBool (line 240) | func rwBool(dst jsWriter, src *Reader) (int, error) { function rwTime (line 251) | func rwTime(dst jsWriter, src *Reader) (int, error) { function rwExtension (line 263) | func rwExtension(dst jsWriter, src *Reader) (n int, err error) { function rwString (line 334) | func rwString(dst jsWriter, src *Reader) (n int, err error) { function rwBytes (line 381) | func rwBytes(dst jsWriter, src *Reader) (n int, err error) { function rwquoted (line 414) | func rwquoted(dst jsWriter, s []byte) (n int, err error) { FILE: vendor/github.com/tinylib/msgp/msgp/json_bytes.go function init (line 14) | func init() { function UnmarshalAsJSON (line 41) | func UnmarshalAsJSON(w io.Writer, msg []byte) ([]byte, error) { function writeNext (line 63) | func writeNext(w jsWriter, msg []byte, scratch []byte) ([]byte, []byte, ... function rwArrayBytes (line 83) | func rwArrayBytes(w jsWriter, msg []byte, scratch []byte) ([]byte, []byt... function rwMapBytes (line 108) | func rwMapBytes(w jsWriter, msg []byte, scratch []byte) ([]byte, []byte,... function rwMapKeyBytes (line 141) | func rwMapKeyBytes(w jsWriter, msg []byte, scratch []byte) ([]byte, []by... function rwStringBytes (line 151) | func rwStringBytes(w jsWriter, msg []byte, scratch []byte) ([]byte, []by... function rwBytesBytes (line 160) | func rwBytesBytes(w jsWriter, msg []byte, scratch []byte) ([]byte, []byt... function rwNullBytes (line 184) | func rwNullBytes(w jsWriter, msg []byte, scratch []byte) ([]byte, []byte... function rwBoolBytes (line 193) | func rwBoolBytes(w jsWriter, msg []byte, scratch []byte) ([]byte, []byte... function rwIntBytes (line 206) | func rwIntBytes(w jsWriter, msg []byte, scratch []byte) ([]byte, []byte,... function rwUintBytes (line 216) | func rwUintBytes(w jsWriter, msg []byte, scratch []byte) ([]byte, []byte... function rwFloatBytes (line 226) | func rwFloatBytes(w jsWriter, msg []byte, f64 bool, scratch []byte) ([]b... function rwFloat32Bytes (line 247) | func rwFloat32Bytes(w jsWriter, msg []byte, scratch []byte) ([]byte, []b... function rwFloat64Bytes (line 259) | func rwFloat64Bytes(w jsWriter, msg []byte, scratch []byte) ([]byte, []b... function rwTimeBytes (line 271) | func rwTimeBytes(w jsWriter, msg []byte, scratch []byte) ([]byte, []byte... function rwExtensionBytes (line 286) | func rwExtensionBytes(w jsWriter, msg []byte, scratch []byte) ([]byte, [... function writeExt (line 336) | func writeExt(w jsWriter, r RawExtension, scratch []byte) ([]byte, error) { FILE: vendor/github.com/tinylib/msgp/msgp/number.go type Number (line 21) | type Number struct method AsInt (line 31) | func (n *Number) AsInt(i int64) { method AsUint (line 48) | func (n *Number) AsUint(u uint64) { method AsFloat32 (line 55) | func (n *Number) AsFloat32(f float32) { method AsFloat64 (line 62) | func (n *Number) AsFloat64(f float64) { method Int (line 70) | func (n *Number) Int() (int64, bool) { method Uint (line 76) | func (n *Number) Uint() (uint64, bool) { method Float (line 83) | func (n *Number) Float() (float64, bool) { method Type (line 96) | func (n *Number) Type() Type { method DecodeMsg (line 104) | func (n *Number) DecodeMsg(r *Reader) error { method UnmarshalMsg (line 144) | func (n *Number) UnmarshalMsg(b []byte) ([]byte, error) { method MarshalMsg (line 181) | func (n *Number) MarshalMsg(b []byte) ([]byte, error) { method EncodeMsg (line 197) | func (n *Number) EncodeMsg(w *Writer) error { method Msgsize (line 213) | func (n *Number) Msgsize() int { method MarshalJSON (line 229) | func (n *Number) MarshalJSON() ([]byte, error) { method String (line 251) | func (n *Number) String() string { FILE: vendor/github.com/tinylib/msgp/msgp/read.go type Type (line 18) | type Type method String (line 52) | func (t Type) String() string { constant InvalidType (line 25) | InvalidType Type = iota constant StrType (line 29) | StrType constant BinType (line 30) | BinType constant MapType (line 31) | MapType constant ArrayType (line 32) | ArrayType constant Float64Type (line 33) | Float64Type constant Float32Type (line 34) | Float32Type constant BoolType (line 35) | BoolType constant IntType (line 36) | IntType constant UintType (line 37) | UintType constant NilType (line 38) | NilType constant ExtensionType (line 39) | ExtensionType constant Complex64Type (line 44) | Complex64Type constant Complex128Type (line 45) | Complex128Type constant TimeType (line 46) | TimeType constant _maxtype (line 48) | _maxtype function freeR (line 81) | func freeR(m *Reader) { type Unmarshaler (line 91) | type Unmarshaler interface type Decodable (line 98) | type Decodable interface function Decode (line 103) | func Decode(r io.Reader, d Decodable) error { function NewReader (line 113) | func NewReader(r io.Reader) *Reader { function NewReaderSize (line 125) | func NewReaderSize(r io.Reader, sz int) *Reader { type Reader (line 132) | type Reader struct method Read (line 145) | func (m *Reader) Read(p []byte) (int, error) { method ReadFull (line 150) | func (m *Reader) ReadFull(p []byte) (int, error) { method Reset (line 155) | func (m *Reader) Reset(r io.Reader) { m.R.Reset(r) } method Buffered (line 158) | func (m *Reader) Buffered() int { return m.R.Buffered() } method BufferSize (line 161) | func (m *Reader) BufferSize() int { return m.R.BufferSize() } method NextType (line 164) | func (m *Reader) NextType() (Type, error) { method IsNil (line 192) | func (m *Reader) IsNil() bool { method Skip (line 243) | func (m *Reader) Skip() error { method ReadMapHeader (line 292) | func (m *Reader) ReadMapHeader() (sz uint32, err error) { method ReadMapKey (line 329) | func (m *Reader) ReadMapKey(scratch []byte) ([]byte, error) { method ReadMapKeyPtr (line 348) | func (m *Reader) ReadMapKeyPtr() ([]byte, error) { method ReadArrayHeader (line 392) | func (m *Reader) ReadArrayHeader() (sz uint32, err error) { method ReadNil (line 429) | func (m *Reader) ReadNil() error { method ReadFloat64 (line 444) | func (m *Reader) ReadFloat64() (f float64, err error) { method ReadFloat32 (line 471) | func (m *Reader) ReadFloat32() (f float32, err error) { method ReadBool (line 487) | func (m *Reader) ReadBool() (b bool, err error) { method ReadInt64 (line 506) | func (m *Reader) ReadInt64() (i int64, err error) { method ReadInt32 (line 565) | func (m *Reader) ReadInt32() (i int32, err error) { method ReadInt16 (line 577) | func (m *Reader) ReadInt16() (i int16, err error) { method ReadInt8 (line 589) | func (m *Reader) ReadInt8() (i int8, err error) { method ReadInt (line 601) | func (m *Reader) ReadInt() (i int, err error) { method ReadUint64 (line 615) | func (m *Reader) ReadUint64() (u uint64, err error) { method ReadUint32 (line 669) | func (m *Reader) ReadUint32() (u uint32, err error) { method ReadUint16 (line 681) | func (m *Reader) ReadUint16() (u uint16, err error) { method ReadUint8 (line 693) | func (m *Reader) ReadUint8() (u uint8, err error) { method ReadUint (line 705) | func (m *Reader) ReadUint() (u uint, err error) { method ReadByte (line 722) | func (m *Reader) ReadByte() (b byte, err error) { method ReadBytes (line 736) | func (m *Reader) ReadBytes(scratch []byte) (b []byte, err error) { method ReadBytesHeader (line 779) | func (m *Reader) ReadBytesHeader() (sz uint32, err error) { method ReadExactBytes (line 817) | func (m *Reader) ReadExactBytes(into []byte) error { method ReadStringAsBytes (line 857) | func (m *Reader) ReadStringAsBytes(scratch []byte) (b []byte, err erro... method ReadStringHeader (line 910) | func (m *Reader) ReadStringHeader() (sz uint32, err error) { method ReadString (line 951) | func (m *Reader) ReadString() (s string, err error) { method ReadComplex64 (line 1022) | func (m *Reader) ReadComplex64() (f complex64, err error) { method ReadComplex128 (line 1043) | func (m *Reader) ReadComplex128() (f complex128, err error) { method ReadMapStrIntf (line 1065) | func (m *Reader) ReadMapStrIntf(mp map[string]interface{}) (err error) { method ReadTime (line 1092) | func (m *Reader) ReadTime() (t time.Time, err error) { method ReadIntf (line 1116) | func (m *Reader) ReadIntf() (i interface{}, err error) { function getNextSize (line 202) | func getNextSize(r *fwd.Reader) (uintptr, uintptr, error) { FILE: vendor/github.com/tinylib/msgp/msgp/read_bytes.go function NextType (line 16) | func NextType(b []byte) Type { function IsNil (line 46) | func IsNil(b []byte) bool { type Raw (line 56) | type Raw method MarshalMsg (line 62) | func (r Raw) MarshalMsg(b []byte) ([]byte, error) { method UnmarshalMsg (line 75) | func (r *Raw) UnmarshalMsg(b []byte) ([]byte, error) { method EncodeMsg (line 94) | func (r Raw) EncodeMsg(w *Writer) error { method DecodeMsg (line 105) | func (r *Raw) DecodeMsg(f *Reader) error { method Msgsize (line 111) | func (r Raw) Msgsize() int { method MarshalJSON (line 141) | func (r *Raw) MarshalJSON() ([]byte, error) { function appendNext (line 119) | func appendNext(f *Reader, d *[]byte) error { function ReadMapHeaderBytes (line 152) | func ReadMapHeaderBytes(b []byte) (sz uint32, o []byte, err error) { function ReadMapKeyZC (line 196) | func ReadMapKeyZC(b []byte) ([]byte, []byte, error) { function ReadArrayHeaderBytes (line 213) | func ReadArrayHeaderBytes(b []byte) (sz uint32, o []byte, err error) { function ReadNilBytes (line 255) | func ReadNilBytes(b []byte) ([]byte, error) { function ReadFloat64Bytes (line 270) | func ReadFloat64Bytes(b []byte) (f float64, o []byte, err error) { function ReadFloat32Bytes (line 303) | func ReadFloat32Bytes(b []byte) (f float32, o []byte, err error) { function ReadBoolBytes (line 324) | func ReadBoolBytes(b []byte) (bool, []byte, error) { function ReadInt64Bytes (line 343) | func ReadInt64Bytes(b []byte) (i int64, o []byte, err error) { function ReadInt32Bytes (line 410) | func ReadInt32Bytes(b []byte) (int32, []byte, error) { function ReadInt16Bytes (line 424) | func ReadInt16Bytes(b []byte) (int16, []byte, error) { function ReadInt8Bytes (line 438) | func ReadInt8Bytes(b []byte) (int8, []byte, error) { function ReadIntBytes (line 452) | func ReadIntBytes(b []byte) (int, []byte, error) { function ReadUint64Bytes (line 466) | func ReadUint64Bytes(b []byte) (u uint64, o []byte, err error) { function ReadUint32Bytes (line 528) | func ReadUint32Bytes(b []byte) (uint32, []byte, error) { function ReadUint16Bytes (line 542) | func ReadUint16Bytes(b []byte) (uint16, []byte, error) { function ReadUint8Bytes (line 556) | func ReadUint8Bytes(b []byte) (uint8, []byte, error) { function ReadUintBytes (line 570) | func ReadUintBytes(b []byte) (uint, []byte, error) { function ReadByteBytes (line 580) | func ReadByteBytes(b []byte) (byte, []byte, error) { function ReadBytesBytes (line 590) | func ReadBytesBytes(b []byte, scratch []byte) (v []byte, o []byte, err e... function readBytesBytes (line 594) | func readBytesBytes(b []byte, scratch []byte, zc bool) (v []byte, o []by... function ReadBytesZC (line 661) | func ReadBytesZC(b []byte) (v []byte, o []byte, err error) { function ReadExactBytes (line 665) | func ReadExactBytes(b []byte, into []byte) (o []byte, err error) { function ReadStringZC (line 721) | func ReadStringZC(b []byte) (v []byte, o []byte, err error) { function ReadStringBytes (line 782) | func ReadStringBytes(b []byte) (string, []byte, error) { function ReadStringAsBytes (line 796) | func ReadStringAsBytes(b []byte, scratch []byte) (v []byte, o []byte, er... function ReadComplex128Bytes (line 811) | func ReadComplex128Bytes(b []byte) (c complex128, o []byte, err error) { function ReadComplex64Bytes (line 837) | func ReadComplex64Bytes(b []byte) (c complex64, o []byte, err error) { function ReadTimeBytes (line 863) | func ReadTimeBytes(b []byte) (t time.Time, o []byte, err error) { function ReadMapStrIntfBytes (line 885) | func ReadMapStrIntfBytes(b []byte, old map[string]interface{}) (v map[st... function ReadIntfBytes (line 926) | func ReadIntfBytes(b []byte) (i interface{}, o []byte, err error) { function Skip (line 1034) | func Skip(b []byte) ([]byte, error) { function getSize (line 1054) | func getSize(b []byte) (uintptr, uintptr, error) { FILE: vendor/github.com/tinylib/msgp/msgp/size.go constant Int64Size (line 12) | Int64Size = 9 constant IntSize (line 13) | IntSize = Int64Size constant UintSize (line 14) | UintSize = Int64Size constant Int8Size (line 15) | Int8Size = 2 constant Int16Size (line 16) | Int16Size = 3 constant Int32Size (line 17) | Int32Size = 5 constant Uint8Size (line 18) | Uint8Size = 2 constant ByteSize (line 19) | ByteSize = Uint8Size constant Uint16Size (line 20) | Uint16Size = 3 constant Uint32Size (line 21) | Uint32Size = 5 constant Uint64Size (line 22) | Uint64Size = Int64Size constant Float64Size (line 23) | Float64Size = 9 constant Float32Size (line 24) | Float32Size = 5 constant Complex64Size (line 25) | Complex64Size = 10 constant Complex128Size (line 26) | Complex128Size = 18 constant TimeSize (line 28) | TimeSize = 15 constant BoolSize (line 29) | BoolSize = 1 constant NilSize (line 30) | NilSize = 1 constant MapHeaderSize (line 32) | MapHeaderSize = 5 constant ArrayHeaderSize (line 33) | ArrayHeaderSize = 5 constant BytesPrefixSize (line 35) | BytesPrefixSize = 5 constant StringPrefixSize (line 36) | StringPrefixSize = 5 constant ExtensionPrefixSize (line 37) | ExtensionPrefixSize = 6 FILE: vendor/github.com/tinylib/msgp/msgp/unsafe.go constant smallint (line 19) | smallint = unsafe.Sizeof(int(0)) == 4 function UnsafeString (line 26) | func UnsafeString(b []byte) string { function UnsafeBytes (line 34) | func UnsafeBytes(s string) []byte { FILE: vendor/github.com/tinylib/msgp/msgp/write.go type Sizer (line 20) | type Sizer interface function popWriter (line 36) | func popWriter(w io.Writer) *Writer { function pushWriter (line 42) | func pushWriter(wr *Writer) { function freeW (line 53) | func freeW(w *Writer) { pushWriter(w) } function Require (line 56) | func Require(old []byte, extra int) []byte { type nwhere (line 80) | type nwhere struct method Write (line 82) | func (n nwhere) Write(p []byte) (int, error) { return len(p), nil } type Marshaler (line 90) | type Marshaler interface type Encodable (line 97) | type Encodable interface type Writer (line 107) | type Writer struct method flush (line 147) | func (mw *Writer) flush() error { method Flush (line 164) | func (mw *Writer) Flush() error { return mw.flush() } method Buffered (line 167) | func (mw *Writer) Buffered() int { return len(mw.buf) - mw.wloc } method avail (line 169) | func (mw *Writer) avail() int { return len(mw.buf) - mw.wloc } method bufsize (line 171) | func (mw *Writer) bufsize() int { return len(mw.buf) } method require (line 178) | func (mw *Writer) require(n int) (int, error) { method Append (line 191) | func (mw *Writer) Append(b ...byte) error { method push (line 205) | func (mw *Writer) push(b byte) error { method prefix8 (line 216) | func (mw *Writer) prefix8(b byte, u uint8) error { method prefix16 (line 228) | func (mw *Writer) prefix16(b byte, u uint16) error { method prefix32 (line 240) | func (mw *Writer) prefix32(b byte, u uint32) error { method prefix64 (line 252) | func (mw *Writer) prefix64(b byte, u uint64) error { method Write (line 266) | func (mw *Writer) Write(p []byte) (int, error) { method writeString (line 281) | func (mw *Writer) writeString(s string) error { method Reset (line 297) | func (mw *Writer) Reset(w io.Writer) { method WriteMapHeader (line 305) | func (mw *Writer) WriteMapHeader(sz uint32) error { method WriteArrayHeader (line 318) | func (mw *Writer) WriteArrayHeader(sz uint32) error { method WriteNil (line 330) | func (mw *Writer) WriteNil() error { method WriteFloat64 (line 335) | func (mw *Writer) WriteFloat64(f float64) error { method WriteFloat32 (line 340) | func (mw *Writer) WriteFloat32(f float32) error { method WriteInt64 (line 345) | func (mw *Writer) WriteInt64(i int64) error { method WriteInt8 (line 373) | func (mw *Writer) WriteInt8(i int8) error { return mw.WriteInt64(int64... method WriteInt16 (line 376) | func (mw *Writer) WriteInt16(i int16) error { return mw.WriteInt64(int... method WriteInt32 (line 379) | func (mw *Writer) WriteInt32(i int32) error { return mw.WriteInt64(int... method WriteInt (line 382) | func (mw *Writer) WriteInt(i int) error { return mw.WriteInt64(int64(i... method WriteUint64 (line 385) | func (mw *Writer) WriteUint64(u uint64) error { method WriteByte (line 401) | func (mw *Writer) WriteByte(u byte) error { return mw.WriteUint8(uint8... method WriteUint8 (line 404) | func (mw *Writer) WriteUint8(u uint8) error { return mw.WriteUint64(ui... method WriteUint16 (line 407) | func (mw *Writer) WriteUint16(u uint16) error { return mw.WriteUint64(... method WriteUint32 (line 410) | func (mw *Writer) WriteUint32(u uint32) error { return mw.WriteUint64(... method WriteUint (line 413) | func (mw *Writer) WriteUint(u uint) error { return mw.WriteUint64(uint... method WriteBytes (line 416) | func (mw *Writer) WriteBytes(b []byte) error { method WriteBytesHeader (line 437) | func (mw *Writer) WriteBytesHeader(sz uint32) error { method WriteBool (line 449) | func (mw *Writer) WriteBool(b bool) error { method WriteString (line 458) | func (mw *Writer) WriteString(s string) error { method WriteStringHeader (line 481) | func (mw *Writer) WriteStringHeader(sz uint32) error { method WriteStringFromBytes (line 496) | func (mw *Writer) WriteStringFromBytes(str []byte) error { method WriteComplex64 (line 517) | func (mw *Writer) WriteComplex64(f complex64) error { method WriteComplex128 (line 530) | func (mw *Writer) WriteComplex128(f complex128) error { method WriteMapStrStr (line 543) | func (mw *Writer) WriteMapStrStr(mp map[string]string) (err error) { method WriteMapStrIntf (line 562) | func (mw *Writer) WriteMapStrIntf(mp map[string]interface{}) (err erro... method WriteTime (line 594) | func (mw *Writer) WriteTime(t time.Time) error { method WriteIntf (line 615) | func (mw *Writer) WriteIntf(v interface{}) error { method writeMap (line 691) | func (mw *Writer) writeMap(v reflect.Value) (err error) { method writeSlice (line 714) | func (mw *Writer) writeSlice(v reflect.Value) (err error) { method writeStruct (line 734) | func (mw *Writer) writeStruct(v reflect.Value) error { method writeVal (line 741) | func (mw *Writer) writeVal(v reflect.Value) error { function NewWriter (line 114) | func NewWriter(w io.Writer) *Writer { function NewWriterSize (line 122) | func NewWriterSize(w io.Writer, sz int) *Writer { function Encode (line 137) | func Encode(w io.Writer, e Encodable) error { function isSupported (line 789) | func isSupported(k reflect.Kind) bool { function GuessSize (line 802) | func GuessSize(i interface{}) int { FILE: vendor/github.com/tinylib/msgp/msgp/write_bytes.go function ensure (line 10) | func ensure(b []byte, sz int) ([]byte, int) { function AppendMapHeader (line 23) | func AppendMapHeader(b []byte, sz uint32) []byte { function AppendArrayHeader (line 42) | func AppendArrayHeader(b []byte, sz uint32) []byte { function AppendNil (line 60) | func AppendNil(b []byte) []byte { return append(b, mnil) } function AppendFloat64 (line 63) | func AppendFloat64(b []byte, f float64) []byte { function AppendFloat32 (line 70) | func AppendFloat32(b []byte, f float32) []byte { function AppendInt64 (line 77) | func AppendInt64(b []byte, i int64) []byte { function AppendInt (line 119) | func AppendInt(b []byte, i int) []byte { return AppendInt64(b, int64(i)) } function AppendInt8 (line 122) | func AppendInt8(b []byte, i int8) []byte { return AppendInt64(b, int64(i... function AppendInt16 (line 125) | func AppendInt16(b []byte, i int16) []byte { return AppendInt64(b, int64... function AppendInt32 (line 128) | func AppendInt32(b []byte, i int32) []byte { return AppendInt64(b, int64... function AppendUint64 (line 131) | func AppendUint64(b []byte, u uint64) []byte { function AppendUint (line 160) | func AppendUint(b []byte, u uint) []byte { return AppendUint64(b, uint64... function AppendUint8 (line 163) | func AppendUint8(b []byte, u uint8) []byte { return AppendUint64(b, uint... function AppendByte (line 166) | func AppendByte(b []byte, u byte) []byte { return AppendUint8(b, uint8(u... function AppendUint16 (line 169) | func AppendUint16(b []byte, u uint16) []byte { return AppendUint64(b, ui... function AppendUint32 (line 172) | func AppendUint32(b []byte, u uint32) []byte { return AppendUint64(b, ui... function AppendBytes (line 175) | func AppendBytes(b []byte, bts []byte) []byte { function AppendBool (line 197) | func AppendBool(b []byte, t bool) []byte { function AppendString (line 205) | func AppendString(b []byte, s string) []byte { function AppendStringFromBytes (line 232) | func AppendStringFromBytes(b []byte, str []byte) []byte { function AppendComplex64 (line 258) | func AppendComplex64(b []byte, c complex64) []byte { function AppendComplex128 (line 268) | func AppendComplex128(b []byte, c complex128) []byte { function AppendTime (line 278) | func AppendTime(b []byte, t time.Time) []byte { function AppendMapStrStr (line 290) | func AppendMapStrStr(b []byte, m map[string]string) []byte { function AppendMapStrIntf (line 302) | func AppendMapStrIntf(b []byte, m map[string]interface{}) ([]byte, error) { function AppendIntf (line 325) | func AppendIntf(b []byte, i interface{}) ([]byte, error) { FILE: vendor/golang.org/x/crypto/bcrypt/base64.go constant alphabet (line 9) | alphabet = "./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz012345... function base64Encode (line 13) | func base64Encode(src []byte) []byte { function base64Decode (line 23) | func base64Decode(src []byte) ([]byte, error) { FILE: vendor/golang.org/x/crypto/bcrypt/bcrypt.go constant MinCost (line 21) | MinCost int = 4 constant MaxCost (line 22) | MaxCost int = 31 constant DefaultCost (line 23) | DefaultCost int = 10 type HashVersionTooNewError (line 36) | type HashVersionTooNewError method Error (line 38) | func (hv HashVersionTooNewError) Error() string { type InvalidHashPrefixError (line 43) | type InvalidHashPrefixError method Error (line 45) | func (ih InvalidHashPrefixError) Error() string { type InvalidCostError (line 49) | type InvalidCostError method Error (line 51) | func (ic InvalidCostError) Error() string { constant majorVersion (line 56) | majorVersion = '2' constant minorVersion (line 57) | minorVersion = 'a' constant maxSaltSize (line 58) | maxSaltSize = 16 constant maxCryptedHashSize (line 59) | maxCryptedHashSize = 23 constant encodedSaltSize (line 60) | encodedSaltSize = 22 constant encodedHashSize (line 61) | encodedHashSize = 31 constant minHashSize (line 62) | minHashSize = 59 type hashed (line 76) | type hashed struct method Hash (line 233) | func (p *hashed) Hash() []byte { method decodeVersion (line 255) | func (p *hashed) decodeVersion(sbytes []byte) (int, error) { method decodeCost (line 272) | func (p *hashed) decodeCost(sbytes []byte) (int, error) { method String (line 285) | func (p *hashed) String() string { function GenerateFromPassword (line 88) | func GenerateFromPassword(password []byte, cost int) ([]byte, error) { function CompareHashAndPassword (line 98) | func CompareHashAndPassword(hashedPassword, password []byte) error { function Cost (line 121) | func Cost(hashedPassword []byte) (int, error) { function newFromPassword (line 129) | func newFromPassword(password []byte, cost int) (*hashed, error) { function newFromHash (line 158) | func newFromHash(hashedSecret []byte) (*hashed, error) { function bcrypt (line 186) | func bcrypt(password []byte, cost int, salt []byte) ([]byte, error) { function expensiveBlowfishSetup (line 207) | func expensiveBlowfishSetup(key []byte, cost uint32, salt []byte) (*blow... function checkCost (line 289) | func checkCost(cost int) error { FILE: vendor/golang.org/x/crypto/blowfish/block.go function getNextWord (line 9) | func getNextWord(b []byte, pos *int) uint32 { function ExpandKey (line 28) | func ExpandKey(key []byte, c *Cipher) { function expandKeyWithSalt (line 71) | func expandKeyWithSalt(key []byte, salt []byte, c *Cipher) { function encryptBlock (line 115) | func encryptBlock(l, r uint32, c *Cipher) (uint32, uint32) { function decryptBlock (line 138) | func decryptBlock(l, r uint32, c *Cipher) (uint32, uint32) { FILE: vendor/golang.org/x/crypto/blowfish/cipher.go constant BlockSize (line 14) | BlockSize = 8 type Cipher (line 17) | type Cipher struct method BlockSize (line 60) | func (c *Cipher) BlockSize() int { return BlockSize } method Encrypt (line 67) | func (c *Cipher) Encrypt(dst, src []byte) { method Decrypt (line 77) | func (c *Cipher) Decrypt(dst, src []byte) { type KeySizeError (line 22) | type KeySizeError method Error (line 24) | func (k KeySizeError) Error() string { function NewCipher (line 30) | func NewCipher(key []byte) (*Cipher, error) { function NewSaltedCipher (line 44) | func NewSaltedCipher(key, salt []byte) (*Cipher, error) { function initCipher (line 85) | func initCipher(c *Cipher) { FILE: vendor/gopkg.in/mgo.v2/auth.go type authCmd (line 41) | type authCmd struct type startSaslCmd (line 49) | type startSaslCmd struct type authResult (line 53) | type authResult struct type getNonceCmd (line 58) | type getNonceCmd struct type getNonceResult (line 62) | type getNonceResult struct type logoutCmd (line 68) | type logoutCmd struct type saslCmd (line 72) | type saslCmd struct type saslResult (line 80) | type saslResult struct type saslStepper (line 90) | type saslStepper interface method getNonce (line 95) | func (socket *mongoSocket) getNonce() (nonce string, err error) { method resetNonce (line 115) | func (socket *mongoSocket) resetNonce() { method Login (line 161) | func (socket *mongoSocket) Login(cred Credential) error { method loginClassic (line 204) | func (socket *mongoSocket) loginClassic(cred Credential) error { type authX509Cmd (line 238) | type authX509Cmd struct method loginX509 (line 244) | func (socket *mongoSocket) loginX509(cred Credential) error { method loginPlain (line 259) | func (socket *mongoSocket) loginPlain(cred Credential) error { method loginSASL (line 274) | func (socket *mongoSocket) loginSASL(cred Credential) error { function saslNewScram (line 356) | func saslNewScram(cred Credential) *saslScram { type saslScram (line 363) | type saslScram struct method Close (line 368) | func (s *saslScram) Close() {} method Step (line 370) | func (s *saslScram) Step(serverData []byte) (clientData []byte, done b... method loginRun (line 375) | func (socket *mongoSocket) loginRun(db string, query, result interface{}... method Logout (line 410) | func (socket *mongoSocket) Logout(db string) { method LogoutAll (line 420) | func (socket *mongoSocket) LogoutAll() { method flushLogout (line 430) | func (socket *mongoSocket) flushLogout() (ops []interface{}) { method dropAuth (line 447) | func (socket *mongoSocket) dropAuth(db string) (cred Credential, found b... method dropLogout (line 458) | func (socket *mongoSocket) dropLogout(cred Credential) (found bool) { FILE: vendor/gopkg.in/mgo.v2/bson/bson.go type Getter (line 62) | type Getter interface type Setter (line 93) | type Setter interface type M (line 110) | type M type D (line 119) | type D method Map (line 128) | func (d D) Map() (m M) { type DocElem (line 122) | type DocElem struct type Raw (line 145) | type Raw struct method Unmarshal (line 560) | func (raw Raw) Unmarshal(out interface{}) (err error) { type RawD (line 154) | type RawD type RawDocElem (line 157) | type RawDocElem struct type ObjectId (line 167) | type ObjectId method String (line 261) | func (id ObjectId) String() string { method Hex (line 266) | func (id ObjectId) Hex() string { method MarshalJSON (line 271) | func (id ObjectId) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 278) | func (id *ObjectId) UnmarshalJSON(data []byte) error { method MarshalText (line 296) | func (id ObjectId) MarshalText() ([]byte, error) { method UnmarshalText (line 301) | func (id *ObjectId) UnmarshalText(data []byte) error { method Valid (line 319) | func (id ObjectId) Valid() bool { method byteSlice (line 325) | func (id ObjectId) byteSlice(start, end int) []byte { method Time (line 334) | func (id ObjectId) Time() time.Time { method Machine (line 342) | func (id ObjectId) Machine() []byte { method Pid (line 348) | func (id ObjectId) Pid() uint16 { method Counter (line 354) | func (id ObjectId) Counter() int32 { function ObjectIdHex (line 172) | func ObjectIdHex(s string) ObjectId { function IsObjectIdHex (line 182) | func IsObjectIdHex(s string) bool { function readRandomUint32 (line 195) | func readRandomUint32() uint32 { function readMachineId (line 210) | func readMachineId() []byte { function NewObjectId (line 228) | func NewObjectId() ObjectId { function NewObjectIdWithTime (line 253) | func NewObjectIdWithTime(t time.Time) ObjectId { type Symbol (line 362) | type Symbol function Now (line 369) | func Now() time.Time { type MongoTimestamp (line 375) | type MongoTimestamp type orderKey (line 377) | type orderKey type undefined (line 387) | type undefined struct type Binary (line 402) | type Binary struct type RegEx (line 415) | type RegEx struct type JavaScript (line 423) | type JavaScript struct type DBPointer (line 432) | type DBPointer struct constant initialBufferSize (line 437) | initialBufferSize = 64 function handleErr (line 439) | func handleErr(err *error) { function Marshal (line 491) | func Marshal(in interface{}) (out []byte, err error) { function Unmarshal (line 533) | func Unmarshal(in []byte, out interface{}) (err error) { type TypeError (line 581) | type TypeError struct method Error (line 586) | func (e *TypeError) Error() string { type structInfo (line 593) | type structInfo struct type fieldInfo (line 600) | type fieldInfo struct type externalPanic (line 611) | type externalPanic method String (line 613) | func (e externalPanic) String() string { function getStructInfo (line 617) | func getStructInfo(st reflect.Type) (*structInfo, error) { FILE: vendor/gopkg.in/mgo.v2/bson/decode.go type decoder (line 40) | type decoder struct method readDocTo (line 128) | func (d *decoder) readDocTo(out reflect.Value) { method readArrayDocTo (line 290) | func (d *decoder) readArrayDocTo(out reflect.Value) { method readSliceDoc (line 325) | func (d *decoder) readSliceDoc(t reflect.Type) interface{} { method readDocElems (line 371) | func (d *decoder) readDocElems(typ reflect.Type) reflect.Value { method readRawDocElems (line 388) | func (d *decoder) readRawDocElems(typ reflect.Type) reflect.Value { method readDocWith (line 405) | func (d *decoder) readDocWith(f func(kind byte, name string)) { method dropElem (line 433) | func (d *decoder) dropElem(kind byte) { method readElemTo (line 440) | func (d *decoder) readElemTo(out reflect.Value, kind byte) (good bool) { method readRegEx (line 746) | func (d *decoder) readRegEx() RegEx { method readBinary (line 753) | func (d *decoder) readBinary() Binary { method readStr (line 765) | func (d *decoder) readStr() string { method readCStr (line 774) | func (d *decoder) readCStr() string { method readBool (line 790) | func (d *decoder) readBool() bool { method readFloat64 (line 801) | func (d *decoder) readFloat64() float64 { method readInt32 (line 805) | func (d *decoder) readInt32() int32 { method readInt64 (line 813) | func (d *decoder) readInt64() int64 { method readByte (line 825) | func (d *decoder) readByte() byte { method readBytes (line 834) | func (d *decoder) readBytes(length int32) []byte { function newDecoder (line 48) | func newDecoder(in []byte) *decoder { function corrupted (line 55) | func corrupted() { function settableValueOf (line 59) | func settableValueOf(i interface{}) reflect.Value { constant setterUnknown (line 70) | setterUnknown = iota constant setterNone (line 71) | setterNone constant setterType (line 72) | setterType constant setterAddr (line 73) | setterAddr function init (line 80) | func init() { function setterStyle (line 86) | func setterStyle(outt reflect.Type) int { function getSetter (line 105) | func getSetter(outt reflect.Type, out reflect.Value) Setter { function clearMap (line 121) | func clearMap(m reflect.Value) { FILE: vendor/gopkg.in/mgo.v2/bson/encode.go constant itoaCacheSize (line 59) | itoaCacheSize = 32 function init (line 63) | func init() { function itoa (line 70) | func itoa(i int) string { type encoder (line 80) | type encoder struct method addDoc (line 84) | func (e *encoder) addDoc(v reflect.Value) { method addMap (line 130) | func (e *encoder) addMap(v reflect.Value) { method addStruct (line 136) | func (e *encoder) addStruct(v reflect.Value) { method addSlice (line 203) | func (e *encoder) addSlice(v reflect.Value) { method addElemName (line 241) | func (e *encoder) addElemName(kind byte, name string) { method addElem (line 247) | func (e *encoder) addElem(name string, v reflect.Value, minSize bool) { method addBinary (line 456) | func (e *encoder) addBinary(subtype byte, v []byte) { method addStr (line 469) | func (e *encoder) addStr(v string) { method addCStr (line 474) | func (e *encoder) addCStr(v string) { method reserveInt32 (line 479) | func (e *encoder) reserveInt32() (pos int) { method setInt32 (line 485) | func (e *encoder) setInt32(pos int, v int32) { method addInt32 (line 492) | func (e *encoder) addInt32(v int32) { method addInt64 (line 497) | func (e *encoder) addInt64(v int64) { method addFloat64 (line 503) | func (e *encoder) addFloat64(v float64) { method addBytes (line 507) | func (e *encoder) addBytes(v ...byte) { function isZero (line 167) | func isZero(v reflect.Value) bool { FILE: vendor/gopkg.in/mgo.v2/bulk.go type Bulk (line 24) | type Bulk struct method Unordered (line 131) | func (b *Bulk) Unordered() { method action (line 135) | func (b *Bulk) action(op bulkOp, opcount int) *bulkAction { method Insert (line 159) | func (b *Bulk) Insert(docs ...interface{}) { method Remove (line 166) | func (b *Bulk) Remove(selectors ...interface{}) { method RemoveAll (line 183) | func (b *Bulk) RemoveAll(selectors ...interface{}) { method Update (line 202) | func (b *Bulk) Update(pairs ...interface{}) { method UpdateAll (line 224) | func (b *Bulk) UpdateAll(pairs ...interface{}) { method Upsert (line 248) | func (b *Bulk) Upsert(pairs ...interface{}) { method Run (line 274) | func (b *Bulk) Run() (*BulkResult, error) { method runInsert (line 305) | func (b *Bulk) runInsert(action *bulkAction, result *BulkResult, berr ... method runUpdate (line 314) | func (b *Bulk) runUpdate(action *bulkAction, result *BulkResult, berr ... method runRemove (line 323) | func (b *Bulk) runRemove(action *bulkAction, result *BulkResult, berr ... method checkSuccess (line 332) | func (b *Bulk) checkSuccess(action *bulkAction, berr *BulkError, lerr ... type bulkOp (line 31) | type bulkOp constant bulkInsert (line 34) | bulkInsert bulkOp = iota + 1 constant bulkUpdate (line 35) | bulkUpdate constant bulkUpdateAll (line 36) | bulkUpdateAll constant bulkRemove (line 37) | bulkRemove type bulkAction (line 40) | type bulkAction struct type bulkUpdateOp (line 46) | type bulkUpdateOp type bulkDeleteOp (line 47) | type bulkDeleteOp type BulkResult (line 50) | type BulkResult struct type BulkError (line 62) | type BulkError struct method Error (line 66) | func (e *BulkError) Error() string { method Cases (line 117) | func (e *BulkError) Cases() []BulkErrorCase { type bulkErrorCases (line 95) | type bulkErrorCases method Len (line 97) | func (slice bulkErrorCases) Len() int { return len(slice) } method Less (line 98) | func (slice bulkErrorCases) Less(i, j int) bool { return slice[i].Inde... method Swap (line 99) | func (slice bulkErrorCases) Swap(i, j int) { slice[i], slice[j] =... type BulkErrorCase (line 109) | type BulkErrorCase struct method Bulk (line 122) | func (c *Collection) Bulk() *Bulk { FILE: vendor/gopkg.in/mgo.v2/cluster.go type mongoCluster (line 48) | type mongoCluster struct method Acquire (line 83) | func (cluster *mongoCluster) Acquire() { method Release (line 92) | func (cluster *mongoCluster) Release() { method LiveServers (line 110) | func (cluster *mongoCluster) LiveServers() (servers []string) { method removeServer (line 119) | func (cluster *mongoCluster) removeServer(server *mongoServer) { method isMaster (line 143) | func (cluster *mongoCluster) isMaster(socket *mongoSocket, result *isM... method syncServer (line 158) | func (cluster *mongoCluster) syncServer(server *mongoServer) (info *mo... method addServer (line 256) | func (cluster *mongoCluster) addServer(server *mongoServer, info *mong... method getKnownAddrs (line 293) | func (cluster *mongoCluster) getKnownAddrs() []string { method syncServers (line 322) | func (cluster *mongoCluster) syncServers() { method syncServersLoop (line 342) | func (cluster *mongoCluster) syncServersLoop() { method server (line 402) | func (cluster *mongoCluster) server(addr string, tcpaddr *net.TCPAddr)... method syncServersIteration (line 477) | func (cluster *mongoCluster) syncServersIteration(direct bool) { method AcquireSocket (line 581) | func (cluster *mongoCluster) AcquireSocket(mode Mode, slaveOk bool, sy... method CacheIndex (line 653) | func (cluster *mongoCluster) CacheIndex(cacheKey string, exists bool) { method HasCachedIndex (line 666) | func (cluster *mongoCluster) HasCachedIndex(cacheKey string) (result b... method ResetIndexCache (line 675) | func (cluster *mongoCluster) ResetIndexCache() { function newCluster (line 66) | func newCluster(userSeeds []string, direct, failFast bool, dial dialer, ... type isMasterResult (line 131) | type isMasterResult struct type possibleTimeout (line 152) | type possibleTimeout interface type syncKind (line 249) | type syncKind constant completeSync (line 252) | completeSync syncKind = true constant partialSync (line 253) | partialSync syncKind = false constant syncServersDelay (line 331) | syncServersDelay = 30 * time.Second constant syncShortDelay (line 332) | syncShortDelay = 500 * time.Millisecond function resolveAddr (line 412) | func resolveAddr(addr string) (*net.TCPAddr, error) { type pendingAdd (line 472) | type pendingAdd struct FILE: vendor/gopkg.in/mgo.v2/gridfs.go type GridFS (line 42) | type GridFS struct method newFile (line 104) | func (gfs *GridFS) newFile() *GridFile { method Create (line 153) | func (gfs *GridFS) Create(name string) (file *GridFile, err error) { method OpenId (line 197) | func (gfs *GridFS) OpenId(id interface{}) (file *GridFile, err error) { method Open (line 241) | func (gfs *GridFS) Open(name string) (file *GridFile, err error) { method OpenNext (line 280) | func (gfs *GridFS) OpenNext(iter *Iter, file **GridFile) bool { method Find (line 312) | func (gfs *GridFS) Find(query interface{}) *Query { method RemoveId (line 317) | func (gfs *GridFS) RemoveId(id interface{}) error { method Remove (line 331) | func (gfs *GridFS) Remove(name string) (err error) { type gfsFileMode (line 47) | type gfsFileMode constant gfsClosed (line 50) | gfsClosed gfsFileMode = 0 constant gfsReading (line 51) | gfsReading gfsFileMode = 1 constant gfsWriting (line 52) | gfsWriting gfsFileMode = 2 type GridFile (line 55) | type GridFile struct method assertMode (line 345) | func (file *GridFile) assertMode(mode gfsFileMode) { method SetChunkSize (line 366) | func (file *GridFile) SetChunkSize(bytes int) { method Id (line 375) | func (file *GridFile) Id() interface{} { method SetId (line 383) | func (file *GridFile) SetId(id interface{}) { method Name (line 392) | func (file *GridFile) Name() string { method SetName (line 401) | func (file *GridFile) SetName(name string) { method ContentType (line 410) | func (file *GridFile) ContentType() string { method SetContentType (line 419) | func (file *GridFile) SetContentType(ctype string) { method GetMeta (line 437) | func (file *GridFile) GetMeta(result interface{}) (err error) { method SetMeta (line 454) | func (file *GridFile) SetMeta(metadata interface{}) { method Size (line 467) | func (file *GridFile) Size() (bytes int64) { method MD5 (line 475) | func (file *GridFile) MD5() (md5 string) { method UploadDate (line 480) | func (file *GridFile) UploadDate() time.Time { method SetUploadDate (line 488) | func (file *GridFile) SetUploadDate(t time.Time) { method Close (line 501) | func (file *GridFile) Close() (err error) { method completeWrite (line 519) | func (file *GridFile) completeWrite() { method Abort (line 550) | func (file *GridFile) Abort() { method Write (line 568) | func (file *GridFile) Write(data []byte) (n int, err error) { method insertChunk (line 615) | func (file *GridFile) insertChunk(data []byte) { method Seek (line 658) | func (file *GridFile) Seek(offset int64, whence int) (pos int64, err e... method Read (line 705) | func (file *GridFile) Read(b []byte) (n int, err error) { method getChunk (line 727) | func (file *GridFile) getChunk() (data []byte, err error) { type gfsFile (line 75) | type gfsFile struct type gfsChunk (line 86) | type gfsChunk struct type gfsCachedChunk (line 93) | type gfsCachedChunk struct function newGridFS (line 100) | func newGridFS(db *Database, prefix string) *GridFS { function finalizeFile (line 111) | func finalizeFile(file *GridFile) { type gfsDocId (line 326) | type gfsDocId struct FILE: vendor/gopkg.in/mgo.v2/internal/sasl/sasl.c function mgo_sasl_simple (line 8) | static int mgo_sasl_simple(void *context, int id, const char **result, u... function mgo_sasl_secret (line 34) | static int mgo_sasl_secret(sasl_conn_t *conn, void *context, int id, sas... function sasl_callback_t (line 43) | sasl_callback_t *mgo_sasl_callbacks(const char *username, const char *pa... FILE: vendor/gopkg.in/mgo.v2/internal/sasl/sasl.go type saslStepper (line 28) | type saslStepper interface type saslSession (line 33) | type saslSession struct method cstr (line 74) | func (ss *saslSession) cstr(s string) *C.char { method Close (line 80) | func (ss *saslSession) Close() { method Step (line 98) | func (ss *saslSession) Step(serverData []byte) (clientData []byte, don... function initSASL (line 45) | func initSASL() { function New (line 52) | func New(username, password, mechanism, service, host string) (saslStepp... function saslError (line 130) | func saslError(rc C.int, conn *C.sasl_conn_t, msg string) error { FILE: vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.c function SECURITY_STATUS (line 5) | SECURITY_STATUS SEC_ENTRY sspi_acquire_credentials_handle(CredHandle *cr... function sspi_step (line 20) | int sspi_step(CredHandle *cred_handle, int has_context, CtxtHandle *cont... function sspi_send_client_authz_id (line 67) | int sspi_send_client_authz_id(CtxtHandle *context, PVOID *buffer, ULONG ... FILE: vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.go type saslStepper (line 13) | type saslStepper interface type saslSession (line 18) | type saslSession struct method cstr (line 85) | func (ss *saslSession) cstr(s string) *C.char { method Close (line 91) | func (ss *saslSession) Close() { method Step (line 97) | func (ss *saslSession) Step(serverData []byte) (clientData []byte, don... method handleSSPIErrorCode (line 134) | func (ss *saslSession) handleSSPIErrorCode(code C.int) error { function initSSPI (line 44) | func initSSPI() { function New (line 51) | func New(username, password, mechanism, service, host string) (saslStepp... FILE: vendor/gopkg.in/mgo.v2/internal/sasl/sspi_windows.c function load_secur32_dll (line 15) | int load_secur32_dll() function SECURITY_STATUS (line 24) | SECURITY_STATUS SEC_ENTRY call_sspi_encrypt_message(PCtxtHandle phContex... function SECURITY_STATUS (line 36) | SECURITY_STATUS SEC_ENTRY call_sspi_acquire_credentials_handle( function SECURITY_STATUS (line 58) | SECURITY_STATUS SEC_ENTRY call_sspi_initialize_security_context( function SECURITY_STATUS (line 81) | SECURITY_STATUS SEC_ENTRY call_sspi_query_context_attributes(PCtxtHandle... FILE: vendor/gopkg.in/mgo.v2/internal/scram/scram.go type Client (line 59) | type Client struct method Out (line 92) | func (c *Client) Out() []byte { method Err (line 100) | func (c *Client) Err() error { method SetNonce (line 106) | func (c *Client) SetNonce(nonce []byte) { method Step (line 116) | func (c *Client) Step(in []byte) bool { method step1 (line 133) | func (c *Client) step1(in []byte) error { method step2 (line 155) | func (c *Client) step2(in []byte) error { method step3 (line 200) | func (c *Client) step3(in []byte) error { method saltPassword (line 218) | func (c *Client) saltPassword(salt []byte, iterCount int) { method clientProof (line 236) | func (c *Client) clientProof() []byte { method serverSignature (line 254) | func (c *Client) serverSignature() []byte { function NewClient (line 80) | func NewClient(newHash func() hash.Hash, user, pass string) *Client { FILE: vendor/gopkg.in/mgo.v2/log.go type log_Logger (line 40) | type log_Logger interface function SetLogger (line 57) | func SetLogger(logger log_Logger) { function SetDebug (line 67) | func SetDebug(debug bool) { function log (line 75) | func log(v ...interface{}) { function logln (line 85) | func logln(v ...interface{}) { function logf (line 95) | func logf(format string, v ...interface{}) { function debug (line 105) | func debug(v ...interface{}) { function debugln (line 115) | func debugln(v ...interface{}) { function debugf (line 125) | func debugf(format string, v ...interface{}) { FILE: vendor/gopkg.in/mgo.v2/queue.go type queue (line 29) | type queue struct method Len (line 34) | func (q *queue) Len() int { method Push (line 38) | func (q *queue) Push(elem interface{}) { method Pop (line 51) | func (q *queue) Pop() (elem interface{}) { method expand (line 66) | func (q *queue) expand() { FILE: vendor/gopkg.in/mgo.v2/raceoff.go constant raceDetector (line 5) | raceDetector = false FILE: vendor/gopkg.in/mgo.v2/raceon.go constant raceDetector (line 5) | raceDetector = true FILE: vendor/gopkg.in/mgo.v2/saslimpl.go function saslNew (line 9) | func saslNew(cred Credential, host string) (saslStepper, error) { FILE: vendor/gopkg.in/mgo.v2/saslstub.go function saslNew (line 9) | func saslNew(cred Credential, host string) (saslStepper, error) { FILE: vendor/gopkg.in/mgo.v2/server.go type mongoServer (line 42) | type mongoServer struct method AcquireSocket (line 104) | func (server *mongoServer) AcquireSocket(poolLimit int, timeout time.D... method Connect (line 151) | func (server *mongoServer) Connect(timeout time.Duration) (*mongoSocke... method Close (line 189) | func (server *mongoServer) Close() { method RecycleSocket (line 208) | func (server *mongoServer) RecycleSocket(socket *mongoSocket) { method AbendSocket (line 231) | func (server *mongoServer) AbendSocket(socket *mongoSocket) { method SetInfo (line 248) | func (server *mongoServer) SetInfo(info *mongoServerInfo) { method Info (line 254) | func (server *mongoServer) Info() *mongoServerInfo { method hasTags (line 261) | func (server *mongoServer) hasTags(serverTags []bson.D) bool { method pinger (line 283) | func (server *mongoServer) pinger(loop bool) { type dialer (line 60) | type dialer struct method isSet (line 65) | func (dial dialer) isSet() bool { type mongoServerInfo (line 69) | type mongoServerInfo struct function newServer (line 79) | func newServer(addr string, tcpaddr *net.TCPAddr, sync chan bool, dial d... function removeSocket (line 216) | func removeSocket(sockets []*mongoSocket, socket *mongoSocket) []*mongoS... type mongoServerSlice (line 336) | type mongoServerSlice method Len (line 338) | func (s mongoServerSlice) Len() int { method Less (line 342) | func (s mongoServerSlice) Less(i, j int) bool { method Swap (line 346) | func (s mongoServerSlice) Swap(i, j int) { method Sort (line 350) | func (s mongoServerSlice) Sort() { method Search (line 354) | func (s mongoServerSlice) Search(resolvedAddr string) (i int, ok bool) { type mongoServers (line 362) | type mongoServers struct method Search (line 366) | func (servers *mongoServers) Search(resolvedAddr string) (server *mong... method Add (line 373) | func (servers *mongoServers) Add(server *mongoServer) { method Remove (line 378) | func (servers *mongoServers) Remove(other *mongoServer) (server *mongo... method Slice (line 389) | func (servers *mongoServers) Slice() []*mongoServer { method Get (line 393) | func (servers *mongoServers) Get(i int) *mongoServer { method Len (line 397) | func (servers *mongoServers) Len() int { method Empty (line 401) | func (servers *mongoServers) Empty() bool { method BestFit (line 407) | func (servers *mongoServers) BestFit(mode Mode, serverTags []bson.D) *... function absDuration (line 447) | func absDuration(d time.Duration) time.Duration { FILE: vendor/gopkg.in/mgo.v2/session.go type Mode (line 47) | type Mode constant Primary (line 54) | Primary Mode = 2 constant PrimaryPreferred (line 55) | PrimaryPreferred Mode = 3 constant Secondary (line 56) | Secondary Mode = 4 constant SecondaryPreferred (line 57) | SecondaryPreferred Mode = 5 constant Nearest (line 58) | Nearest Mode = 6 constant Eventual (line 61) | Eventual Mode = 0 constant Monotonic (line 62) | Monotonic Mode = 1 constant Strong (line 63) | Strong Mode = 2 type Session (line 77) | type Session struct method LiveServers (line 562) | func (s *Session) LiveServers() (addrs []string) { method DB (line 576) | func (s *Session) DB(name string) *Database { method Login (line 694) | func (s *Session) Login(cred *Credential) error { method socketLogin (line 720) | func (s *Session) socketLogin(socket *mongoSocket) error { method LogoutAll (line 755) | func (s *Session) LogoutAll() { method nonEventual (line 1375) | func (session *Session) nonEventual() *Session { method ResetIndexCache (line 1507) | func (s *Session) ResetIndexCache() { method New (line 1523) | func (s *Session) New() *Session { method Copy (line 1533) | func (s *Session) Copy() *Session { method Clone (line 1547) | func (s *Session) Clone() *Session { method Close (line 1556) | func (s *Session) Close() { method cluster (line 1567) | func (s *Session) cluster() *mongoCluster { method Refresh (line 1576) | func (s *Session) Refresh() { method SetMode (line 1623) | func (s *Session) SetMode(consistency Mode, refresh bool) { method Mode (line 1639) | func (s *Session) Mode() Mode { method SetSyncTimeout (line 1650) | func (s *Session) SetSyncTimeout(d time.Duration) { method SetSocketTimeout (line 1658) | func (s *Session) SetSocketTimeout(d time.Duration) { method SetCursorTimeout (line 1673) | func (s *Session) SetCursorTimeout(d time.Duration) { method SetPoolLimit (line 1692) | func (s *Session) SetPoolLimit(limit int) { method SetBypassValidation (line 1710) | func (s *Session) SetBypassValidation(bypass bool) { method SetBatch (line 1723) | func (s *Session) SetBatch(n int) { method SetPrefetch (line 1746) | func (s *Session) SetPrefetch(p float64) { method Safe (line 1762) | func (s *Session) Safe() (safe *Safe) { method SetSafe (line 1848) | func (s *Session) SetSafe(safe *Safe) { method EnsureSafe (line 1882) | func (s *Session) EnsureSafe(safe *Safe) { method ensureSafe (line 1888) | func (s *Session) ensureSafe(safe *Safe) { method Run (line 1951) | func (s *Session) Run(cmd interface{}, result interface{}) error { method SelectServers (line 1973) | func (s *Session) SelectServers(tags ...bson.D) { method Ping (line 1980) | func (s *Session) Ping() error { method Fsync (line 1987) | func (s *Session) Fsync(async bool) error { method FsyncLock (line 2016) | func (s *Session) FsyncLock() error { method FsyncUnlock (line 2021) | func (s *Session) FsyncUnlock() error { method FindRef (line 3266) | func (s *Session) FindRef(ref *DBRef) *Query { method DatabaseNames (line 3340) | func (s *Session) DatabaseNames() (names []string, err error) { method prepareQuery (line 3487) | func (s *Session) prepareQuery(op *queryOp) { method BuildInfo (line 4274) | func (s *Session) BuildInfo() (info BuildInfo, err error) { method acquireSocket (line 4302) | func (s *Session) acquireSocket(slaveOk bool) (*mongoSocket, error) { method setSocket (line 4366) | func (s *Session) setSocket(socket *mongoSocket) { method unsetSocket (line 4382) | func (s *Session) unsetSocket() { type Database (line 96) | type Database struct method C (line 587) | func (db *Database) C(name string) *Collection { method With (line 592) | func (db *Database) With(s *Session) *Database { method GridFS (line 621) | func (db *Database) GridFS(prefix string) *GridFS { method Run (line 645) | func (db *Database) Run(cmd interface{}, result interface{}) error { method Login (line 686) | func (db *Database) Login(user, pass string) error { method Logout (line 730) | func (db *Database) Logout() { method UpsertUser (line 842) | func (db *Database) UpsertUser(user *User) error { method runUserCmd (line 920) | func (db *Database) runUserCmd(cmdName string, user *User) error { method AddUser (line 950) | func (db *Database) AddUser(username, password string, readOnly bool) ... method RemoveUser (line 984) | func (db *Database) RemoveUser(user string) error { method DropDatabase (line 2554) | func (db *Database) DropDatabase() error { method run (line 3177) | func (db *Database) run(socket *mongoSocket, cmd, result interface{}) ... method FindRef (line 3246) | func (db *Database) FindRef(ref *DBRef) *Query { method CollectionNames (line 3275) | func (db *Database) CollectionNames() (names []string, err error) { type Collection (line 101) | type Collection struct method With (line 599) | func (c *Collection) With(s *Session) *Collection { method EnsureIndexKey (line 1138) | func (c *Collection) EnsureIndexKey(key ...string) error { method EnsureIndex (line 1214) | func (c *Collection) EnsureIndex(index Index) error { method DropIndex (line 1291) | func (c *Collection) DropIndex(key ...string) error { method DropIndexName (line 1326) | func (c *Collection) DropIndexName(name string) error { method Indexes (line 1399) | func (c *Collection) Indexes() (indexes []Index, err error) { method Find (line 2051) | func (c *Collection) Find(query interface{}) *Query { method Repair (line 2076) | func (c *Collection) Repair() *Iter { method FindId (line 2103) | func (c *Collection) FindId(id interface{}) *Query { method Pipe (line 2141) | func (c *Collection) Pipe(pipeline interface{}) *Pipe { method NewIter (line 2208) | func (c *Collection) NewIter(session *Session, firstBatch []bson.Raw, ... method Insert (line 2375) | func (c *Collection) Insert(docs ...interface{}) error { method Update (line 2391) | func (c *Collection) Update(selector interface{}, update interface{}) ... method UpdateId (line 2412) | func (c *Collection) UpdateId(id interface{}, update interface{}) error { method UpdateAll (line 2439) | func (c *Collection) UpdateAll(selector interface{}, update interface{... method Upsert (line 2470) | func (c *Collection) Upsert(selector interface{}, update interface{}) ... method UpsertId (line 2499) | func (c *Collection) UpsertId(id interface{}, update interface{}) (inf... method Remove (line 2513) | func (c *Collection) Remove(selector interface{}) error { method RemoveId (line 2529) | func (c *Collection) RemoveId(id interface{}) error { method RemoveAll (line 2542) | func (c *Collection) RemoveAll(selector interface{}) (info *ChangeInfo... method DropCollection (line 2559) | func (c *Collection) DropCollection() error { method Create (line 2622) | func (c *Collection) Create(info *CollectionInfo) error { method Count (line 3880) | func (c *Collection) Count() (n int, err error) { method writeOp (line 4498) | func (c *Collection) writeOp(op interface{}, ordered bool) (lerr *Last... method writeOpQuery (line 4581) | func (c *Collection) writeOpQuery(socket *mongoSocket, safeOp *queryOp... method writeOpCommand (line 4627) | func (c *Collection) writeOpCommand(socket *mongoSocket, safeOp *query... type Query (line 107) | type Query struct method Batch (line 2663) | func (q *Query) Batch(n int) *Query { method Prefetch (line 2685) | func (q *Query) Prefetch(p float64) *Query { method Skip (line 2695) | func (q *Query) Skip(n int) *Query { method Limit (line 2705) | func (q *Query) Limit(n int) *Query { method Select (line 2734) | func (q *Query) Select(selector interface{}) *Query { method Sort (line 2756) | func (q *Query) Sort(fields ...string) *Query { method Explain (line 2810) | func (q *Query) Explain(result interface{}) error { method Hint (line 2844) | func (q *Query) Hint(indexKey ...string) *Query { method SetMaxScan (line 2861) | func (q *Query) SetMaxScan(n int) *Query { method SetMaxTime (line 2899) | func (q *Query) SetMaxTime(d time.Duration) *Query { method Snapshot (line 2930) | func (q *Query) Snapshot() *Query { method Comment (line 2946) | func (q *Query) Comment(comment string) *Query { method LogReplay (line 2958) | func (q *Query) LogReplay() *Query { method One (line 3015) | func (q *Query) One(result interface{}) (err error) { method Iter (line 3359) | func (q *Query) Iter() *Iter { method Tail (line 3452) | func (q *Query) Tail(timeout time.Duration) *Iter { method All (line 3722) | func (q *Query) All(result interface{}) error { method For (line 3728) | func (q *Query) For(result interface{}, f func() error) error { method Count (line 3856) | func (q *Query) Count() (n int, err error) { method Distinct (line 3901) | func (q *Query) Distinct(key string, result interface{}) error { method MapReduce (line 4030) | func (q *Query) MapReduce(job *MapReduce, result interface{}) (info *M... method Apply (line 4181) | func (q *Query) Apply(change Change, result interface{}) (info *Change... type query (line 113) | type query struct type getLastError (line 119) | type getLastError struct type Iter (line 127) | type Iter struct method Err (line 3503) | func (iter *Iter) Err() error { method Close (line 3528) | func (iter *Iter) Close() error { method Timeout (line 3560) | func (iter *Iter) Timeout() bool { method Next (line 3588) | func (iter *Iter) Next(result interface{}) bool { method All (line 3693) | func (iter *Iter) All(result interface{}) error { method For (line 3734) | func (iter *Iter) For(result interface{}, f func() error) (err error) { method acquireSocket (line 3767) | func (iter *Iter) acquireSocket() (*mongoSocket, error) { method getMore (line 3794) | func (iter *Iter) getMore() { method getMoreCmd (line 3827) | func (iter *Iter) getMoreCmd() *queryOp { method replyFunc (line 4393) | func (iter *Iter) replyFunc() replyFunc { constant defaultPrefetch (line 149) | defaultPrefetch = 0.25 function Dial (line 240) | func Dial(url string) (*Session, error) { function DialWithTimeout (line 255) | func DialWithTimeout(url string, timeout time.Duration) (*Session, error) { function ParseURL (line 268) | func ParseURL(url string) (*DialInfo, error) { type DialInfo (line 324) | type DialInfo struct type ServerAddr (line 396) | type ServerAddr struct method String (line 402) | func (addr *ServerAddr) String() string { method TCPAddr (line 407) | func (addr *ServerAddr) TCPAddr() *net.TCPAddr { function DialWithInfo (line 412) | func DialWithInfo(info *DialInfo) (*Session, error) { function isOptSep (line 468) | func isOptSep(c rune) bool { type urlInfo (line 472) | type urlInfo struct function extractURL (line 480) | func extractURL(s string) (*urlInfo, error) { function newSession (line 521) | func newSession(consistency Mode, cluster *mongoCluster, timeout time.Du... function copySession (line 536) | func copySession(session *Session, keepCreds bool) (s *Session) { type Credential (line 657) | type Credential struct type User (line 776) | type User struct type Role (line 811) | type Role constant RoleRoot (line 818) | RoleRoot Role = "root" constant RoleRead (line 819) | RoleRead Role = "read" constant RoleReadAny (line 820) | RoleReadAny Role = "readAnyDatabase" constant RoleReadWrite (line 821) | RoleReadWrite Role = "readWrite" constant RoleReadWriteAny (line 822) | RoleReadWriteAny Role = "readWriteAnyDatabase" constant RoleDBAdmin (line 823) | RoleDBAdmin Role = "dbAdmin" constant RoleDBAdminAny (line 824) | RoleDBAdminAny Role = "dbAdminAnyDatabase" constant RoleUserAdmin (line 825) | RoleUserAdmin Role = "userAdmin" constant RoleUserAdminAny (line 826) | RoleUserAdminAny Role = "userAdminAnyDatabase" constant RoleClusterAdmin (line 827) | RoleClusterAdmin Role = "clusterAdmin" function isNoCmd (line 905) | func isNoCmd(err error) bool { function isNotFound (line 910) | func isNotFound(err error) bool { function isAuthError (line 915) | func isAuthError(err error) bool { type indexSpec (line 996) | type indexSpec struct type Index (line 1013) | type Index struct type indexKeyInfo (line 1054) | type indexKeyInfo struct function parseIndexKey (line 1060) | func parseIndexKey(key []string) (*indexKeyInfo, error) { function indexFromSpec (line 1441) | func indexFromSpec(spec indexSpec) Index { type indexSlice (line 1474) | type indexSlice method Len (line 1476) | func (idxs indexSlice) Len() int { return len(idxs) } method Less (line 1477) | func (idxs indexSlice) Less(i, j int) bool { return idxs[i].Name < idx... method Swap (line 1478) | func (idxs indexSlice) Swap(i, j int) { idxs[i], idxs[j] = idxs[j... function simpleIndexKey (line 1480) | func simpleIndexKey(realKey bson.D) (key []string) { type Safe (line 1753) | type Safe struct type repairCmd (line 2061) | type repairCmd struct type repairCmdCursor (line 2066) | type repairCmdCursor struct type Pipe (line 2107) | type Pipe struct method Iter (line 2156) | func (p *Pipe) Iter() *Iter { method All (line 2253) | func (p *Pipe) All(result interface{}) error { method One (line 2260) | func (p *Pipe) One(result interface{}) error { method Explain (line 2284) | func (p *Pipe) Explain(result interface{}) error { method AllowDiskUse (line 2297) | func (p *Pipe) AllowDiskUse() *Pipe { method Batch (line 2307) | func (p *Pipe) Batch(n int) *Pipe { type pipeCmd (line 2115) | type pipeCmd struct type pipeCmdCursor (line 2123) | type pipeCmdCursor struct type LastError (line 2314) | type LastError struct method Error (line 2326) | func (err *LastError) Error() string { type queryError (line 2330) | type queryError struct type QueryError (line 2339) | type QueryError struct method Error (line 2345) | func (err *QueryError) Error() string { function IsDup (line 2352) | func IsDup(err error) bool { type ChangeInfo (line 2417) | type ChangeInfo struct type CollectionInfo (line 2570) | type CollectionInfo struct function checkQueryError (line 2965) | func checkQueryError(fullname string, d []byte) error { function prepareFindOp (line 3075) | func prepareFindOp(socket *mongoSocket, op *queryOp, limit int32) bool { type cursorData (line 3122) | type cursorData struct type findCmd (line 3135) | type findCmd struct type getMoreCmd (line 3167) | type getMoreCmd struct type DBRef (line 3228) | type DBRef struct type dbNames (line 3332) | type dbNames struct type countCmd (line 3848) | type countCmd struct type distinctCmd (line 3884) | type distinctCmd struct type mapReduceCmd (line 3923) | type mapReduceCmd struct type mapReduceResult (line 3936) | type mapReduceResult struct type MapReduce (line 3946) | type MapReduce struct type MapReduceInfo (line 3955) | type MapReduceInfo struct type MapReduceTime (line 3965) | type MapReduceTime struct function fixMROut (line 4111) | func fixMROut(out interface{}) interface{} { type Change (line 4136) | type Change struct type findModifyCmd (line 4143) | type findModifyCmd struct type valueResult (line 4149) | type valueResult struct type BuildInfo (line 4246) | type BuildInfo struct method VersionAtLeast (line 4260) | func (bi *BuildInfo) VersionAtLeast(version ...int) bool { type writeCmdResult (line 4463) | type writeCmdResult struct method BulkErrorCases (line 4486) | func (r *writeCmdResult) BulkErrorCases() []BulkErrorCase { type writeConcernError (line 4475) | type writeConcernError struct type writeCmdError (line 4480) | type writeCmdError struct function hasErrMsg (line 4714) | func hasErrMsg(d []byte) bool { FILE: vendor/gopkg.in/mgo.v2/socket.go type replyFunc (line 39) | type replyFunc type mongoSocket (line 41) | type mongoSocket struct method Server (line 200) | func (socket *mongoSocket) Server() *mongoServer { method ServerInfo (line 209) | func (socket *mongoSocket) ServerInfo() *mongoServerInfo { method InitialAcquire (line 219) | func (socket *mongoSocket) InitialAcquire(serverInfo *mongoServerInfo,... method Acquire (line 241) | func (socket *mongoSocket) Acquire() (info *mongoServerInfo) { method Release (line 257) | func (socket *mongoSocket) Release() { method SetTimeout (line 279) | func (socket *mongoSocket) SetTimeout(d time.Duration) { method updateDeadline (line 292) | func (socket *mongoSocket) updateDeadline(which deadlineType) { method Close (line 315) | func (socket *mongoSocket) Close() { method kill (line 319) | func (socket *mongoSocket) kill(err error, abend bool) { method SimpleQuery (line 345) | func (socket *mongoSocket) SimpleQuery(op *queryOp) (data []byte, err ... method Query (line 375) | func (socket *mongoSocket) Query(ops ...interface{}) (err error) { method readLoop (line 546) | func (socket *mongoSocket) readLoop() { type queryOpFlags (line 58) | type queryOpFlags constant _ (line 61) | _ queryOpFlags = 1 << iota constant flagTailable (line 62) | flagTailable constant flagSlaveOk (line 63) | flagSlaveOk constant flagLogReplay (line 64) | flagLogReplay constant flagNoCursorTimeout (line 65) | flagNoCursorTimeout constant flagAwaitData (line 66) | flagAwaitData type queryOp (line 69) | type queryOp struct method finalQuery (line 96) | func (op *queryOp) finalQuery(socket *mongoSocket) interface{} { type queryWrapper (line 84) | type queryWrapper struct type getMoreOp (line 135) | type getMoreOp struct type replyOp (line 142) | type replyOp struct type insertOp (line 149) | type insertOp struct type updateOp (line 155) | type updateOp struct type deleteOp (line 164) | type deleteOp struct type killCursorsOp (line 171) | type killCursorsOp struct type requestInfo (line 175) | type requestInfo struct function newSocket (line 180) | func newSocket(server *mongoServer, conn net.Conn, timeout time.Duration... type deadlineType (line 285) | type deadlineType constant readDeadline (line 288) | readDeadline deadlineType = 1 constant writeDeadline (line 289) | writeDeadline deadlineType = 2 function fill (line 533) | func fill(r net.Conn, b []byte) error { function addHeader (line 649) | func addHeader(b []byte, opcode int) []byte { function addInt32 (line 658) | func addInt32(b []byte, i int32) []byte { function addInt64 (line 662) | func addInt64(b []byte, i int64) []byte { function addCString (line 667) | func addCString(b []byte, s string) []byte { function addBSON (line 673) | func addBSON(b []byte, doc interface{}) ([]byte, error) { function setInt32 (line 684) | func setInt32(b []byte, pos int, i int32) { function getInt32 (line 691) | func getInt32(b []byte, pos int) int32 { function getInt64 (line 698) | func getInt64(b []byte, pos int) int64 { FILE: vendor/gopkg.in/mgo.v2/stats.go function SetStats (line 36) | func SetStats(enabled bool) { function GetStats (line 48) | func GetStats() (snapshot Stats) { function ResetStats (line 55) | func ResetStats() { type Stats (line 69) | type Stats struct method cluster (line 81) | func (stats *Stats) cluster(delta int) { method conn (line 89) | func (stats *Stats) conn(delta int, master bool) { method sentOps (line 101) | func (stats *Stats) sentOps(delta int) { method receivedOps (line 109) | func (stats *Stats) receivedOps(delta int) { method receivedDocs (line 117) | func (stats *Stats) receivedDocs(delta int) { method socketsInUse (line 125) | func (stats *Stats) socketsInUse(delta int) { method socketsAlive (line 133) | func (stats *Stats) socketsAlive(delta int) { method socketRefs (line 141) | func (stats *Stats) socketRefs(delta int) {