Home | History | Annotate | Download | only in IScsiDxe

Lines Matching refs:KeyValuePair

1515   ISCSI_KEY_VALUE_PAIR  *KeyValuePair;

1525 KeyValuePair = AllocatePool (sizeof (ISCSI_KEY_VALUE_PAIR));
1526 if (KeyValuePair == NULL) {
1530 InitializeListHead (&KeyValuePair->List);
1532 KeyValuePair->Key = Data;
1545 FreePool (KeyValuePair);
1549 KeyValuePair->Value = Data;
1551 InsertTailList (ListHead, &KeyValuePair->List);;
1553 Data += AsciiStrLen (KeyValuePair->Value) + 1;
1554 Len -= (UINT32) AsciiStrLen (KeyValuePair->Value) + 1;
1582 ISCSI_KEY_VALUE_PAIR *KeyValuePair;
1588 KeyValuePair = NET_LIST_USER_STRUCT (Entry, ISCSI_KEY_VALUE_PAIR, List);
1590 if (AsciiStrCmp (KeyValuePair->Key, Key) == 0) {
1591 Value = KeyValuePair->Value;
1593 RemoveEntryList (&KeyValuePair->List);
1594 FreePool (KeyValuePair);
1613 ISCSI_KEY_VALUE_PAIR *KeyValuePair;
1617 KeyValuePair = NET_LIST_USER_STRUCT (Entry, ISCSI_KEY_VALUE_PAIR, List);
1619 FreePool (KeyValuePair);