Lines Matching refs:Table
1344 Function to initialize the table for creating consistent map names.
1346 @param[out] Table The pointer to pointer to pointer to DevicePathProtocol object.
1348 @retval EFI_SUCCESS The table was created successfully.
1353 OUT EFI_DEVICE_PATH_PROTOCOL ***Table
1423 *Table = TempTable;
1433 Function to uninitialize the table for creating consistent map names.
1437 @param[out] Table The pointer to pointer to DevicePathProtocol object.
1439 @retval EFI_SUCCESS The table was deleted successfully.
1444 EFI_DEVICE_PATH_PROTOCOL **Table
1449 ASSERT(Table != NULL);
1451 for (Index = 0; Table[Index] != NULL; Index++) {
1452 FreePool (Table[Index]);
1455 FreePool (Table);
1461 based on the Table.
1467 @param[in] Table The Table of mapping information.
1476 IN EFI_DEVICE_PATH_PROTOCOL **Table
1486 ASSERT(Table != NULL);
1493 for (Index = 0; Table[Index] != NULL; Index++) {
1494 if (DevicePathCompare (&Table[Index], &HIDevicePath) == 0) {
1500 if (Table[Index] == NULL) {