Lines Matching defs:Module

84   Searches in the log array with keyword Handle, Token, Module and Identifier.
98 @param Module Pointer to a Null-terminated ASCII string
111 IN CONST CHAR8 *Module, OPTIONAL
123 if (Module == NULL) {
124 Module = "";
132 AsciiStrnCmp (LogEntryArray[Index].Module, Module, PEI_PERFORMANCE_STRING_LENGTH) == 0 &&
145 Creates a record that contains the Handle, Token, Module and Identifier.
154 @param Module Pointer to a Null-terminated ASCII string
169 IN CONST CHAR8 *Module, OPTIONAL
191 if (Module != NULL) {
192 AsciiStrnCpy (LogEntryArray[Index].Module, Module, PEI_PERFORMANCE_STRING_LENGTH);
209 Looks up the record that matches Handle, Token, Module and Identifier.
221 @param Module Pointer to a Null-terminated ASCII string
236 IN CONST CHAR8 *Module, OPTIONAL
251 Index = InternalSearchForLogEntry (PeiPerformanceLog, PeiPerformanceIdArray, Handle, Token, Module, Identifier);
275 the log entry is returned in Handle, Token, Module, StartTimeStamp, EndTimeStamp and Identifier.
279 If Module is NULL, then ASSERT().
291 @param Module Pointer to a Null-terminated ASCII string that identifies the module
308 OUT CONST CHAR8 **Module,
322 ASSERT (Module != NULL);
344 *Module = CurrentLogEntry->Module;
355 Creates a record that contains the Handle, Token, and Module.
364 @param Module Pointer to a Null-terminated ASCII string
377 IN CONST CHAR8 *Module, OPTIONAL
381 return StartPerformanceMeasurementEx (Handle, Token, Module, TimeStamp, 0);
387 Looks up the record that matches Handle, Token, and Module.
398 @param Module Pointer to a Null-terminated ASCII string
411 IN CONST CHAR8 *Module, OPTIONAL
415 return EndPerformanceMeasurementEx (Handle, Token, Module, TimeStamp, 0);
432 the log entry is returned in Handle, Token, Module, StartTimeStamp, and EndTimeStamp.
436 If Module is NULL, then ASSERT().
447 @param Module Pointer to a Null-terminated ASCII string that identifies the module
463 OUT CONST CHAR8 **Module,
469 return GetPerformanceMeasurementEx (LogEntryKey, Handle, Token, Module, StartTimeStamp, EndTimeStamp, &Identifier);