Lines Matching defs:Data

80   @param  Data              Pointer to the extended data buffer.  This is an
94 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
113 return (*mReportStatusCode) (Type, Value, Instance, (EFI_GUID *)CallerId, Data);
170 Converts the status code specified by CodeType, Value, and Data to the ASSERT()
175 status code buffer specified by Data. The optional data area of Data contains
178 ASSERT() information could be extracted from Data, then return TRUE.
181 If Data is NULL, then ASSERT().
188 @param Data Pointer to status code data buffer.
193 @retval TRUE The status code specified by CodeType, Value, and Data was
196 @retval FALSE The status code specified by CodeType, Value, and Data could
205 IN CONST EFI_STATUS_CODE_DATA *Data,
213 ASSERT (Data != NULL);
221 AssertData = (EFI_DEBUG_ASSERT_DATA *)(Data + 1);
234 Converts the status code specified by Data to the DEBUG() arguments specified
235 by ErrorLevel, Marker, and Format. If type GUID in Data is
237 Format from the optional data area of the status code buffer specified by Data.
238 The optional data area of Data contains a 32-bit ErrorLevel followed by Marker
240 the Format. If the DEBUG() information could be extracted from Data, then
243 If Data is NULL, then ASSERT().
248 @param Data Pointer to status code data buffer.
254 @retval TRUE The status code specified by Data was converted DEBUG() arguments
256 @retval FALSE The status code specified by Data could not be converted to
263 IN CONST EFI_STATUS_CODE_DATA *Data,
271 ASSERT (Data != NULL);
279 if (!CompareGuid (&Data->Type, &gEfiStatusCodeDataTypeDebugGuid)) {
286 DebugInfo = (EFI_DEBUG_INFO *)(Data + 1);