Home
last modified time | relevance | path

Searched refs:LOG_TAG (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/device/generic/vulkan-cereal/fake-android-guest/log/
Dlog_main.h114 ? ((void)android_printAssert(#cond, LOG_TAG, ##__VA_ARGS__)) \
120 (((void)android_printAssert(NULL, LOG_TAG, ##__VA_ARGS__)))
176 #define __ALOGV(...) ((void)ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
194 ((__predict_false(cond)) ? ((void)ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
203 #define ALOGD(...) ((void)ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__))
208 ((__predict_false(cond)) ? ((void)ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)) \
216 #define ALOGI(...) ((void)ALOG(LOG_INFO, LOG_TAG, __VA_ARGS__))
221 ((__predict_false(cond)) ? ((void)ALOG(LOG_INFO, LOG_TAG, __VA_ARGS__)) \
229 #define ALOGW(...) ((void)ALOG(LOG_WARN, LOG_TAG, __VA_ARGS__))
234 ((__predict_false(cond)) ? ((void)ALOG(LOG_WARN, LOG_TAG, __VA_ARGS__)) \
[all …]
Dlog_system.h48 ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_VERBOSE, LOG_TAG, \
69 LOG_TAG, __VA_ARGS__)) \
79 ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_DEBUG, LOG_TAG, \
87 LOG_TAG, __VA_ARGS__)) \
96 ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_INFO, LOG_TAG, \
104 LOG_TAG, __VA_ARGS__)) \
113 ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_WARN, LOG_TAG, \
121 LOG_TAG, __VA_ARGS__)) \
130 ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_ERROR, LOG_TAG, \
138 LOG_TAG, __VA_ARGS__)) \
Dlog_radio.h50 ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_VERBOSE, LOG_TAG, \
71 LOG_TAG, __VA_ARGS__)) \
81 ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_DEBUG, LOG_TAG, \
89 LOG_TAG, __VA_ARGS__)) \
98 ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_INFO, LOG_TAG, \
106 LOG_TAG, __VA_ARGS__)) \
115 ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_WARN, LOG_TAG, \
123 LOG_TAG, __VA_ARGS__)) \
132 ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_ERROR, LOG_TAG, \
140 LOG_TAG, __VA_ARGS__)) \
Dlog.h52 #ifndef LOG_TAG
53 #define LOG_TAG NULL macro
/device/generic/goldfish-opengl/fuchsia/include/cutils/
Dlog.h4 #ifndef LOG_TAG
5 #define LOG_TAG nullptr macro
35 ? ((void)android_printAssert(#condition, LOG_TAG, ##__VA_ARGS__)) \
39 (((void)android_printAssert(NULL, LOG_TAG, ##__VA_ARGS__)))
41 #define ALOGV(...) ((void)ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
42 #define ALOGE(...) ((void)ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__))
43 #define ALOGW(...) ((void)ALOG(LOG_WARN, LOG_TAG, __VA_ARGS__))
44 #define ALOGD(...) ((void)ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__))
/device/google/cuttlefish/guest/monitoring/cuttlefish_service/java/com/android/google/gce/gceservice/
DGceWifiManager.java34 private static final String LOG_TAG = "GceWifiManager"; field in GceWifiManager
50 super(LOG_TAG); in GceWifiManager()
71 Log.e(LOG_TAG, "Initial WIFI configuration failed due to dependency.", e); in onDependencyFailed()
87 super(LOG_TAG); in MonitorWifiJob()
106 Log.w(LOG_TAG, "Wifi not yet connected."); in execute()
112 Log.i(LOG_TAG, "Wifi connected."); in execute()
121 Log.e(LOG_TAG, "Wifi state change failed due to failing dependency.", e); in onDependencyFailed()
DBluetoothChecker.java29 private static final String LOG_TAG = "GceBluetoothChecker"; field in BluetoothChecker
34 super(LOG_TAG); in BluetoothChecker()
37 Log.i(LOG_TAG, "Bluetooth not required, assuming enabled."); in BluetoothChecker()
50 Log.e(LOG_TAG, "No bluetooth adapter found"); in execute()
54 Log.i(LOG_TAG, "Bluetooth enabled with name: " + bluetoothAdapter.getName()); in execute()
57 Log.i(LOG_TAG, "Bluetooth disabled with name: " + bluetoothAdapter.getName()); in execute()
DEventReporter.java36 private static final String LOG_TAG = "GceEventReporter"; field in EventReporter
52 super(LOG_TAG); in EventReporter()
58 Log.e(LOG_TAG, "Could not open output stream.", e); in EventReporter()
113 Log.i(LOG_TAG, message); in reportMessage()
114 mKmsgWriter.printf(KLOG_FORMAT, KLOG_NOTICE, LOG_TAG, message); in reportMessage()
DGceFuture.java28 private static final String LOG_TAG = "GceFuture"; field in GceFuture
48 Log.e(LOG_TAG, mName + ": Multiple return values from a future object.", e); in set()
56 Log.w(LOG_TAG, mName + ": Discarding execution exception -- job done.", e); in set()
59 Log.w(LOG_TAG, mName + ": Could not complete job: " + e.getMessage(), e); in set()
DGceService.java42 private static final String LOG_TAG = "GceService"; field in GceService
101 Log.e(LOG_TAG, "Exception caught", e); in onCreate()
168 Log.w(LOG_TAG, "Previous execution failed. Retrying."); in onStartCommand()
172 Log.e(LOG_TAG, "Missing intent action."); in onStartCommand()
DJobExecutor.java32 private static final String LOG_TAG = "GceExecutor"; field in JobExecutor
80 Log.e(LOG_TAG, String.format( in schedule()
108 … Log.e(LOG_TAG, String.format("Job %s threw an exception and will not be re-scheduled.", in schedule()
DGceBroadcastReceiver.java27 private static final String LOG_TAG = "GceBroadcastReceiver"; field in GceBroadcastReceiver
41 Log.i(LOG_TAG, "Received broadcast: " + action); in onReceive()
DConnectivityChecker.java28 private static final String LOG_TAG = "GceConnChecker"; field in ConnectivityChecker
42 super(LOG_TAG); in ConnectivityChecker()
/device/generic/goldfish-opengl/system/hwc2/
DCommon.h20 #undef LOG_TAG
21 #define LOG_TAG "RanchuHwc" macro
/device/google/lynx/vibrator/cs40l26/
DCapoDetector.cpp23 #ifdef LOG_TAG
24 #undef LOG_TAG
25 #define LOG_TAG "CapoDetector" macro
/device/google/bluejay/vibrator/cs40l26/
DCapoDetector.cpp23 #ifdef LOG_TAG
24 #undef LOG_TAG
25 #define LOG_TAG "CapoDetector" macro
/device/google/contexthub/firmware/os/drivers/window_orientation/
Dwindow_orientation.c35 #define LOG_TAG "[WO]" macro
38 osLog(LOG_VERBOSE, LOG_TAG " " fmt, ##__VA_ARGS__); \
42 osLog(LOG_WARN, LOG_TAG " " fmt, ##__VA_ARGS__); \
46 osLog(LOG_INFO, LOG_TAG " " fmt, ##__VA_ARGS__); \
51 osLog(LOG_DEBUG, LOG_TAG " " fmt, ##__VA_ARGS__); \
/device/generic/vulkan-cereal/fake-android-guest/androidImpl/
DRefBase.cpp16 #define LOG_TAG "RefBase" macro
170 CallStack::logStack(LOG_TAG, refs->stack.get()); in ~weakref_impl()
183 CallStack::logStack(LOG_TAG, refs->stack.get()); in ~weakref_impl()
190 CallStack::logStack(LOG_TAG); in ~weakref_impl()
314 CallStack::logStack(LOG_TAG); in removeRef()
/device/google/contexthub/firmware/os/algos/calibration/util/
Dcal_log.h52 # ifndef LOG_TAG
53 # define LOG_TAG "" macro
/device/generic/goldfish-opengl/system/hwc3/
DCommon.h26 #undef LOG_TAG
27 #define LOG_TAG "RanchuHwc" macro
/device/generic/vulkan-cereal/fake-android-guest/libvulkan/
Dstubhal.cpp26 #undef LOG_TAG
27 #define LOG_TAG "vkstub" macro
/device/generic/car/emulator/audio/halservice/
DAudioControl.cpp17 #define LOG_TAG "AudioControl" macro
177 dprintf(fd, "*%s*\n", LOG_TAG); in dumpsys()
/device/google/cuttlefish/guest/hals/ril/reference-libril/
DRilSapSocket.cpp23 #undef LOG_TAG
24 #define LOG_TAG "RIL_UIM_SOCKET" macro
/device/generic/goldfish/dhcp/client/
Dlog.h18 #define LOG_TAG "dhcpclient" macro
/device/generic/goldfish/wifi/wifi_hal/
Dlog.h19 #define LOG_TAG "wifi_emu_hal" macro

12345678910>>...12