Lines Matching refs:Handle

106   Creates a record that contains the Handle, Token, Module and Identifier.
111 @param Handle Pointer to environment specific context used
128 IN CONST VOID *Handle, OPTIONAL
143 Status = mPerformanceEx->StartGaugeEx (Handle, Token, Module, TimeStamp, Identifier);
145 Status = mPerformance->StartGauge (Handle, Token, Module, TimeStamp);
156 Looks up the record that matches Handle, Token, Module and Identifier.
164 @param Handle Pointer to environment specific context used
181 IN CONST VOID *Handle, OPTIONAL
196 Status = mPerformanceEx->EndGaugeEx (Handle, Token, Module, TimeStamp, Identifier);
198 Status = mPerformance->EndGauge (Handle, Token, Module, TimeStamp);
220 the log entry is returned in Handle, Token, Module, StartTimeStamp, EndTimeStamp and Identifier.
222 If Handle is NULL, then ASSERT().
232 @param Handle Pointer to environment specific context used to identify the component
251 OUT CONST VOID **Handle,
264 ASSERT (Handle != NULL);
299 *Handle = (VOID *) (UINTN) GaugeData->Handle;
316 Creates a record that contains the Handle, Token, and Module.
321 @param Handle Pointer to environment specific context used
336 IN CONST VOID *Handle, OPTIONAL
342 return StartPerformanceMeasurementEx (Handle, Token, Module, TimeStamp, 0);
348 Looks up the record that matches Handle, Token, and Module.
355 @param Handle Pointer to environment specific context used
370 IN CONST VOID *Handle, OPTIONAL
376 return EndPerformanceMeasurementEx (Handle, Token, Module, TimeStamp, 0);
393 the log entry is returned in Handle, Token, Module, StartTimeStamp, and EndTimeStamp.
395 If Handle is NULL, then ASSERT().
404 @param Handle Pointer to environment specific context used to identify the component
422 OUT CONST VOID **Handle,
430 return GetPerformanceMeasurementEx (LogEntryKey, Handle, Token, Module, StartTimeStamp, EndTimeStamp, &Identifier);