Searched refs:ALOG (Results 1 – 5 of 5) sorted by relevance
/external/conscrypt/common/src/jni/main/include/conscrypt/ |
D | logging.h | 28 #define CONSCRYPT_LOG(priority, tag, ...) ALOG(priority, tag, __VA_ARGS__) 29 #define CONSCRYPT_LOG_ERROR(...) ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__) 30 #define CONSCRYPT_LOG_INFO(...) ALOG(LOG_INFO, LOG_TAG, __VA_ARGS__) 34 #define CONSCRYPT_LOG_VERBOSE(...) ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__) 40 #ifndef ALOG 41 #define ALOG(priority, tag, ...) __android_log_print(ANDROID_##priority, tag, __VA_ARGS__) macro 44 #define CONSCRYPT_LOG(priority, tag, ...) ALOG(priority, tag, __VA_ARGS__) 45 #define CONSCRYPT_LOG_ERROR(...) ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__) 46 #define CONSCRYPT_LOG_INFO(...) ALOG(LOG_INFO, LOG_TAG, __VA_ARGS__) 50 #define CONSCRYPT_LOG_VERBOSE(...) ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)
|
/external/libese/libese/include/ese/ |
D | log.h | 45 #define __ALOGV(...) ((void)ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) 54 #define ALOGD(...) ((void)ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)) 58 #define ALOGI(...) ((void)ALOG(LOG_INFO, LOG_TAG, __VA_ARGS__)) 62 #define ALOGW(...) ((void)ALOG(LOG_WARN, LOG_TAG, __VA_ARGS__)) 66 #define ALOGE(...) ((void)ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__)) 72 #define ALOG(priority, tag, format, ...) \ macro 75 ALOG(LOG_ERROR, LOG_TAG, format, ##__VA_ARGS__); \ 80 #define ALOG(...) {} macro
|
/external/pdfium/fxbarcode/datamatrix/ |
D | BC_ErrorCorrection.cpp | 107 int32_t CBC_ErrorCorrection::ALOG[256] = {0}; member in CBC_ErrorCorrection 111 ALOG[i] = p; in Initialize() 193 ALOG[(LOG[m] + LOG[FACTORS[table][k]]) % 255]); in createECCBlock() 199 ecc[0] = (uint16_t)ALOG[(LOG[m] + LOG[FACTORS[table][0]]) % 255]; in createECCBlock()
|
D | BC_ErrorCorrection.h | 28 static int32_t ALOG[256]; variable
|
/external/sqlite/android/ |
D | sqlite3_android.cpp | 152 ALOG(LOG_INFO, tag, "%s", msg); in android_log()
|