/third_party/musl/libc-test/src/functionalext/supplement/string/ |
H A D | strsep.c | 22 * @tc.desc : Test calling strsep function to intercept string 31 char *result = strsep(&p, sep); in strsep_0100() 33 t_error("%s strsep get result is '%s' are not 'hello'\n", __func__, result); in strsep_0100() 36 t_error("%s strsep get str is '%s' are not 'hello'\n", __func__, str); in strsep_0100() 42 * @tc.desc : Test strsep result when marker character appears multiple times in truncated string 51 char *result = strsep(&p, sep); in strsep_0200() 53 t_error("%s strsep get result is '%s' are not 'he'\n", __func__, result); in strsep_0200() 56 t_error("%s strsep get result is '%s' are not 'he'\n", __func__, str); in strsep_0200() 62 * @tc.desc : test strsep result when marker character does not appear in truncated string 71 char *result = strsep( in strsep_0300() [all...] |
/third_party/alsa-utils/alsactl/ |
H A D | init_utils_run.c | 55 argv[i] = strsep(&pos, "\'"); in run_program0() 59 argv[i] = strsep(&pos, " "); in run_program0() 187 while ((line = strsep(&pos, "\n"))) in run_program0() 208 while ((line = strsep(&pos, "\n"))) in run_program0()
|
/third_party/eudev/src/scsi_id/ |
H A D | scsi_id.c | 132 val = strsep(buffer, end); in get_value() 220 str1 = strsep(&buf, "="); in get_file_options() 229 str1 = strsep(&buf, "="); in get_file_options() 237 str1 = strsep(&buf, "="); in get_file_options() 298 (*newargv)[c] = strsep(&buffer, " \t"); in get_file_options()
|
/third_party/backends/include/sane/ |
H A D | config.h | 362 /* Define to 1 if you have the `strsep' function. */ 773 /* Prototype for strsep */ 775 #define strsep sanei_strsep macro 776 char *strsep(char **stringp, const char *delim);
|
/third_party/backends/lib/ |
H A D | strsep.c | 25 strsep (char **stringp, const char *delim) in strsep() function
|
/third_party/musl/src/string/ |
H A D | strsep.c | 4 char *strsep(char **str, const char *sep) in strsep() function
|
/third_party/musl/porting/liteos_a/kernel/src/string/ |
H A D | strsep.c | 4 char *strsep(char **str, const char *sep) in strsep() function
|
/third_party/ntfs-3g/include/ntfs-3g/ |
H A D | compat.h | 72 extern char *strsep(char **stringp, const char *delim);
|
/third_party/ltp/testcases/lib/ |
H A D | tst_ns_create.c | 71 while ((token = strsep(&argv[1], ","))) { in main()
|
H A D | tst_ns_exec.c | 83 while ((token = strsep(&argv[2], ","))) { in main()
|
/third_party/ltp/testcases/kernel/containers/share/ |
H A D | ns_create.c | 89 while ((token = strsep(&argv[1], ","))) { in main()
|
H A D | ns_exec.c | 113 while ((token = strsep(&argv[2], ","))) { in main()
|
/third_party/ntfs-3g/libntfs-3g/ |
H A D | compat.c | 158 * src/lib/libresolv2/common/bsd/strsep.c 166 static const char sccsid[] = "strsep.c 8.1 (Berkeley) 6/4/93"; 219 * If *stringp is NULL, strsep returns NULL. 221 char *strsep(char **stringp, const char *delim) { in strsep() function 247 * End: src/lib/libresolv2/common/bsd/strsep.c
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | string.h | 82 char *strsep(char **, const char *);
|
/third_party/musl/porting/linux/user/include/ |
H A D | string.h | 84 char *strsep(char **, const char *);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | string.h | 82 char *strsep(char **, const char *);
|
/third_party/musl/include/ |
H A D | string.h | 85 char *strsep(char **, const char *);
|
/third_party/toybox/toys/pending/ |
H A D | klogd.c | 93 if ((line_start = strsep(&start, "\n")) != NULL && start != NULL) used = 0; in klogd_main()
|
H A D | crontab.c | 89 char *ctoken = strsep(&src, ","), *dtoken; in validate_component() 95 dtoken = strsep(&ctoken, "-"); in validate_component()
|
/third_party/NuttX/drivers/usbdev/gadget/ |
H A D | f_dfu.c | 1017 st = strsep(&envstr, " "); in dfu_ram_init_env() 1028 st = strsep(&envstr, " "); in dfu_ram_init_env() 1034 st = strsep(&envstr, " "); in dfu_ram_init_env() 1041 st = strsep(&envstr, " "); in dfu_ram_init_env()
|
/third_party/musl/porting/linux/user/src/network/ |
H A D | lookup_name.c | 545 static char *strsep(char **s, const char *ct) in strsep() function 661 while ((cmd = strsep(¶ms, GROUP_SEPARATOR)) != NULL) { in _predefined_host_parse_host_ips() 662 char* host = strsep(&cmd, SEPARATOR); in _predefined_host_parse_host_ips() 665 while ((ip = strsep(&cmd, SEPARATOR)) != NULL) { in _predefined_host_parse_host_ips()
|
/third_party/musl/src/network/ |
H A D | lookup_name.c | 613 static char *strsep(char **s, const char *ct) in strsep() function 729 while ((cmd = strsep(¶ms, GROUP_SEPARATOR)) != NULL) { in _predefined_host_parse_host_ips() 730 char* host = strsep(&cmd, SEPARATOR); in _predefined_host_parse_host_ips() 733 while ((ip = strsep(&cmd, SEPARATOR)) != NULL) { in _predefined_host_parse_host_ips()
|
/third_party/elfutils/libdwfl/ |
H A D | dwfl_build_id_find_elf.c | 84 while (fd < 0 && (dir = strsep (&paths, ":")) != NULL) in __libdwfl_open_by_build_id()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | string.h | 82 char *strsep(char **, const char *);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | string.h | 84 char *strsep(char **, const char *);
|