• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2009 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 _ANDROID_CUTILS_LOGD_H
18 #define _ANDROID_CUTILS_LOGD_H
19 
20 /* the stable/frozen log-related definitions have been
21  * moved to this header, which is exposed by the NDK
22  */
23 #include <android/log.h>
24 
25 /* the rest is only used internally by the system */
26 #if !defined(_WIN32)
27 #include <pthread.h>
28 #endif
29 #include <stdarg.h>
30 #include <stdint.h>
31 #include <stdio.h>
32 #include <sys/types.h>
33 #include <time.h>
34 #include <unistd.h>
35 
36 #include <log/uio.h>
37 
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41 
42 int __android_log_bwrite(int32_t tag, const void *payload, size_t len);
43 int __android_log_btwrite(int32_t tag, char type, const void *payload,
44     size_t len);
45 int __android_log_bswrite(int32_t tag, const char *payload);
46 
47 #ifdef __cplusplus
48 }
49 #endif
50 
51 #endif /* _LOGD_H */
52