media/omx-plugin/include/gb/cutils/logd.h

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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  */
    17 #ifndef _ANDROID_CUTILS_LOGD_H
    18 #define _ANDROID_CUTILS_LOGD_H
    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>
    25 /* the rest is only used internally by the system */
    26 #include <time.h>
    27 #include <stdio.h>
    28 #include <unistd.h>
    29 #include <stdint.h>
    30 #include <sys/types.h>
    31 #ifdef HAVE_PTHREADS
    32 #include <pthread.h>
    33 #endif
    34 #include <cutils/uio.h>
    35 #include <stdarg.h>
    37 #ifdef __cplusplus
    38 extern "C" {
    39 #endif
    41 int __android_log_bwrite(int32_t tag, const void *payload, size_t len);
    42 int __android_log_btwrite(int32_t tag, char type, const void *payload,
    43     size_t len);
    45 #ifdef __cplusplus
    46 }
    47 #endif
    49 #endif /* _LOGD_H */

mercurial