Home
last modified time | relevance | path

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

/system/core/logd/
DLogBuffer.cpp137 ssize_t lenl = elem->getMsgLen(); in identical() local
138 if (lenl <= 0) return DIFFERENT; // value if this represents a chatty elem in identical()
155 if (lenl == lenr) { in identical()
156 if (!fastcmp<memcmp>(msgl, msgr, lenl)) return SAME; in identical()
159 (lenl == sizeof(android_log_event_int_t)) && in identical()
174 lenl -= sizeof(android_log_event_string_t); in identical()
179 const char* avcl = android::strnstr(msgl, lenl, avc); in identical()
181 lenl -= avcl - msgl; in identical()
185 if (lenl != lenr) return DIFFERENT; in identical()
187 lenl - strlen(avc))) { in identical()