OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:logat
(Results
1 - 4
of
4
) sorted by null
/external/tlsdate/src/
util-plan9.h
25
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)); \
util.h
47
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)); \
util-plan9.c
47
void API
logat
(int isverbose, const char *fmt, ...)
function
util.c
101
void API
logat
(int isverbose, const char *fmt, ...)
function
Completed in 64 milliseconds