Searched refs:we_wordv (Results 1 - 12 of 12) sorted by relevance

/freebsd-current/lib/libc/tests/gen/
H A Dwordexp_test.c70 ATF_REQUIRE(strcmp(we.we_wordv[0], "hello") == 0);
71 ATF_REQUIRE(strcmp(we.we_wordv[1], "world") == 0);
72 ATF_REQUIRE(we.we_wordv[2] == NULL);
89 ATF_REQUIRE(we.we_wordv[10000] == NULL);
103 ATF_REQUIRE(we.we_wordv[0] == NULL);
104 ATF_REQUIRE(we.we_wordv[1] == NULL);
105 ATF_REQUIRE(we.we_wordv[2] == NULL);
106 ATF_REQUIRE(strcmp(we.we_wordv[3], "hello") == 0);
107 ATF_REQUIRE(strcmp(we.we_wordv[4], "world") == 0);
108 ATF_REQUIRE(we.we_wordv[
[all...]
/freebsd-current/include/
H A Dwordexp.h42 char **we_wordv; /* pointer to list of words */ member in struct:__anon84
43 __size_t we_offs; /* slots to reserve in we_wordv */
/freebsd-current/lib/libc/gen/
H A Dwordexp.c63 we->we_wordv = NULL;
130 size_t vofs; /* Offset into we->we_wordv */
235 if ((nwv = reallocarray(we->we_wordv, (we->we_wordc + 1 +
241 we->we_wordv = nwv;
247 if (we->we_wordv[i] != NULL)
248 we->we_wordv[i] += nstrings - we->we_strings;
277 we->we_wordv[vofs++] = NULL;
280 we->we_wordv[vofs++] = p;
286 we->we_wordv[vofs] = NULL;
402 free(we->we_wordv);
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_solaris.h350 char **we_wordv; member in struct:__sanitizer::__sanitizer_wordexp_t
H A Dsanitizer_platform_limits_solaris.cpp280 CHECK_SIZE_AND_OFFSET(wordexp_t, we_wordv);
H A Dsanitizer_platform_limits_freebsd.h396 char **we_wordv; member in struct:__sanitizer::__sanitizer_wordexp_t
H A Dsanitizer_platform_limits_freebsd.cpp484 CHECK_SIZE_AND_OFFSET(wordexp_t, we_wordv);
H A Dsanitizer_platform_limits_posix.h831 char **we_wordv; member in struct:__sanitizer::__sanitizer_wordexp_t
H A Dsanitizer_platform_limits_netbsd.h456 char **we_wordv; member in struct:__sanitizer::__sanitizer_wordexp_t
H A Dsanitizer_platform_limits_posix.cpp1171 CHECK_SIZE_AND_OFFSET(wordexp_t, we_wordv);
H A Dsanitizer_common_interceptors.inc4165 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, p->we_wordv,
4166 sizeof(*p->we_wordv) * (we_wordc + 1));
4168 char *w = p->we_wordv[i];
H A Dsanitizer_platform_limits_netbsd.cpp2597 CHECK_SIZE_AND_OFFSET(wordexp_t, we_wordv);

Completed in 299 milliseconds