Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/foundation/
DAStringUtils.cpp30 const char *glob, size_t globLen, const char *str, size_t strLen, bool ignoreCase) { in MatchesGlob() argument
35 while (globIx < globLen && glob[globIx] != '*') { in MatchesGlob()
44 while (globIx < globLen) { in MatchesGlob()
47 while (globIx < globLen && glob[globIx] != '*') { in MatchesGlob()
53 if (globIx == globLen) { in MatchesGlob()
DADebug.cpp70 size_t globLen = (next == NULL ? strlen(colon) : (next - 1 - colon)); in GetLevelFromSettingsString() local
71 while (globLen > 0 && isspace(colon[globLen - 1])) { in GetLevelFromSettingsString()
72 --globLen; // trim glob in GetLevelFromSettingsString()
76 colon, globLen, name, strlen(name), true /* ignoreCase */)) { in GetLevelFromSettingsString()
/frameworks/av/include/media/stagefright/foundation/
DAStringUtils.h31 const char *glob, size_t globLen, const char *str, size_t strLen, bool ignoreCase);