Lines Matching refs:dst

9 func appendFields(dst []byte, fields map[string]interface{}) []byte {
16 dst = enc.AppendKey(dst, key)
22 dst = append(dst, e.buf...)
28 dst = enc.AppendString(dst, val)
30 dst = enc.AppendBytes(dst, val)
38 dst = append(dst, e.buf...)
41 dst = enc.AppendString(dst, m.Error())
43 dst = enc.AppendString(dst, m)
45 dst = enc.AppendInterface(dst, m)
48 dst = enc.AppendArrayStart(dst)
56 dst = append(dst, e.buf...)
59 dst = enc.AppendString(dst, m.Error())
61 dst = enc.AppendString(dst, m)
63 dst = enc.AppendInterface(dst, m)
67 enc.AppendArrayDelim(dst)
70 dst = enc.AppendArrayEnd(dst)
72 dst = enc.AppendBool(dst, val)
74 dst = enc.AppendInt(dst, val)
76 dst = enc.AppendInt8(dst, val)
78 dst = enc.AppendInt16(dst, val)
80 dst = enc.AppendInt32(dst, val)
82 dst = enc.AppendInt64(dst, val)
84 dst = enc.AppendUint(dst, val)
86 dst = enc.AppendUint8(dst, val)
88 dst = enc.AppendUint16(dst, val)
90 dst = enc.AppendUint32(dst, val)
92 dst = enc.AppendUint64(dst, val)
94 dst = enc.AppendFloat32(dst, val)
96 dst = enc.AppendFloat64(dst, val)
98 dst = enc.AppendTime(dst, val, TimeFieldFormat)
100 dst = enc.AppendDuration(dst, val, DurationFieldUnit, DurationFieldInteger)
103 dst = enc.AppendString(dst, *val)
105 dst = enc.AppendNil(dst)
109 dst = enc.AppendBool(dst, *val)
111 dst = enc.AppendNil(dst)
115 dst = enc.AppendInt(dst, *val)
117 dst = enc.AppendNil(dst)
121 dst = enc.AppendInt8(dst, *val)
123 dst = enc.AppendNil(dst)
127 dst = enc.AppendInt16(dst, *val)
129 dst = enc.AppendNil(dst)
133 dst = enc.AppendInt32(dst, *val)
135 dst = enc.AppendNil(dst)
139 dst = enc.AppendInt64(dst, *val)
141 dst = enc.AppendNil(dst)
145 dst = enc.AppendUint(dst, *val)
147 dst = enc.AppendNil(dst)
151 dst = enc.AppendUint8(dst, *val)
153 dst = enc.AppendNil(dst)
157 dst = enc.AppendUint16(dst, *val)
159 dst = enc.AppendNil(dst)
163 dst = enc.AppendUint32(dst, *val)
165 dst = enc.AppendNil(dst)
169 dst = enc.AppendUint64(dst, *val)
171 dst = enc.AppendNil(dst)
175 dst = enc.AppendFloat32(dst, *val)
177 dst = enc.AppendNil(dst)
181 dst = enc.AppendFloat64(dst, *val)
183 dst = enc.AppendNil(dst)
187 dst = enc.AppendTime(dst, *val, TimeFieldFormat)
189 dst = enc.AppendNil(dst)
193 dst = enc.AppendDuration(dst, *val, DurationFieldUnit, DurationFieldInteger)
195 dst = enc.AppendNil(dst)
198 dst = enc.AppendStrings(dst, val)
200 dst = enc.AppendBools(dst, val)
202 dst = enc.AppendInts(dst, val)
204 dst = enc.AppendInts8(dst, val)
206 dst = enc.AppendInts16(dst, val)
208 dst = enc.AppendInts32(dst, val)
210 dst = enc.AppendInts64(dst, val)
212 dst = enc.AppendUints(dst, val)
216 dst = enc.AppendUints16(dst, val)
218 dst = enc.AppendUints32(dst, val)
220 dst = enc.AppendUints64(dst, val)
222 dst = enc.AppendFloats32(dst, val)
224 dst = enc.AppendFloats64(dst, val)
226 dst = enc.AppendTimes(dst, val, TimeFieldFormat)
228 dst = enc.AppendDurations(dst, val, DurationFieldUnit, DurationFieldInteger)
230 dst = enc.AppendNil(dst)
232 dst = enc.AppendIPAddr(dst, val)
234 dst = enc.AppendIPPrefix(dst, val)
236 dst = enc.AppendMACAddr(dst, val)
238 dst = enc.AppendInterface(dst, val)
241 return dst