Home | History | Annotate | Download | only in src

Lines Matching refs:function

33 void slTraceEnterGlobal(const char *function)
36 SL_LOGD("Entering %s", function);
41 void slTraceLeaveGlobal(const char *function, SLresult result)
45 SL_LOGD("Leaving %s", function);
51 SL_LOGW("Leaving %s (%s)", function, str);
53 SL_LOGW("Leaving %s (0x%X)", function, result);
60 void slTraceEnterInterface(const char *function)
65 if (*function == 'I') {
66 ++function;
68 const char *underscore = function;
71 if (/*(strcmp(function, "BufferQueue_Enqueue") &&
72 strcmp(function, "BufferQueue_GetState") &&
73 strcmp(function, "OutputMixExt_FillBuffer")) &&*/
75 SL_LOGD("Entering %.*s::%s", (int) (underscore - function), function,
82 SL_LOGV("Entering %s", function);
86 void slTraceLeaveInterface(const char *function, SLresult result)
91 if (*function == 'I') {
92 ++function;
94 const char *underscore = function;
104 SL_LOGD("Leaving %.*s::%s", (int) (underscore - function), function,
107 SL_LOGD("Leaving %s", function);
115 SL_LOGW("Leaving %.*s::%s (%s)", (int) (underscore - function), function,
118 SL_LOGW("Leaving %.*s::%s (0x%X)", (int) (underscore - function), function,
123 SL_LOGW("Leaving %s (%s)", function, str);
125 SL_LOGW("Leaving %s (0x%X)", function, result);
133 void slTraceEnterInterfaceVoid(const char *function)
136 slTraceEnterInterface(function);
141 void slTraceLeaveInterfaceVoid(const char *function)
144 slTraceLeaveInterface(function, SL_RESULT_SUCCESS);