Home
last modified time | relevance | path

Searched refs:fastcmp (Results 1 – 9 of 9) 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/logging/logd/
DLogKlog.cpp528 !fastcmp<strncmp>(p, infoBrace, infoBraceLen)) { in log()
565 if (!fastcmp<strncasecmp>(bt + 1, cp + 1, size - 1)) { // no match in log()
589 !fastcmp<strncmp>(bt + size - hostlen, host, hostlen) && in log()
590 !fastcmp<strncmp>(bt + 1, cp + 1, size - hostlen - 1)) { in log()
645 ((size == cpuLen) && !fastcmp<strncmp>(tag, cpu, cpuLen)) || in log()
646 ((size == warningLen) && !fastcmp<strncasecmp>(tag, warning, warningLen)) || in log()
647 ((size == errorLen) && !fastcmp<strncasecmp>(tag, error, errorLen)) || in log()
648 ((size == infoLen) && !fastcmp<strncasecmp>(tag, info, infoLen))) { in log()
660 if (((s + s) < taglen) && !fastcmp<memcmp>(mp, mp - 1 - s, s)) { in log()
DLogUtils.h57 } while (fastcmp<memcmp>(s, needle, needleLen)); in strnstr()
DLogBufferElement.cpp135 !fastcmp<strcmp>(retval, name + name_len - retval_len)) { in tidToName()
DLogReader.cpp179 if (!fastcmp<strncmp>(buffer, "dumpAndClose", 12)) { in onDataAvailable()
DLogStatistics.h268 if (name_ && !fastcmp<strncmp>(name_, "zygote", 6)) { in Add()
318 if (name_ && !fastcmp<strncmp>(name_, "zygote", 6)) { in Add()
DLogStatistics.cpp102 if (fastcmp<strcmp>(buffer, "<pre-initialized>")) { in pidToName()
277 } else if (fastcmp<strcmp>(name, nameTmp)) { in UidToNameLocked()
DLogTags.cpp65 fastcmp<strncmp>(comment, uid_str, strlen(uid_str)) || in sniffUid()
/system/logging/liblog/
Devent_tag_map.cpp198 verbose = !!fastcmp<strncmp>(cp, "uid=", strlen("uid=")); in scanTagLine()