Lines Matching refs:dst

15 func appendFields(dst []byte, fields interface{}) []byte {
21 dst = appendFieldList(dst, fields)
31 dst = appendFieldList(dst, kv)
34 return dst
37 func appendFieldList(dst []byte, kvList []interface{}) []byte {
41 dst = enc.AppendKey(dst, key)
49 dst = append(dst, e.buf...)
55 dst = enc.AppendString(dst, val)
57 dst = enc.AppendBytes(dst, val)
64 dst = append(dst, e.buf...)
68 dst = enc.AppendNil(dst)
70 dst = enc.AppendString(dst, m.Error())
73 dst = enc.AppendString(dst, m)
75 dst = enc.AppendInterface(dst, m)
78 dst = enc.AppendArrayStart(dst)
85 dst = append(dst, e.buf...)
89 dst = enc.AppendNil(dst)
91 dst = enc.AppendString(dst, m.Error())
94 dst = enc.AppendString(dst, m)
96 dst = enc.AppendInterface(dst, m)
100 enc.AppendArrayDelim(dst)
103 dst = enc.AppendArrayEnd(dst)
105 dst = enc.AppendBool(dst, val)
107 dst = enc.AppendInt(dst, val)
109 dst = enc.AppendInt8(dst, val)
111 dst = enc.AppendInt16(dst, val)
113 dst = enc.AppendInt32(dst, val)
115 dst = enc.AppendInt64(dst, val)
117 dst = enc.AppendUint(dst, val)
119 dst = enc.AppendUint8(dst, val)
121 dst = enc.AppendUint16(dst, val)
123 dst = enc.AppendUint32(dst, val)
125 dst = enc.AppendUint64(dst, val)
127 dst = enc.AppendFloat32(dst, val)
129 dst = enc.AppendFloat64(dst, val)
131 dst = enc.AppendTime(dst, val, TimeFieldFormat)
133 dst = enc.AppendDuration(dst, val, DurationFieldUnit, DurationFieldInteger)
136 dst = enc.AppendString(dst, *val)
138 dst = enc.AppendNil(dst)
142 dst = enc.AppendBool(dst, *val)
144 dst = enc.AppendNil(dst)
148 dst = enc.AppendInt(dst, *val)
150 dst = enc.AppendNil(dst)
154 dst = enc.AppendInt8(dst, *val)
156 dst = enc.AppendNil(dst)
160 dst = enc.AppendInt16(dst, *val)
162 dst = enc.AppendNil(dst)
166 dst = enc.AppendInt32(dst, *val)
168 dst = enc.AppendNil(dst)
172 dst = enc.AppendInt64(dst, *val)
174 dst = enc.AppendNil(dst)
178 dst = enc.AppendUint(dst, *val)
180 dst = enc.AppendNil(dst)
184 dst = enc.AppendUint8(dst, *val)
186 dst = enc.AppendNil(dst)
190 dst = enc.AppendUint16(dst, *val)
192 dst = enc.AppendNil(dst)
196 dst = enc.AppendUint32(dst, *val)
198 dst = enc.AppendNil(dst)
202 dst = enc.AppendUint64(dst, *val)
204 dst = enc.AppendNil(dst)
208 dst = enc.AppendFloat32(dst, *val)
210 dst = enc.AppendNil(dst)
214 dst = enc.AppendFloat64(dst, *val)
216 dst = enc.AppendNil(dst)
220 dst = enc.AppendTime(dst, *val, TimeFieldFormat)
222 dst = enc.AppendNil(dst)
226 dst = enc.AppendDuration(dst, *val, DurationFieldUnit, DurationFieldInteger)
228 dst = enc.AppendNil(dst)
231 dst = enc.AppendStrings(dst, val)
233 dst = enc.AppendBools(dst, val)
235 dst = enc.AppendInts(dst, val)
237 dst = enc.AppendInts8(dst, val)
239 dst = enc.AppendInts16(dst, val)
241 dst = enc.AppendInts32(dst, val)
243 dst = enc.AppendInts64(dst, val)
245 dst = enc.AppendUints(dst, val)
249 dst = enc.AppendUints16(dst, val)
251 dst = enc.AppendUints32(dst, val)
253 dst = enc.AppendUints64(dst, val)
255 dst = enc.AppendFloats32(dst, val)
257 dst = enc.AppendFloats64(dst, val)
259 dst = enc.AppendTimes(dst, val, TimeFieldFormat)
261 dst = enc.AppendDurations(dst, val, DurationFieldUnit, DurationFieldInteger)
263 dst = enc.AppendNil(dst)
265 dst = enc.AppendIPAddr(dst, val)
267 dst = enc.AppendIPPrefix(dst, val)
269 dst = enc.AppendMACAddr(dst, val)
271 dst = appendJSON(dst, val)
273 dst = enc.AppendInterface(dst, val)
276 return dst