Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Side by Side Diff: include/log.h

Issue 5338008: flimflam: Enable -Wimplicit-function-declaration. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/flimflam.git@master
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * 2 *
3 * Connection Manager 3 * Connection Manager
4 * 4 *
5 * Copyright (C) 2007-2009 Intel Corporation. All rights reserved. 5 * Copyright (C) 2007-2009 Intel Corporation. All rights reserved.
6 * 6 *
7 * This program is free software; you can redistribute it and/or modify 7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as 8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation. 9 * published by the Free Software Foundation.
10 * 10 *
(...skipping 30 matching lines...) Expand all
41 void connman_error(const char *format, ...) 41 void connman_error(const char *format, ...)
42 __attribute__((format(printf, 1, 2))); 42 __attribute__((format(printf, 1, 2)));
43 void connman_debug(unsigned mask, const char *format, ...) 43 void connman_debug(unsigned mask, const char *format, ...)
44 __attribute__((format(printf, 2, 3))); 44 __attribute__((format(printf, 2, 3)));
45 45
46 void connman_vinfo(const char *format, va_list); 46 void connman_vinfo(const char *format, va_list);
47 void connman_vwarn(const char *format, va_list); 47 void connman_vwarn(const char *format, va_list);
48 void connman_verror(const char *format, va_list); 48 void connman_verror(const char *format, va_list);
49 void connman_vdebug(unsigned mask, const char *format, va_list); 49 void connman_vdebug(unsigned mask, const char *format, va_list);
50 50
51 unsigned __connman_debug_tags_to_mask(const char *tags, GError **error);
Jason Glasgow 2010/11/29 20:11:30 __ functions are private to the src directory. The
Elly Fong-Jones 2010/11/29 20:40:29 Done.
52 gboolean __connman_debug_set_tags(char *taglist);
53
51 /** 54 /**
52 * CONNMAN_ERROR 55 * CONNMAN_ERROR
53 * @fmt: format string 56 * @fmt: format string
54 * @arg...: list of arguments 57 * @arg...: list of arguments
55 * 58 *
56 * Simple macro around connman_error() which also include the function 59 * Simple macro around connman_error() which also include the function
57 * name it is called in. 60 * name it is called in.
58 */ 61 */
59 62
60 #define CONNMAN_ERROR(fmt, arg...) \ 63 #define CONNMAN_ERROR(fmt, arg...) \
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 DBG_PORTAL = 0x80000000 117 DBG_PORTAL = 0x80000000
115 /* nothing is available */ 118 /* nothing is available */
116 }; 119 };
117 #define DBG_ANY 0xffffffff 120 #define DBG_ANY 0xffffffff
118 121
119 #ifdef __cplusplus 122 #ifdef __cplusplus
120 } 123 }
121 #endif 124 #endif
122 125
123 #endif /* __CONNMAN_LOG_H */ 126 #endif /* __CONNMAN_LOG_H */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698