Searched defs:StringList (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dstringlist.h55 } StringList; typedef in typeref:struct:_stringlist
58 StringList *sl_init(void);
59 int sl_add(StringList *, char *);
60 void sl_free(StringList *, int);
61 char *sl_find(StringList *, const char *);
62 int sl_delete(StringList *, const char *, int);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DStringFuncs.c215 IN OUT STRING_LIST **StringList,
222 Adds String to StringList. A new copy of String is made before it is
223 added to StringList.
235 OldList = *StringList;
255 *StringList = NewList;
264 IN STRING_LIST *StringList
270 Removes the last string from StringList and frees the memory associated
275 StringList The string list to remove the string from
283 if (StringList->Count == 0) {
287 free (StringList
214 AppendCopyOfStringToList( IN OUT STRING_LIST **StringList, IN CHAR8 *String ) argument
[all...]

Completed in 32 milliseconds