Lines Matching refs:me

39 void get_time(PERF_Private *me)
42 if (me->uMode & PERF_Mode_Replay) return;
45 TIME_GET(me->time);
121 PERF_Private *me = get_Private(hObject);
123 if (me->pLog)
129 get_time(me);
132 if (me->cip.pDebug)
134 __print_Boundary(me->cip.pDebug->fDebug,
135 me, eBoundary);
138 if (me->cip.pRT)
140 __rt_Boundary(me, eBoundary);
151 PERF_Private *me = get_Private(hObject);
153 if (me->pLog)
159 get_time(me);
162 if (me->cip.pDebug && me->cip.pDebug->fPrint)
164 __print_Buffer(me->cip.pDebug->fPrint,
165 me, ulAddress1, ulAddress2, ulSize, ulModuleAndFlags);
168 if (me->cip.pRT)
170 __rt_Buffer(me, ulAddress1, ulAddress2, ulSize, ulModuleAndFlags);
180 PERF_Private *me = get_Private(hObject);
182 if (me->pLog)
188 get_time(me);
191 if (me->cip.pDebug && me->cip.pDebug->fDebug)
193 __print_Command(me->cip.pDebug->fDebug,
194 me, ulCommand, ulArgument, ulModuleAndFlags);
197 if (me->cip.pRT)
199 __rt_Command(me, ulCommand, ulArgument, ulModuleAndFlags);
209 PERF_Private *me = get_Private(hObject);
211 if (me->pLog)
217 get_time(me);
220 if (me->cip.pDebug && me->cip.pDebug->fDebug)
222 __print_Log(me->cip.pDebug->fDebug,
223 me, ulData1, ulData2, ulData3);
226 if (me->cip.pRT)
228 __rt_Log(me, ulData1, ulData2, ulData3);
238 PERF_Private *me = get_Private(hObject);
240 if (me->pLog)
246 get_time(me);
249 if (me->cip.pDebug && me->cip.pDebug->fDebug)
251 __print_SyncAV(me->cip.pDebug->fDebug,
252 me, pfTimeAudio, pfTimeVideo, eSyncOperation);
255 if (me->cip.pRT)
257 __rt_SyncAV(me, pfTimeAudio, pfTimeVideo, eSyncOperation);
266 PERF_Private *me = get_Private(hObject);
268 if (me->pLog)
274 get_time(me);
277 if (me->cip.pDebug && me->cip.pDebug->fDebug)
279 __print_ThreadCreated(me->cip.pDebug->fDebug,
280 me, ulThreadID, ulThreadName);
283 if (me->cip.pRT)
285 __rt_ThreadCreated(me, ulThreadID, ulThreadName);
308 PERF_Private *me = get_Private(hObject);
310 if (me->pLog)
315 if (me->cip.pDebug && me->cip.pDebug->fDebug)
317 __print_Location(me, szFile, ulLine, szFunc);
355 PERF_Private *me = get_Private(hObject);
358 me->cip.pDebug = NULL;
359 me->cip.pRT = NULL;
365 me->uMode |= PERF_Mode_Replay;
381 if (!PERF_PRINT_create(me, config, eModule))
384 me->uMode &= ~PERF_Mode_Replay;
392 PERF_RT_create(me, config, eModule);
398 if (me->uMode == PERF_Mode_Log)
408 void __PERF_CUSTOM_done(PERF_Private *me)
410 if (me->uMode & PERF_Mode_Log)
412 __PERF_LOG_done(me);
416 get_time(me);
420 if (me->cip.pDebug)
422 if (me->cip.pDebug->fDebug) __print_Done(me->cip.pDebug->fDebug, me);
423 PERF_PRINT_done(me);
426 if (me->cip.pRT)
428 __rt_Done(me);
429 PERF_RT_done(me);