Home
last modified time | relevance | path

Searched refs:logat (Results 1 – 4 of 4) sorted by relevance

/external/tlsdate/src/
Dutil-plan9.h25 extern void logat(int isverbose, const char *fmt, ...);
27 #define info(fmt, ...) logat(1, fmt, ## __VA_ARGS__)
28 #define pinfo(fmt, ...) logat(1, fmt ": %s", ## __VA_ARGS__, strerror(errno))
29 #define error(fmt, ...) logat(0, fmt, ## __VA_ARGS__)
30 #define perror(fmt, ...) logat(0, fmt ": %s", ## __VA_ARGS__, strerror(errno))
31 #define fatal(fmt, ...) do { logat(0, fmt, ## __VA_ARGS__); exit(1); } while (0)
33 logat(0, fmt ": %s", ## __VA_ARGS__, strerror(errno)); \
Dutil.h47 extern void logat (int isverbose, const char *fmt, ...);
50 #define debug(fmt, ...) if (verbose_debug) logat(1, fmt, ## __VA_ARGS__)
51 #define info(fmt, ...) logat(0, fmt, ## __VA_ARGS__)
52 #define pinfo(fmt, ...) logat(1, fmt ": %s", ## __VA_ARGS__, strerror(errno))
53 #define error(fmt, ...) logat(0, fmt, ## __VA_ARGS__)
54 #define perror(fmt, ...) logat(0, fmt ": %s", ## __VA_ARGS__, strerror(errno))
55 #define fatal(fmt, ...) do { logat(0, fmt, ## __VA_ARGS__); exit(1); } while (0)
57 logat(0, fmt ": %s", ## __VA_ARGS__, strerror(errno)); \
Dutil-plan9.c47 void API logat(int isverbose, const char *fmt, ...) in logat() function
Dutil.c101 void API logat (int isverbose, const char *fmt, ...) in logat() function