summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Salyzyn2016-12-21 17:34:41 -0600
committerMark Salyzyn2017-01-25 17:41:43 -0600
commit3cdbdd522fbbb2611713805c72c6d741a91bcfd5 (patch)
tree7eb1c360523d0fd9199218d1db362c954eba8d9e /liblog/include/log/log_id.h
parent5c967da341c9395a4c378c149f326505224ec66e (diff)
downloadplatform-system-core-3cdbdd522fbbb2611713805c72c6d741a91bcfd5.tar.gz
platform-system-core-3cdbdd522fbbb2611713805c72c6d741a91bcfd5.tar.xz
platform-system-core-3cdbdd522fbbb2611713805c72c6d741a91bcfd5.zip
liblog: add log/log_id.h
Move common log_id_t and simple internal support function definitions that use it from log/log.h to log/log_id.h. log_id_t __android_log_buf_write __android_log_buf_print android_name_to_log_id android_log_id_to_name Test: gTest liblog-unit-tests --gtest_filter=\ liblog.log_id:\ liblog.__android_log_buf_print:\ liblog.__android_log_buf_write:\ liblog.__android_log_buf_print__concurrent64 Bug: 34250038 Change-Id: Iad3704cc72943a3094e1193a6d032c7f29a6cd5c
Diffstat (limited to 'liblog/include/log/log_id.h')
-rw-r--r--liblog/include/log/log_id.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/liblog/include/log/log_id.h b/liblog/include/log/log_id.h
new file mode 100644
index 000000000..3078e4eb1
--- /dev/null
+++ b/liblog/include/log/log_id.h
@@ -0,0 +1,63 @@
1/*
2 * Copyright (C) 2005-2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _LIBS_LOG_LOG_ID_H
18#define _LIBS_LOG_LOG_ID_H
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24#ifndef log_id_t_defined
25#define log_id_t_defined
26typedef enum log_id {
27 LOG_ID_MIN = 0,
28
29 LOG_ID_MAIN = 0,
30 LOG_ID_RADIO = 1,
31 LOG_ID_EVENTS = 2,
32 LOG_ID_SYSTEM = 3,
33 LOG_ID_CRASH = 4,
34 LOG_ID_SECURITY = 5,
35 LOG_ID_KERNEL = 6, /* place last, third-parties can not use it */
36
37 LOG_ID_MAX
38} log_id_t;
39#endif
40#define sizeof_log_id_t sizeof(typeof_log_id_t)
41#define typeof_log_id_t unsigned char
42
43/*
44 * Send a simple string to the log.
45 */
46int __android_log_buf_write(int bufID, int prio, const char* tag, const char* text);
47int __android_log_buf_print(int bufID, int prio, const char* tag, const char* fmt, ...)
48#if defined(__GNUC__)
49 __attribute__((__format__(printf, 4, 5)))
50#endif
51 ;
52
53/*
54 * log_id_t helpers
55 */
56log_id_t android_name_to_log_id(const char* logName);
57const char* android_log_id_to_name(log_id_t log_id);
58
59#ifdef __cplusplus
60}
61#endif
62
63#endif /* _LIBS_LOG_LOG_ID_H */