Home | History | Annotate | Download | only in UsbBusDxe

Lines Matching refs:ListItem

825   DEVICE_PATH_LIST_ITEM       *ListItem;

839 ListItem = CR(ListIndex, DEVICE_PATH_LIST_ITEM, Link, DEVICE_PATH_LIST_ITEM_SIGNATURE);
843 ASSERT (ListItem->DevicePath != NULL);
846 if (UsbDpDevicePathSize == GetDevicePathSize (ListItem->DevicePath)) {
847 if ((CompareMem (UsbDP, ListItem->DevicePath, UsbDpDevicePathSize)) == 0) {
875 DEVICE_PATH_LIST_ITEM *ListItem;
891 ListItem = AllocateZeroPool (sizeof (DEVICE_PATH_LIST_ITEM));
892 ASSERT (ListItem != NULL);
893 ListItem->Signature = DEVICE_PATH_LIST_ITEM_SIGNATURE;
894 ListItem->DevicePath = DuplicateDevicePath (UsbDP);
896 InsertTailList (UsbIoDPList, &ListItem->Link);
1084 DEVICE_PATH_LIST_ITEM *ListItem;
1095 ListItem = CR(ListIndex, DEVICE_PATH_LIST_ITEM, Link, DEVICE_PATH_LIST_ITEM_SIGNATURE);
1099 if (ListItem->DevicePath != NULL){
1100 FreePool(ListItem->DevicePath);
1106 RemoveEntryList (&ListItem->Link);
1107 FreePool (ListItem);