Lines Matching refs:Handle

84   Creates a record that contains the Handle, Token, Module and Identifier.
89 @param Handle Pointer to environment specific context used
106 IN CONST VOID *Handle, OPTIONAL
121 Status = mPerformanceEx->StartGaugeEx (Handle, Token, Module, TimeStamp, Identifier);
123 Status = mPerformance->StartGauge (Handle, Token, Module, TimeStamp);
134 Looks up the record that matches Handle, Token, Module and Identifier.
142 @param Handle Pointer to environment specific context used
159 IN CONST VOID *Handle, OPTIONAL
174 Status = mPerformanceEx->EndGaugeEx (Handle, Token, Module, TimeStamp, Identifier);
176 Status = mPerformance->EndGauge (Handle, Token, Module, TimeStamp);
198 the log entry is returned in Handle, Token, Module, StartTimeStamp, EndTimeStamp and Identifier.
200 If Handle is NULL, then ASSERT().
210 @param Handle Pointer to environment specific context used to identify the component
229 OUT CONST VOID **Handle,
242 ASSERT (Handle != NULL);
277 *Handle = (VOID *) (UINTN) GaugeData->Handle;
294 Creates a record that contains the Handle, Token, and Module.
299 @param Handle Pointer to environment specific context used
314 IN CONST VOID *Handle, OPTIONAL
320 return StartPerformanceMeasurementEx (Handle, Token, Module, TimeStamp, 0);
326 Looks up the record that matches Handle, Token, and Module.
333 @param Handle Pointer to environment specific context used
348 IN CONST VOID *Handle, OPTIONAL
354 return EndPerformanceMeasurementEx (Handle, Token, Module, TimeStamp, 0);
371 the log entry is returned in Handle, Token, Module, StartTimeStamp, and EndTimeStamp.
373 If Handle is NULL, then ASSERT().
382 @param Handle Pointer to environment specific context used to identify the component
400 OUT CONST VOID **Handle,
408 return GetPerformanceMeasurementEx (LogEntryKey, Handle, Token, Module, StartTimeStamp, EndTimeStamp, &Identifier);