Home | History | Annotate | Download | only in utils

Lines Matching refs:cookie

41 static void defaultPrintFunc(void* cookie, const char* txt)
163 void printTypeCode(uint32_t typeCode, debugPrintFunc func, void* cookie)
168 func ? (*func)(cookie, buffer) : defaultPrintFunc(cookie, buffer);
174 debugPrintFunc func, void* cookie)
188 if (singleLineBytesCutoff < 0) func(cookie, "\n");
189 func(cookie, "(NULL)");
194 if (singleLineBytesCutoff < 0) func(cookie, "\n");
195 func(cookie, "(empty)");
200 if (singleLineBytesCutoff < 0) func(cookie, "\n");
203 func(cookie, buf);
216 func(cookie, "{\n");
219 func(cookie, "\n");
302 if (newLine && indent) func(cookie, stringForIndent(indent));
304 func(cookie, buffer);
312 if (indent > 0) func(cookie, stringForIndent(indent-1));
313 func(cookie, "};");