Lines Matching refs:underscore
68 const char *underscore = function; in slTraceEnterInterface() local
69 while (*underscore != '\0') { in slTraceEnterInterface()
70 if (*underscore == '_') { in slTraceEnterInterface()
75 SL_LOGD("Entering %.*s::%s", (int) (underscore - function), function, in slTraceEnterInterface()
76 &underscore[1]); in slTraceEnterInterface()
80 ++underscore; in slTraceEnterInterface()
94 const char *underscore = function; in slTraceLeaveInterface() local
95 while (*underscore != '\0') { in slTraceLeaveInterface()
96 if (*underscore == '_') { in slTraceLeaveInterface()
99 ++underscore; in slTraceLeaveInterface()
103 if (*underscore == '_') { in slTraceLeaveInterface()
104 SL_LOGD("Leaving %.*s::%s", (int) (underscore - function), function, in slTraceLeaveInterface()
105 &underscore[1]); in slTraceLeaveInterface()
113 if (*underscore == '_') { in slTraceLeaveInterface()
115 SL_LOGW("Leaving %.*s::%s (%s)", (int) (underscore - function), function, in slTraceLeaveInterface()
116 &underscore[1], str); in slTraceLeaveInterface()
118 SL_LOGW("Leaving %.*s::%s (0x%X)", (int) (underscore - function), function, in slTraceLeaveInterface()
119 &underscore[1], result); in slTraceLeaveInterface()