Searched refs:strsep (Results 1 - 9 of 9) sorted by relevance
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/String/ |
H A D | strsep.c | 40 static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93"; 52 * If *stringp is NULL, strsep returns NULL. 55 strsep( function
|
/vbox/src/VBox/Devices/PC/ipxe/src/hci/ |
H A D | linux_args.c | 63 while ((token = strsep(&kv, ",")) != NULL) { 64 name = strsep(&token, "="); 98 driver = strsep(&args, ",");
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
H A D | getnetnamadr.c | 98 while ((cp = strsep(&p, "\n \t,:;")) != NULL && *cp == '\0') 108 while ((cp = strsep(&p, "\n \t,:;")) != NULL && *cp == '\0')
|
H A D | gethostnamadr.c | 103 while ((cp = strsep(&p, "\n \t,:;")) != NULL && *cp == '\0') 113 while ((cp = strsep(&p, "\n \t,:;")) != NULL && *cp == '\0')
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | string.h | 38 char * strsep(char **s, const char *ct) __nonnull;
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/ |
H A D | string.h | 74 char *strsep (register char **stringp, register const char *delim); 483 * If *stringp is NULL, strsep returns NULL. 486 strsep(
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | stringextra.c | 22 * - Added strsep() which will replace strtok() soon (because strsep() is 23 * reentrant and should be faster). Use only strsep() in new code, please. 183 * WARNING: strtok is deprecated, use strsep instead. 208 * strsep - Split a string into tokens 212 * strsep() updates @s to point after the token, ready for the next call. 218 char * strsep(char **s, const char *ct) function
|
/vbox/src/VBox/Devices/Network/slirp/libalias/ |
H A D | alias_proxy.c | 736 token = strsep(&res, " \t"); 926 token = strsep(&res, " \t");
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLibPrivateInternalFiles/Include/ |
H A D | namespace.h | 542 #define strsep _strsep
|
Completed in 830 milliseconds