Lines Matching refs:Data

38   Type, Value, Instance, CallerId, and Data.  The result of this call is returned.

46 @param Data Pointer to the extended data buffer. This is an
61 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
86 return (gStatusCode->ReportStatusCode) (Type, Value, Instance, (EFI_GUID *)CallerId, Data);
89 return (gRT->ReportStatusCode) (Type, Value, Instance, (EFI_GUID *)CallerId, Data);
179 Converts the status code specified by CodeType, Value, and Data to the ASSERT()
184 status code buffer specified by Data. The optional data area of Data contains
187 ASSERT() information could be extracted from Data, then return TRUE.
190 If Data is NULL, then ASSERT().
197 @param Data Pointer to status code data buffer.
202 @retval TRUE The status code specified by CodeType, Value, and Data was
205 @retval FALSE The status code specified by CodeType, Value, and Data could
214 IN CONST EFI_STATUS_CODE_DATA *Data,
222 ASSERT (Data != NULL);
230 AssertData = (EFI_DEBUG_ASSERT_DATA *)(Data + 1);
243 Converts the status code specified by Data to the DEBUG() arguments specified
244 by ErrorLevel, Marker, and Format. If type GUID in Data is
246 Format from the optional data area of the status code buffer specified by Data.
247 The optional data area of Data contains a 32-bit ErrorLevel followed by Marker
249 the Format. If the DEBUG() information could be extracted from Data, then
252 If Data is NULL, then ASSERT().
257 @param Data Pointer to status code data buffer.
263 @retval TRUE The status code specified by Data was converted DEBUG() arguments
265 @retval FALSE The status code specified by Data could not be converted to
272 IN CONST EFI_STATUS_CODE_DATA *Data,
280 ASSERT (Data != NULL);
288 if (!CompareGuid (&Data->Type, &gEfiStatusCodeDataTypeDebugGuid)) {
295 DebugInfo = (EFI_DEBUG_INFO *)(Data + 1);