Home
last modified time | relevance | path

Searched refs:subTag (Results 1 – 2 of 2) sorted by relevance

/system/core/liblog/
Dlog_event_write.c34 int __android_log_error_write(int tag, const char *subTag, int32_t uid, const char *data, in __android_log_error_write() argument
42 if ((subTag == NULL) || ((data == NULL) && (dataLen != 0))) return -EINVAL; in __android_log_error_write()
44 subTagLen = strlen(subTag); in __android_log_error_write()
69 memcpy(&buf[pos], subTag, subTagLen); in __android_log_error_write()
/system/core/include/log/
Dlog.h566 #define android_errorWriteLog(tag, subTag) \ argument
567 __android_log_error_write(tag, subTag, -1, NULL, 0)
569 #define android_errorWriteWithInfoLog(tag, subTag, uid, data, dataLen) \ argument
570 __android_log_error_write(tag, subTag, uid, data, dataLen)
621 int __android_log_error_write(int tag, const char *subTag, int32_t uid, const char *data,