Home
last modified time | relevance | path

Searched defs:tag (Results 1 – 25 of 57) sorted by relevance

123

/device/generic/goldfish-opengl/android-emu/android/utils/
Ddebug.h86 #define VERBOSE_ENABLE(tag) \ argument
89 #define VERBOSE_DISABLE(tag) \ argument
92 #define VERBOSE_CHECK(tag) \ argument
98 #define VERBOSE_PRINT(tag,...) \ argument
102 #define VERBOSE_DPRINT(tag,format,...) \ argument
107 #define VERBOSE_FUNCTION_PRINT(tag,format,...) \ argument
113 #define VERBOSE_FUNCTION_DPRINT(tag,format,...) \ argument
118 #define VERBOSE_TID_PRINT(tag,...) \ argument
124 #define VERBOSE_TID_DPRINT(tag,...) \ argument
129 #define VERBOSE_TID_FUNCTION_PRINT(tag,...) \ argument
[all …]
/device/generic/vulkan-cereal/fake-android-guest/log/
Dlog_main.h60 #define android_writeLog(prio, tag, text) __android_log_write(prio, tag, text) argument
62 #define android_printLog(prio, tag, ...) \ argument
65 #define android_vprintLog(prio, cond, tag, ...) \ argument
72 #define LOG_PRI(priority, tag, ...) android_printLog(priority, tag, __VA_ARGS__) argument
79 #define LOG_PRI_VA(priority, tag, fmt, args) \ argument
100 #define android_printAssert(cond, tag, ...) \ argument
308 #define ALOG(priority, tag, ...) LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__) argument
315 #define IF_ALOG(priority, tag) if (android_testLog(ANDROID_##priority, tag)) argument
358 #define android_testLog(prio, tag) \ argument
362 #define android_testLog(prio, tag) \ argument
[all …]
Dlog_safetynet.h31 #define android_errorWriteLog(tag, subTag) \ argument
34 #define android_errorWriteWithInfoLog(tag, subTag, uid, data, dataLen) \ argument
Dlog.h102 #define android_bWriteLog(tag, payload, len) \ argument
104 #define android_btWriteLog(tag, type, payload, len) \ argument
/device/linaro/hikey/hifi/xaf/host-apf/include/
Dxf-debug.h70 #define __xf_stub(tag, line) __xf_stub2(tag, line) argument
71 #define __xf_stub2(tag, line) typedef int __xf_##tag##_##line argument
93 #define TRACE_TAG(tag, on) enum { __xf_trace_##tag = on } argument
96 #define TRACE_CFG(tag) (__xf_trace_##tag) argument
99 #define TRACE(tag, fmt, ...) (void)(__xf_trace_##tag ? __xf_trace(tag, __xf_format##fmt,… argument
106 #define __xf_trace(tag, fmt, ...) \ argument
134 #define TRACE_TAG(tag, on) __xf_stub(trace_##tag, __LINE__) argument
135 #define TRACE(tag, fmt, ...) (void)0 argument
136 #define __xf_trace(tag, fmt, ...) (void)0 argument
/device/google/contexthub/firmware/os/algos/calibration/util/
Dcal_log.h30 # define CAL_DEBUG_LOG(tag, fmt, ...) \ argument
37 # define LOGD_TAG(tag, fmt, ...) \ argument
39 # define CAL_DEBUG_LOG(tag, fmt, ...) \ argument
43 # define CAL_DEBUG_LOG(tag, fmt, ...) \ argument
47 # define CAL_DEBUG_LOG(tag, format, ...) \ argument
55 # define CAL_DEBUG_LOG(tag, format, ...) \ argument
/device/linaro/hikey/hifi/xaf/hifi-dpf/include/
Dxf-debug.h91 #define __xf_stub(tag, line) __xf_stub2(tag, line) argument
92 #define __xf_stub2(tag, line) typedef int __xf_##tag##_##line argument
115 #define TRACE_TAG(tag, on) enum { __xf_trace_##tag = on } argument
118 #define TRACE_CFG(tag) (__xf_trace_##tag) argument
121 #define TRACE(tag, fmt, ...) (void)(__xf_trace_##tag ? __xf_trace(tag, __xf_format##fmt,… argument
128 #define __xf_trace(tag, fmt, ...) \ argument
156 #define TRACE_TAG(tag, on) __xf_stub(trace_##tag, __LINE__) argument
157 #define TRACE_CFG(tag) 0 argument
158 #define TRACE(tag, fmt, ...) (void)0 argument
159 #define __xf_trace(tag, fmt, ...) (void)0 argument
/device/generic/vulkan-cereal/fake-android-guest/cutils/
Dtrace.h170 static inline uint64_t atrace_is_tag_enabled(uint64_t tag) in atrace_is_tag_enabled()
180 static inline void atrace_begin(uint64_t tag, const char* name) in atrace_begin()
193 static inline void atrace_end(uint64_t tag) in atrace_end()
210 static inline void atrace_async_begin(uint64_t tag, const char* name, in atrace_async_begin()
224 static inline void atrace_async_end(uint64_t tag, const char* name, int32_t cookie) in atrace_async_end()
237 static inline void atrace_int(uint64_t tag, const char* name, int32_t value) in atrace_int()
250 static inline void atrace_int64(uint64_t tag, const char* name, int64_t value) in atrace_int64()
/device/google/contexthub/firmware/os/algos/calibration/nano_calibration/
Dnano_calibration.cc60 #define NANO_CAL_LOGD(tag, format, ...) \ argument
62 #define NANO_CAL_LOGW(tag, format, ...) \ argument
64 #define NANO_CAL_LOGE(tag, format, ...) \ argument
67 #define NANO_CAL_LOGD(tag, format, ...) techeng_log_null(format, ##__VA_ARGS__) argument
68 #define NANO_CAL_LOGW(tag, format, ...) techeng_log_null(format, ##__VA_ARGS__) argument
69 #define NANO_CAL_LOGE(tag, format, ...) techeng_log_null(format, ##__VA_ARGS__) argument
74 #define NANO_CAL_LOGI(tag, format, ...) \ argument
/device/generic/vulkan-cereal/fake-android-guest/androidImpl/
DLog.cpp25 EXPORT int __android_log_print(int prio, const char* tag, const char* fmt, ...) { in __android_log_print()
34 EXPORT void __android_log_assert(const char* cond, const char* tag, const char* fmt, ...) { in __android_log_assert()
39 int tag, const char* subTag, int32_t uid, in __android_log_error_write()
/device/generic/goldfish/camera/
DExif.cpp61 static void removeExistingEntry(ExifData* exifData, ExifIfd ifd, int tag) { in removeExistingEntry()
69 static ExifEntry* allocateEntry(int tag, in allocateEntry()
91 int tag, in createEntry()
116 int tag, in createEntry()
128 int tag, in createEntry()
145 int tag, in createEntry()
165 int tag) { in createEntry()
179 int tag, in createEntry()
196 int tag, in createEntry()
DEmulatedCamera2.cpp187 const char* EmulatedCamera2::getVendorSectionName(uint32_t tag) { in getVendorSectionName()
191 const char* EmulatedCamera2::getVendorTagName(uint32_t tag) { in getVendorTagName()
195 int EmulatedCamera2::getVendorTagType(uint32_t tag) { in getVendorTagType()
344 uint32_t tag) { in get_camera_vendor_section_name()
351 uint32_t tag) { in get_camera_vendor_tag_name()
358 uint32_t tag) { in get_camera_vendor_tag_type()
/device/generic/goldfish-opengl/fuchsia/include/cutils/
Dlog.h20 #define android_printLog(prio, tag, format, ...) \ argument
23 #define LOG_PRI(priority, tag, ...) android_printLog(priority, tag, __VA_ARGS__) argument
24 #define ALOG(priority, tag, ...) LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__) argument
29 #define android_printAssert(condition, tag, format, ...) \ argument
/device/generic/vulkan-cereal/protocols/vulkan/xml/
DindexExt.py14 def listExts(vendor, ext, tag): argument
52 tag = {} variable
/device/generic/goldfish-opengl/android-emu/android/base/
DTracing.h71 #define AEMU_SCOPED_TRACE(tag) __attribute__ ((unused)) android::base::ScopedTrace AEMU_GENSYM(aemu… argument
73 #define AEMU_SCOPED_TRACE(tag) __attribute__ ((unused)) android::base::ScopedTraceGuest AEMU_GENSYM… argument
/device/generic/goldfish-opengl/fuchsia/
Dport.cc26 int __android_log_print(int priority, const char* tag, const char* file, in __android_log_print()
56 void __android_log_assert(const char* condition, const char* tag, in __android_log_assert()
/device/generic/vulkan-cereal/protocols/vulkan/
DcheckLinks.py75 def checkTag(tag, value, dict, dictName, tagName): argument
82 def foundError(errType, tag, value): argument
/device/generic/vulkan-cereal/third-party/perfetto/include/perfetto/ext/base/
Dmetatrace.h90 inline bool IsEnabled(uint32_t tag) { in IsEnabled()
264 inline void TraceCounter(uint32_t tag, uint16_t id, int32_t value) { in TraceCounter()
280 ScopedEvent(uint32_t tag, uint16_t event_id) { in ScopedEvent()
/device/generic/goldfish-opengl/fuchsia/include/hardware/
Dhardware.h18 uint32_t tag; member
34 uint32_t tag; member
/device/generic/opengl-transport/host/libs/virglrenderer/include/hardware/
Dhardware.h33 uint32_t tag; member
49 uint32_t tag; member
/device/generic/vulkan-cereal/protocols/vulkan/xml/Retired/
DcheckLinks.py75 def checkTag(tag, value, dict, dictName, tagName): argument
82 def foundError(errType, tag, value, fatal): argument
/device/google/cuttlefish/common/libs/utils/
Dtee_logging.cpp117 LogSeverity severity, const char* tag, const char* file, in StderrOutputGenerator()
173 const char* tag, in operator ()()
/device/google/cuttlefish/guest/monitoring/cuttlefish_service/java/com/android/google/gce/gceservice/
DJobBase.java24 JobBase(String tag) { in JobBase()
/device/generic/vulkan-cereal/base/
DTracing.h71 #define AEMU_SCOPED_TRACE(tag) __attribute__ ((unused)) android::base::ScopedTrace AEMU_GENSYM(aemu… argument
/device/generic/vulkan-cereal/fake-android-guest/utils/
DTrace.h31 inline ScopedTrace(uint64_t tag, const char* name) : mTag(tag) { in ScopedTrace()

123