Searched refs:we_wordv (Results 1 – 12 of 12) sorted by relevance
/freebsd/lib/libc/tests/gen/ |
H A D | wordexp_test.c | 70 ATF_REQUIRE(strcmp(we.we_wordv[0], "hello") == 0); in ATF_TC_BODY() 71 ATF_REQUIRE(strcmp(we.we_wordv[1], "world") == 0); in ATF_TC_BODY() 72 ATF_REQUIRE(we.we_wordv[2] == NULL); in ATF_TC_BODY() 89 ATF_REQUIRE(we.we_wordv[10000] == NULL); in ATF_TC_BODY() 103 ATF_REQUIRE(we.we_wordv[0] == NULL); in ATF_TC_BODY() 104 ATF_REQUIRE(we.we_wordv[1] == NULL); in ATF_TC_BODY() 105 ATF_REQUIRE(we.we_wordv[2] == NULL); in ATF_TC_BODY() 106 ATF_REQUIRE(strcmp(we.we_wordv[3], "hello") == 0); in ATF_TC_BODY() 107 ATF_REQUIRE(strcmp(we.we_wordv[4], "world") == 0); in ATF_TC_BODY() 108 ATF_REQUIRE(we.we_wordv[5] == NULL); in ATF_TC_BODY() [all …]
|
/freebsd/lib/libc/gen/ |
H A D | wordexp.c | 63 we->we_wordv = NULL; in wordexp() 235 if ((nwv = reallocarray(we->we_wordv, (we->we_wordc + 1 + in we_askshell() 241 we->we_wordv = nwv; in we_askshell() 247 if (we->we_wordv[i] != NULL) in we_askshell() 248 we->we_wordv[i] += nstrings - we->we_strings; in we_askshell() 277 we->we_wordv[vofs++] = NULL; in we_askshell() 280 we->we_wordv[vofs++] = p; in we_askshell() 286 we->we_wordv[vofs] = NULL; in we_askshell() 402 free(we->we_wordv); in wordfree() 404 we->we_wordv = NULL; in wordfree()
|
/freebsd/include/ |
H A D | wordexp.h | 42 char **we_wordv; /* pointer to list of words */ member
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_platform_limits_solaris.h | 350 char **we_wordv; member
|
H A D | sanitizer_platform_limits_solaris.cpp | 280 CHECK_SIZE_AND_OFFSET(wordexp_t, we_wordv);
|
H A D | sanitizer_platform_limits_freebsd.h | 414 char **we_wordv; member
|
H A D | sanitizer_platform_limits_freebsd.cpp | 486 CHECK_SIZE_AND_OFFSET(wordexp_t, we_wordv);
|
H A D | sanitizer_platform_limits_posix.h | 831 char **we_wordv; 830 char **we_wordv; global() member
|
H A D | sanitizer_platform_limits_posix.cpp | 1171 CHECK_SIZE_AND_OFFSET(wordexp_t, we_wordv);
|
H A D | sanitizer_platform_limits_netbsd.h | 456 char **we_wordv; member
|
H A D | sanitizer_platform_limits_netbsd.cpp | 2597 CHECK_SIZE_AND_OFFSET(wordexp_t, we_wordv);
|
H A D | sanitizer_common_interceptors.inc | 4176 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, p->we_wordv, 4177 sizeof(*p->we_wordv) * (we_wordc + 1)); 4179 char *w = p->we_wordv[i];
|