Searched defs:debugName (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/foundation/
H A DADebug.cpp106 char *debugName = strdup(name); local
108 for (size_t i = 0; i < NELEM(terms) && debugName != NULL; i++) {
111 char *match = strcasestr(debugName, term);
112 if (match != NULL && (match == debugName || match[-1] == '.'
115 if (match == debugName || match[-1] == '.') {
118 memmove(match, src, debugName + strlen(debugName) - src + 1);
122 return debugName;

Completed in 59 milliseconds