| /frameworks/native/libs/binder/trusty/include/log/ |
| D | log.h | 41 #define ALOGD(fmt, ...) TLOGD(fmt "\n", ##__VA_ARGS__) argument 42 #define ALOGI(fmt, ...) TLOGI(fmt "\n", ##__VA_ARGS__) argument 43 #define ALOGW(fmt, ...) TLOGW(fmt "\n", ##__VA_ARGS__) argument 44 #define ALOGE(fmt, ...) TLOGE(fmt "\n", ##__VA_ARGS__) argument 46 #define ALOGD(fmt, ...) \ argument 50 #define ALOGI(fmt, ...) \ argument 54 #define ALOGW(fmt, ...) \ argument 58 #define ALOGE(fmt, ...) \ argument 66 #define ALOGV(fmt, ...) TLOGI(fmt "\n", ##__VA_ARGS__) argument 69 #define ALOGV(fmt, ...) \ argument [all …]
|
| /frameworks/native/libs/binder/trusty/include_mock/ |
| D | trusty_log.h | 22 #define TLOGD(fmt, ...) printf(fmt, ##__VA_ARGS__) argument 23 #define TLOGI(fmt, ...) printf(fmt, ##__VA_ARGS__) argument 24 #define TLOGW(fmt, ...) printf(fmt, ##__VA_ARGS__) argument 25 #define TLOGE(fmt, ...) printf(fmt, ##__VA_ARGS__) argument 26 #define TLOGC(fmt, ...) printf(fmt, ##__VA_ARGS__) argument
|
| /frameworks/libs/net/common/native/tcutils/ |
| D | logging.h | 28 static inline void ALOGE(const char *fmt...) { in ALOGE() 35 static inline void ALOGW(const char *fmt...) { in ALOGW() 42 static inline void ALOGI(const char *fmt...) { in ALOGI() 49 static inline void ALOGD(const char *fmt...) { in ALOGD()
|
| /frameworks/native/libs/gui/include/gui/ |
| D | TraceUtils.h | 24 #define ATRACE_FORMAT(fmt, ...) \ argument 30 #define ATRACE_FORMAT_INSTANT(fmt, ...) \ argument 33 #define ALOGE_AND_TRACE(fmt, ...) \ argument 48 static void atraceFormatBegin(const char* fmt, ...) { in atraceFormatBegin() 60 static void instantFormat(const char* fmt, ...) { in instantFormat()
|
| /frameworks/base/cmds/idmap2/libidmap2/ |
| D | Result.cpp | 26 Error::Error(const char* fmt, ...) { in Error() 34 Error::Error(const Error& parent, const char* fmt, ...) : msg_(parent.msg_) { in Error()
|
| D | RawPrintVisitor.cpp | 156 void RawPrintVisitor::print(uint8_t value, const char* fmt, ...) { in print() 169 void RawPrintVisitor::print(uint16_t value, const char* fmt, ...) { in print() 181 void RawPrintVisitor::print(uint32_t value, const char* fmt, ...) { in print() 193 void RawPrintVisitor::print(const std::string& value, bool print_value, const char* fmt, ...) { in print()
|
| /frameworks/base/tools/aapt/ |
| D | IndentPrinter.h | 20 void print(const char* fmt, ...) { in print() 28 void println(const char* fmt, ...) { in println()
|
| D | SourcePos.cpp | 114 SourcePos::error(const char* fmt, ...) const in error() argument 124 SourcePos::warning(const char* fmt, ...) const in warning() argument 134 SourcePos::printf(const char* fmt, ...) const in printf() argument
|
| /frameworks/av/media/libnblog/ |
| D | Writer.cpp | 88 void Writer::logf(const char *fmt, ...) in logf() 110 void Writer::logFormat(const char *fmt, log_hash_t hash, ...) in logFormat() 191 void Writer::logvf(const char *fmt, va_list ap) in logvf() 208 void Writer::logStart(const char *fmt) in logStart() 233 void Writer::logVFormat(const char *fmt, log_hash_t hash, va_list argp) in logVFormat()
|
| /frameworks/libs/net/common/netd/libnetdutils/include/netdutils/ |
| D | Log.h | 127 void log(const char* fmt, ...) __attribute__((__format__(__printf__, 2, 3))) { in log() 142 void info(const char* fmt, ...) __attribute__((__format__(__printf__, 2, 3))) { in info() 157 void warn(const char* fmt, ...) __attribute__((__format__(__printf__, 2, 3))) { in warn() 172 void error(const char* fmt, ...) __attribute__((__format__(__printf__, 2, 3))) { in error()
|
| /frameworks/native/services/inputflinger/reader/mapper/gestures/ |
| D | GesturesLogging.cpp | 29 void gestures_log(int verb, const char* fmt, ...) { in gestures_log()
|
| /frameworks/native/libs/binder/rust/sys/ |
| D | lib.rs | 27 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
|
| /frameworks/av/media/tests/benchmark/tests/ |
| D | MuxerTest.cpp | 34 static MUXER_OUTPUT_T getMuxerOutFormat(string fmt) { in getMuxerOutFormat() 59 string fmt = GetParam().second; in TEST_P() local
|
| /frameworks/av/services/camera/libcameraservice/device3/ |
| D | Camera3OfflineSession.cpp | 196 void Camera3OfflineSession::setErrorState(const char *fmt, ...) { in setErrorState() 209 void Camera3OfflineSession::setErrorStateLocked(const char *fmt, ...) { in setErrorStateLocked() 218 void Camera3OfflineSession::setErrorStateLockedV(const char *fmt, va_list args) { in setErrorStateLockedV()
|
| /frameworks/base/tools/validatekeymaps/ |
| D | Main.cpp | 51 static void log(const char* fmt, ...) { in log() 61 static void error(const char* fmt, ...) { in error()
|
| /frameworks/av/media/tests/benchmark/MediaBenchmarkTest/src/main/cpp/ |
| D | NativeMuxer.cpp | 44 const char *fmt = env->GetStringUTFChars(jFormat, nullptr); in Java_com_android_media_benchmark_library_Native_Mux() local 167 MUXER_OUTPUT_T getMuxerOutFormat(const char *fmt) { in getMuxerOutFormat()
|
| /frameworks/av/media/libstagefright/omx/ |
| D | OMXNodeInstance.cpp | 55 #define CLOGW(fmt, ...) ALOGW("[%p:%s] " fmt, mHandle, mName, ##__VA_ARGS__) argument 57 #define CLOG_ERROR_IF(cond, fn, err, fmt, ...) \ argument 60 #define CLOG_ERROR(fn, err, fmt, ...) CLOG_ERROR_IF(true, fn, err, fmt, ##__VA_ARGS__) argument 61 #define CLOG_IF_ERROR(fn, err, fmt, ...) \ argument 64 #define CLOGI_(level, fn, fmt, ...) \ argument 66 #define CLOGD_(level, fn, fmt, ...) \ argument 69 #define CLOG_LIFE(fn, fmt, ...) CLOGI_(ADebug::kDebugLifeCycle, fn, fmt, ##__VA_ARGS__) argument 70 #define CLOG_STATE(fn, fmt, ...) CLOGI_(ADebug::kDebugState, fn, fmt, ##__VA_ARGS__) argument 71 #define CLOG_CONFIG(fn, fmt, ...) CLOGI_(ADebug::kDebugConfig, fn, fmt, ##__VA_ARGS__) argument 72 #define CLOG_INTERNAL(fn, fmt, ...) CLOGD_(ADebug::kDebugInternalState, fn, fmt, ##__VA_ARGS__) argument [all …]
|
| /frameworks/wilhelm/src/desktop/ |
| D | SDL.cpp | 47 SDL_AudioSpec fmt; in SDL_open() local
|
| /frameworks/av/drm/libmediadrm/interface/mediadrm/ |
| D | DrmUtils.h | 85 static inline int formatBuffer(char *buf, size_t size, const char *fmt, First first, Args... args) { in formatBuffer() 90 void LogToBuffer(android_LogPriority level, const char *fmt, Args... args) { in LogToBuffer() 106 void LogToBuffer(android_LogPriority level, const uint8_t uuid[16], const char *fmt, Args... args) { in LogToBuffer()
|
| /frameworks/av/media/module/libmediatranscoding/ |
| D | TranscodingLogger.cpp | 78 static inline int32_t getInt32(AMediaFormat* fmt, const char* key, int32_t defaultValue = -1) { in getInt32() 88 static inline const char* getString(AMediaFormat* fmt, const char* key, in getString()
|
| /frameworks/base/core/jni/ |
| D | android_hardware_camera2_utils_SurfaceUtils.cpp | 99 int32_t fmt = 0; in SurfaceUtils_nativeDetectSurfaceType() local 117 int32_t fmt = 0; in SurfaceUtils_nativeDetectSurfaceDataspace() local
|
| /frameworks/native/vulkan/libvulkan/ |
| D | debug_report.h | 100 #define DEBUG_REPORT_LOGGER_PRINTF(fmt, args) \ argument 150 #define DEBUG_REPORT_LOGGER_VPRINTF(fmt) \ argument
|
| /frameworks/rs/cpu_ref/ |
| D | rsCpuCore.cpp | 561 FormatBuf fmt; in walk_1d_reduce() local 600 FormatBuf fmt; in walk_2d_reduce() local 635 FormatBuf fmt; in walk_3d_reduce() local 785 FormatBuf fmt; in launchReduceParallel() local 804 FormatBuf fmt; in launchReduceParallel() local 813 FormatBuf fmt; in launchReduceParallel() local
|
| /frameworks/libs/net/common/netd/libnetdutils/ |
| D | DumpWriter.cpp | 62 void DumpWriter::println(const char* fmt, ...) { in println()
|
| /frameworks/av/services/audioflinger/ |
| D | TypedLogger.h | 88 #define LOGT(fmt, ...) do { NBLog::Writer *x = tlNBLogWriter; if (x != nullptr) \ argument
|