Lines Matching refs:Handle

84   Searches in the log array with keyword Handle, Token, Module and Identifier.
94 @param Handle Pointer to environment specific context used
109 IN CONST VOID *Handle, OPTIONAL
130 if ((LogEntryArray[Index].Handle == (EFI_PHYSICAL_ADDRESS) (UINTN) Handle) &&
145 Creates a record that contains the Handle, Token, Module and Identifier.
150 @param Handle Pointer to environment specific context used
167 IN CONST VOID *Handle, OPTIONAL
186 LogEntryArray[Index].Handle = (EFI_PHYSICAL_ADDRESS) (UINTN) Handle;
209 Looks up the record that matches Handle, Token, Module and Identifier.
217 @param Handle Pointer to environment specific context used
234 IN CONST VOID *Handle, OPTIONAL
251 Index = InternalSearchForLogEntry (PeiPerformanceLog, PeiPerformanceIdArray, Handle, Token, Module, Identifier);
275 the log entry is returned in Handle, Token, Module, StartTimeStamp, EndTimeStamp and Identifier.
277 If Handle is NULL, then ASSERT().
287 @param Handle Pointer to environment specific context used to identify the component
306 OUT CONST VOID **Handle,
320 ASSERT (Handle != NULL);
342 *Handle = (VOID *) (UINTN) (CurrentLogEntry->Handle);
355 Creates a record that contains the Handle, Token, and Module.
360 @param Handle Pointer to environment specific context used
375 IN CONST VOID *Handle, OPTIONAL
381 return StartPerformanceMeasurementEx (Handle, Token, Module, TimeStamp, 0);
387 Looks up the record that matches Handle, Token, and Module.
394 @param Handle Pointer to environment specific context used
409 IN CONST VOID *Handle, OPTIONAL
415 return EndPerformanceMeasurementEx (Handle, Token, Module, TimeStamp, 0);
432 the log entry is returned in Handle, Token, Module, StartTimeStamp, and EndTimeStamp.
434 If Handle is NULL, then ASSERT().
443 @param Handle Pointer to environment specific context used to identify the component
461 OUT CONST VOID **Handle,
469 return GetPerformanceMeasurementEx (LogEntryKey, Handle, Token, Module, StartTimeStamp, EndTimeStamp, &Identifier);