Home
last modified time | relevance | path

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

/system/core/libutils/include/utils/
DFastStrcmp.h43 static inline int fastcmp(const char* l, const char* r, const size_t s) { in fastcmp() function
57 static inline int fastcmp(const void* lv, const void* rv, const size_t s) { in fastcmp() function
66 static inline int fastcmp(const char* l, const char* r) { in fastcmp() function
/system/core/logd/
DLogKlog.cpp552 !fastcmp<strncmp>(p, infoBrace, infoBraceLen)) { in log()
589 if (!fastcmp<strncasecmp>(bt + 1, cp + 1, size - 1)) { // no match in log()
613 !fastcmp<strncmp>(bt + size - hostlen, host, hostlen) && in log()
614 !fastcmp<strncmp>(bt + 1, cp + 1, size - hostlen - 1)) { in log()
669 ((size == cpuLen) && !fastcmp<strncmp>(tag, cpu, cpuLen)) || in log()
670 ((size == warningLen) && !fastcmp<strncasecmp>(tag, warning, warningLen)) || in log()
671 ((size == errorLen) && !fastcmp<strncasecmp>(tag, error, errorLen)) || in log()
672 ((size == infoLen) && !fastcmp<strncasecmp>(tag, info, infoLen))) { in log()
684 if (((s + s) < taglen) && !fastcmp<memcmp>(mp, mp - 1 - s, s)) { in log()
DLogUtils.h56 } while (fastcmp<memcmp>(s, needle, needleLen)); in strnstr()
DChattyLogBuffer.cpp67 if (!fastcmp<memcmp>(msgl, msgr, lenl)) return SAME; in Identical()
70 !fastcmp<memcmp>(msgl, msgr, sizeof(android_log_event_int_t) - sizeof(int32_t)) && in Identical()
80 if (fastcmp<memcmp>(msgl, msgr, sizeof(android_log_event_string_t) - sizeof(int32_t))) { in Identical()
96 if (fastcmp<memcmp>(avcl + strlen(avc), avcr + strlen(avc), lenl - strlen(avc))) { in Identical()
DLogReader.cpp152 if (!fastcmp<strncmp>(buffer, "dumpAndClose", 12)) { in onDataAvailable()
DLogBufferElement.cpp172 !fastcmp<strcmp>(retval, name + name_len - retval_len)) { in tidToName()
DLogStatistics.h296 if (name_ && !fastcmp<strncmp>(name_, "zygote", 6)) { in Add()
349 if (name_ && !fastcmp<strncmp>(name_, "zygote", 6)) { in Add()
DLogStatistics.cpp107 if (fastcmp<strcmp>(buffer, "<pre-initialized>")) { in pidToName()
377 } else if (fastcmp<strcmp>(name, nameTmp)) { in UidToNameLocked()
DLogTags.cpp64 fastcmp<strncmp>(comment, uid_str, strlen(uid_str)) || in sniffUid()
/system/core/liblog/
Devent_tag_map.cpp63 return fastcmp<strncmp>(data(), rval.data(), length()) == 0; in operator ==()
315 verbose = !!fastcmp<strncmp>(cp, "uid=", strlen("uid=")); in scanTagLine()