Home | History | Annotate | Download | only in UefiShellCommandLib

Lines Matching refs:Table

1473   Function to initialize the table for creating consistent map names.

1475 @param[out] Table The pointer to pointer to pointer to DevicePathProtocol object.
1477 @retval EFI_SUCCESS The table was created successfully.
1482 OUT EFI_DEVICE_PATH_PROTOCOL ***Table
1552 *Table = TempTable;
1562 Function to uninitialize the table for creating consistent map names.
1566 @param[out] Table The pointer to pointer to DevicePathProtocol object.
1568 @retval EFI_SUCCESS The table was deleted successfully.
1573 EFI_DEVICE_PATH_PROTOCOL **Table
1578 ASSERT(Table != NULL);
1580 for (Index = 0; Table[Index] != NULL; Index++) {
1581 FreePool (Table[Index]);
1584 FreePool (Table);
1590 based on the Table.
1596 @param[in] Table The Table of mapping information.
1605 IN EFI_DEVICE_PATH_PROTOCOL **Table
1616 ASSERT(Table != NULL);
1623 for (Index = 0; Table[Index] != NULL; Index++) {
1624 if (DevicePathCompare (&Table[Index], &HIDevicePath) == 0) {
1630 if (Table[Index] == NULL) {