/system/vold/ |
D | logwrapper.c | 46 LOG(LOG_INFO, tag, "%s", &buffer[a]); in parent() 54 LOG(LOG_INFO, tag, "%s", &buffer[a]); in parent() 70 LOG(LOG_INFO, tag, "%s", &buffer[a]); in parent() 76 LOG(LOG_INFO, "logwrapper", "%s terminated by exit(%d)", tag, in parent() 81 LOG(LOG_INFO, "logwrapper", "%s terminated by signal %d", tag, in parent() 84 LOG(LOG_INFO, "logwrapper", "%s stopped by signal %d", tag, in parent() 87 LOG(LOG_INFO, "logwrapper", "%s wait() failed: %s (%d)", tag, in parent() 100 LOG(LOG_ERROR, "logwrapper", in child() 117 LOG(LOG_ERROR, "logwrapper", "Cannot create parent ptty"); in logwrap() 124 LOG(LOG_ERROR, "logwrapper", "Problem with /dev/ptmx"); in logwrap() [all …]
|
/system/netd/ |
D | logwrapper.c | 46 LOG(LOG_INFO, tag, "%s", &buffer[a]); in parent() 54 LOG(LOG_INFO, tag, "%s", &buffer[a]); in parent() 70 LOG(LOG_INFO, tag, "%s", &buffer[a]); in parent() 76 LOG(LOG_INFO, "logwrapper", "%s terminated by exit(%d)", tag, in parent() 81 LOG(LOG_INFO, "logwrapper", "%s terminated by signal %d", tag, in parent() 84 LOG(LOG_INFO, "logwrapper", "%s stopped by signal %d", tag, in parent() 87 LOG(LOG_INFO, "logwrapper", "%s wait() failed: %s (%d)", tag, in parent() 100 LOG(LOG_ERROR, "logwrapper", in child() 117 LOG(LOG_ERROR, "logwrapper", "Cannot create parent ptty"); in logwrap() 124 LOG(LOG_ERROR, "logwrapper", "Problem with /dev/ptmx"); in logwrap() [all …]
|
/system/core/libcutils/ |
D | loghack.h | 28 #define LOG(level, ...) \ macro 30 #define LOGV(...) LOG("V", __VA_ARGS__) 31 #define LOGD(...) LOG("D", __VA_ARGS__) 32 #define LOGI(...) LOG("I", __VA_ARGS__) 33 #define LOGW(...) LOG("W", __VA_ARGS__) 34 #define LOGE(...) LOG("E", __VA_ARGS__)
|
/system/core/logwrapper/ |
D | logwrapper.c | 31 LOG(LOG_ERROR, "logwrapper", "%s", msg); in fatal() 63 LOG(LOG_INFO, tag, "%s", &buffer[a]); in parent() 71 LOG(LOG_INFO, tag, "%s", &buffer[a]); in parent() 87 LOG(LOG_INFO, tag, "%s", &buffer[a]); in parent() 92 LOG(LOG_INFO, "logwrapper", "%s terminated by exit(%d)", tag, in parent() 95 LOG(LOG_INFO, "logwrapper", "%s terminated by signal %d", tag, in parent() 98 LOG(LOG_INFO, "logwrapper", "%s stopped by signal %d", tag, in parent() 101 LOG(LOG_INFO, "logwrapper", "%s wait() failed: %s (%d)", tag, in parent() 114 LOG(LOG_ERROR, "logwrapper", in child()
|
/system/core/include/cutils/ |
D | log.h | 80 #define LOGV(...) ((void)LOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) 92 ? ((void)LOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \ 101 #define LOGD(...) ((void)LOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)) 107 ? ((void)LOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)) \ 115 #define LOGI(...) ((void)LOG(LOG_INFO, LOG_TAG, __VA_ARGS__)) 121 ? ((void)LOG(LOG_INFO, LOG_TAG, __VA_ARGS__)) \ 129 #define LOGW(...) ((void)LOG(LOG_WARN, LOG_TAG, __VA_ARGS__)) 135 ? ((void)LOG(LOG_WARN, LOG_TAG, __VA_ARGS__)) \ 143 #define LOGE(...) ((void)LOG(LOG_ERROR, LOG_TAG, __VA_ARGS__)) 149 ? ((void)LOG(LOG_ERROR, LOG_TAG, __VA_ARGS__)) \ [all …]
|
/system/core/debuggerd/ |
D | debuggerd.c | 82 #define LOG(fmt...) _LOG(-1, 0, fmt) macro 671 LOG( "********************************************************\n" in wait_for_user_action() 720 LOG("debuggerd resuming process %d", cr->pid); in wait_for_user_action() 743 LOG("cannot get credentials\n"); in handle_crashing_process() 756 LOG("timed out reading tid\n"); in handle_crashing_process() 759 LOG("read failure? %s\n", strerror(errno)); in handle_crashing_process() 765 LOG("tid %d does not exist in pid %d. ignoring debug request\n", in handle_crashing_process() 775 LOG("ptrace attach failed: %s\n", strerror(errno)); in handle_crashing_process() 787 LOG("waitpid failed: %s\n", strerror(errno)); in handle_crashing_process() 800 LOG("ptrace failed: %s\n", strerror(errno)); in handle_crashing_process() [all …]
|