Lines Matching refs:dst

14 func appendFields(dst []byte, fields map[string]interface{}) []byte {
21 dst = enc.AppendKey(dst, key)
27 dst = append(dst, e.buf...)
33 dst = enc.AppendString(dst, val)
35 dst = enc.AppendBytes(dst, val)
42 dst = append(dst, e.buf...)
46 dst = enc.AppendNil(dst)
48 dst = enc.AppendString(dst, m.Error())
51 dst = enc.AppendString(dst, m)
53 dst = enc.AppendInterface(dst, m)
56 dst = enc.AppendArrayStart(dst)
63 dst = append(dst, e.buf...)
67 dst = enc.AppendNil(dst)
69 dst = enc.AppendString(dst, m.Error())
72 dst = enc.AppendString(dst, m)
74 dst = enc.AppendInterface(dst, m)
78 enc.AppendArrayDelim(dst)
81 dst = enc.AppendArrayEnd(dst)
83 dst = enc.AppendBool(dst, val)
85 dst = enc.AppendInt(dst, val)
87 dst = enc.AppendInt8(dst, val)
89 dst = enc.AppendInt16(dst, val)
91 dst = enc.AppendInt32(dst, val)
93 dst = enc.AppendInt64(dst, val)
95 dst = enc.AppendUint(dst, val)
97 dst = enc.AppendUint8(dst, val)
99 dst = enc.AppendUint16(dst, val)
101 dst = enc.AppendUint32(dst, val)
103 dst = enc.AppendUint64(dst, val)
105 dst = enc.AppendFloat32(dst, val)
107 dst = enc.AppendFloat64(dst, val)
109 dst = enc.AppendTime(dst, val, TimeFieldFormat)
111 dst = enc.AppendDuration(dst, val, DurationFieldUnit, DurationFieldInteger)
114 dst = enc.AppendString(dst, *val)
116 dst = enc.AppendNil(dst)
120 dst = enc.AppendBool(dst, *val)
122 dst = enc.AppendNil(dst)
126 dst = enc.AppendInt(dst, *val)
128 dst = enc.AppendNil(dst)
132 dst = enc.AppendInt8(dst, *val)
134 dst = enc.AppendNil(dst)
138 dst = enc.AppendInt16(dst, *val)
140 dst = enc.AppendNil(dst)
144 dst = enc.AppendInt32(dst, *val)
146 dst = enc.AppendNil(dst)
150 dst = enc.AppendInt64(dst, *val)
152 dst = enc.AppendNil(dst)
156 dst = enc.AppendUint(dst, *val)
158 dst = enc.AppendNil(dst)
162 dst = enc.AppendUint8(dst, *val)
164 dst = enc.AppendNil(dst)
168 dst = enc.AppendUint16(dst, *val)
170 dst = enc.AppendNil(dst)
174 dst = enc.AppendUint32(dst, *val)
176 dst = enc.AppendNil(dst)
180 dst = enc.AppendUint64(dst, *val)
182 dst = enc.AppendNil(dst)
186 dst = enc.AppendFloat32(dst, *val)
188 dst = enc.AppendNil(dst)
192 dst = enc.AppendFloat64(dst, *val)
194 dst = enc.AppendNil(dst)
198 dst = enc.AppendTime(dst, *val, TimeFieldFormat)
200 dst = enc.AppendNil(dst)
204 dst = enc.AppendDuration(dst, *val, DurationFieldUnit, DurationFieldInteger)
206 dst = enc.AppendNil(dst)
209 dst = enc.AppendStrings(dst, val)
211 dst = enc.AppendBools(dst, val)
213 dst = enc.AppendInts(dst, val)
215 dst = enc.AppendInts8(dst, val)
217 dst = enc.AppendInts16(dst, val)
219 dst = enc.AppendInts32(dst, val)
221 dst = enc.AppendInts64(dst, val)
223 dst = enc.AppendUints(dst, val)
227 dst = enc.AppendUints16(dst, val)
229 dst = enc.AppendUints32(dst, val)
231 dst = enc.AppendUints64(dst, val)
233 dst = enc.AppendFloats32(dst, val)
235 dst = enc.AppendFloats64(dst, val)
237 dst = enc.AppendTimes(dst, val, TimeFieldFormat)
239 dst = enc.AppendDurations(dst, val, DurationFieldUnit, DurationFieldInteger)
241 dst = enc.AppendNil(dst)
243 dst = enc.AppendIPAddr(dst, val)
245 dst = enc.AppendIPPrefix(dst, val)
247 dst = enc.AppendMACAddr(dst, val)
249 dst = enc.AppendInterface(dst, val)
252 return dst