/bionic/libc/upstream-openbsd/lib/libc/gen/ |
warnx.c | 35 warnx(const char *fmt, ...) 39 va_start(ap, fmt); 40 vwarnx(fmt, ap);
|
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
vprintf.c | 53 vprintf(char const *fmt, va_list ap)
55 _DIAGASSERT(fmt != NULL);
57 return (vfprintf(stdout, fmt, ap));
|
/external/clang/test/CodeGenCXX/ |
mangle-valist.cpp | 4 void test1(const char *fmt, va_list ap) { 10 void test2(const char *fmt, va_list ap); 13 void Test2::test2(const char *fmt, va_list ap) {
|
/external/openssh/ |
fatal.c | 37 fatal(const char *fmt,...) 41 va_start(args, fmt); 42 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
|
/external/strace/tests/ |
error_msg.c | 36 perror_msg_and_fail(const char *fmt, ...) 41 va_start(p, fmt); 42 vfprintf(stderr, fmt, p); 51 error_msg_and_fail(const char *fmt, ...) 55 va_start(p, fmt); 56 vfprintf(stderr, fmt, p); 62 error_msg_and_skip(const char *fmt, ...) 66 va_start(p, fmt); 67 vfprintf(stderr, fmt, p); 73 perror_msg_and_skip(const char *fmt, ... [all...] |
/external/strace/tests-m32/ |
error_msg.c | 36 perror_msg_and_fail(const char *fmt, ...) 41 va_start(p, fmt); 42 vfprintf(stderr, fmt, p); 51 error_msg_and_fail(const char *fmt, ...) 55 va_start(p, fmt); 56 vfprintf(stderr, fmt, p); 62 error_msg_and_skip(const char *fmt, ...) 66 va_start(p, fmt); 67 vfprintf(stderr, fmt, p); 73 perror_msg_and_skip(const char *fmt, ... [all...] |
/external/strace/tests-mx32/ |
error_msg.c | 36 perror_msg_and_fail(const char *fmt, ...) 41 va_start(p, fmt); 42 vfprintf(stderr, fmt, p); 51 error_msg_and_fail(const char *fmt, ...) 55 va_start(p, fmt); 56 vfprintf(stderr, fmt, p); 62 error_msg_and_skip(const char *fmt, ...) 66 va_start(p, fmt); 67 vfprintf(stderr, fmt, p); 73 perror_msg_and_skip(const char *fmt, ... [all...] |
/system/extras/perfprofd/ |
perfprofdutils.h | 27 extern void perfprofd_log_error(const char *fmt, ...); 28 extern void perfprofd_log_warning(const char *fmt, ...); 29 extern void perfprofd_log_info(const char *fmt, ...);
|
/toolchain/binutils/binutils-2.25/libiberty/ |
asprintf.c | 47 asprintf (char **buf, const char *fmt, ...) 51 va_start (ap, fmt); 52 status = vasprintf (buf, fmt, ap);
|
/external/mesa3d/src/intel/vulkan/ |
anv_formats.c | 52 #define fmt(__vk_fmt, __hw_fmt) \ macro 61 fmt(VK_FORMAT_UNDEFINED, ISL_FORMAT_UNSUPPORTED), 62 fmt(VK_FORMAT_R4G4_UNORM_PACK8, ISL_FORMAT_UNSUPPORTED), 63 fmt(VK_FORMAT_R4G4B4A4_UNORM_PACK16, ISL_FORMAT_A4B4G4R4_UNORM), 65 fmt(VK_FORMAT_R5G6B5_UNORM_PACK16, ISL_FORMAT_B5G6R5_UNORM), 67 fmt(VK_FORMAT_R5G5B5A1_UNORM_PACK16, ISL_FORMAT_A1B5G5R5_UNORM), 68 fmt(VK_FORMAT_B5G5R5A1_UNORM_PACK16, ISL_FORMAT_UNSUPPORTED), 69 fmt(VK_FORMAT_A1R5G5B5_UNORM_PACK16, ISL_FORMAT_B5G5R5A1_UNORM), 70 fmt(VK_FORMAT_R8_UNORM, ISL_FORMAT_R8_UNORM), 71 fmt(VK_FORMAT_R8_SNORM, ISL_FORMAT_R8_SNORM) 250 #undef fmt macro [all...] |
/device/linaro/hikey/gralloc/ |
alloc_device.h | 22 #define AWAR(fmt, args...) __android_log_print(ANDROID_LOG_WARN, "[Gralloc-Warning]", "%s:%d " fmt,__func__,__LINE__,args) 25 #define AINF(fmt, args...) __android_log_print(ANDROID_LOG_INFO, "[Gralloc]", fmt,args) 28 #define AERR(fmt, args...) __android_log_print(ANDROID_LOG_ERROR, "[Gralloc-ERROR]", "%s:%d " fmt,__func__,__LINE__,args) 31 #define AERR_IF( eq, fmt, args...) if ( (eq) ) AERR( fmt, args )
|
/device/linaro/hikey/gralloc960/ |
alloc_device.h | 22 #define AWAR(fmt, args...) __android_log_print(ANDROID_LOG_WARN, "[Gralloc-Warning]", "%s:%d " fmt,__func__,__LINE__,##args) 25 #define AINF(fmt, args...) __android_log_print(ANDROID_LOG_INFO, "[Gralloc]", fmt,##args) 28 #define AERR(fmt, args...) __android_log_print(ANDROID_LOG_ERROR, "[Gralloc-ERROR]", "%s:%d " fmt,__func__,__LINE__,##args) 31 #define AERR_IF( eq, fmt, args...) if ( (eq) ) AERR( fmt, args )
|
/external/android-clat/ |
logging.h | 24 void logmsg(int prio, const char *fmt, ...); 25 void logmsg_dbg(int prio, const char *fmt, ...);
|
/hardware/invensense/6515/libsensors_iio/software/core/driver/include/ |
log.h | 142 #define MPL_LOGV(fmt, ...) \ 146 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\ 152 #define MPL_LOGV(fmt, ...) \ 155 MPL_LOG(MPL_LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\ 158 #define MPL_LOGV(fmt, ...) \ 161 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\ 168 #define MPL_LOGV(fmt, ...) MPL_LOG(MPL_LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__) 170 #define MPL_LOGV(fmt, ...) MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__ [all...] |
/prebuilts/ndk/r11/sources/android/support/src/musl-stdio/ |
vprintf.c | 3 int vprintf(const char *restrict fmt, va_list ap) 5 return vfprintf(stdout, fmt, ap);
|
vwprintf.c | 4 int vwprintf(const wchar_t *restrict fmt, va_list ap) 6 return vfwprintf(stdout, fmt, ap);
|
/prebuilts/ndk/r13/sources/android/support/src/musl-stdio/ |
vprintf.c | 3 int vprintf(const char *restrict fmt, va_list ap) 5 return vfprintf(stdout, fmt, ap);
|
vwprintf.c | 4 int vwprintf(const wchar_t *restrict fmt, va_list ap) 6 return vfwprintf(stdout, fmt, ap);
|
/system/keymaster/include/keymaster/ |
logger.h | 37 virtual int log_msg(LogLevel level, const char* fmt, va_list args) const = 0; 39 static int Log(LogLevel level, const char* fmt, va_list args); 40 static int Log(LogLevel level, const char* fmt, ...); 41 static int Debug(const char* fmt, ...); 42 static int Info(const char* fmt, ...); 43 static int Warning(const char* fmt, ...); 44 static int Error(const char* fmt, ...); 45 static int Severe(const char* fmt, ...); 62 #define LOG_D(fmt, ...) Logger::Debug(FILE_LINE fmt, __VA_ARGS__ [all...] |
/external/autotest/client/tests/monotonic_time/src/ |
logging.h | 18 void msg(enum msg_type, int data, const char *fmt, ...); 20 #define DEBUG(level, fmt, args...) msg(MSG_DEBUG, level, fmt, ##args) 21 #define INFO(fmt, args...) msg(MSG_INFO, 0, fmt, ##args) 22 #define WARN(err, fmt, args...) msg(MSG_WARN, err, fmt, ##args) 23 #define ERROR(err, fmt, args...) msg(MSG_ERROR, err, fmt, ##args) 24 #define FATAL(err, fmt, args...) msg(MSG_FATAL, err, fmt, ##args [all...] |
/device/huawei/angler/camera/QCamera2/stack/mm-camera-interface/inc/ |
mm_camera_dbg.h | 52 #define CDBG(fmt, args...) do{}while(0) 53 #define CDBG_ERROR(fmt, args...) ALOGE(fmt, ##args) 61 #define CDBG(fmt, args...) ALOGD_IF(gMmCameraIntfLogLevel >= 2, fmt, ##args) 64 #define CDBG(fmt, args...) fprintf(stderr, fmt, ##args) 65 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args) 70 #define CDBG_HIGH(fmt, args...) ALOGD_IF(gMmCameraIntfLogLevel >= 1, fmt, ##args [all...] |
/device/huawei/angler/camera/QCamera2/stack/mm-camera-test/inc/ |
mm_qcamera_dbg.h | 47 #define CDBG(fmt, args...) do{}while(0) 48 #define CDBG_ERROR(fmt, args...) ALOGE(fmt, ##args) 56 #define CDBG(fmt, args...) ALOGE(fmt, ##args) 59 #define CDBG(fmt, args...) fprintf(stderr, fmt, ##args) 60 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args) 65 #define CDBG_HIGH(fmt, args...) ALOGE(fmt, ##args [all...] |
/device/lge/bullhead/camera/QCamera2/stack/mm-camera-interface/inc/ |
mm_camera_dbg.h | 52 #define CDBG(fmt, args...) do{}while(0) 53 #define CDBG_ERROR(fmt, args...) ALOGE(fmt, ##args) 61 #define CDBG(fmt, args...) ALOGD_IF(gMmCameraIntfLogLevel >= 2, fmt, ##args) 64 #define CDBG(fmt, args...) fprintf(stderr, fmt, ##args) 65 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args) 70 #define CDBG_HIGH(fmt, args...) ALOGD_IF(gMmCameraIntfLogLevel >= 1, fmt, ##args [all...] |
/device/lge/bullhead/camera/QCamera2/stack/mm-camera-test/inc/ |
mm_qcamera_dbg.h | 47 #define CDBG(fmt, args...) do{}while(0) 48 #define CDBG_ERROR(fmt, args...) ALOGE(fmt, ##args) 56 #define CDBG(fmt, args...) ALOGE(fmt, ##args) 59 #define CDBG(fmt, args...) fprintf(stderr, fmt, ##args) 60 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args) 65 #define CDBG_HIGH(fmt, args...) ALOGE(fmt, ##args [all...] |
/hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/inc/ |
IPACM_Log.h | 70 #define IPACMDBG_DMESG(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ 71 snprintf(buffer_send,MAX_BUF_LEN,"%s:%d %s: " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__);\ 73 printf("%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__); \ 78 #define PERROR(fmt) memset(buffer_send, 0, MAX_BUF_LEN);\ 81 perror(fmt); 82 #define IPACMERR(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ 83 snprintf(buffer_send,MAX_BUF_LEN,"ERROR: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__);\ 85 printf("ERROR: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__); 86 #define IPACMDBG_H(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ 87 snprintf(buffer_send,MAX_BUF_LEN,"%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__); [all...] |