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

/freebsd-13-stable/lib/libc/tests/gen/
H A Dwordexp_test.c73 ATF_REQUIRE(strcmp(we.we_wordv[0], "hello") == 0);
74 ATF_REQUIRE(strcmp(we.we_wordv[1], "world") == 0);
75 ATF_REQUIRE(we.we_wordv[2] == NULL);
92 ATF_REQUIRE(we.we_wordv[10000] == NULL);
106 ATF_REQUIRE(we.we_wordv[0] == NULL);
107 ATF_REQUIRE(we.we_wordv[1] == NULL);
108 ATF_REQUIRE(we.we_wordv[2] == NULL);
109 ATF_REQUIRE(strcmp(we.we_wordv[3], "hello") == 0);
110 ATF_REQUIRE(strcmp(we.we_wordv[4], "world") == 0);
111 ATF_REQUIRE(we.we_wordv[
[all...]
/freebsd-13-stable/include/
H A Dwordexp.h44 char **we_wordv; /* pointer to list of words */ member in struct:__anon7386
45 __size_t we_offs; /* slots to reserve in we_wordv */
/freebsd-13-stable/lib/libc/gen/
H A Dwordexp.c67 we->we_wordv = NULL;
134 size_t vofs; /* Offset into we->we_wordv */
239 if ((nwv = reallocarray(we->we_wordv, (we->we_wordc + 1 +
245 we->we_wordv = nwv;
251 if (we->we_wordv[i] != NULL)
252 we->we_wordv[i] += nstrings - we->we_strings;
281 we->we_wordv[vofs++] = NULL;
284 we->we_wordv[vofs++] = p;
290 we->we_wordv[vofs] = NULL;
406 free(we->we_wordv);
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_solaris.h349 char **we_wordv; member in struct:__sanitizer::__sanitizer_wordexp_t
H A Dsanitizer_platform_limits_freebsd.h374 char **we_wordv; member in struct:__sanitizer::__sanitizer_wordexp_t
H A Dsanitizer_platform_limits_solaris.cpp278 CHECK_SIZE_AND_OFFSET(wordexp_t, we_wordv);
H A Dsanitizer_platform_limits_freebsd.cpp446 CHECK_SIZE_AND_OFFSET(wordexp_t, we_wordv);
H A Dsanitizer_platform_limits_posix.h776 char **we_wordv; member in struct:__sanitizer::__sanitizer_wordexp_t
H A Dsanitizer_platform_limits_netbsd.h455 char **we_wordv; member in struct:__sanitizer::__sanitizer_wordexp_t
H A Dsanitizer_platform_limits_posix.cpp1090 CHECK_SIZE_AND_OFFSET(wordexp_t, we_wordv);
H A Dsanitizer_platform_limits_netbsd.cpp2445 CHECK_SIZE_AND_OFFSET(wordexp_t, we_wordv);
H A Dsanitizer_common_interceptors.inc3992 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, p->we_wordv,
3993 sizeof(*p->we_wordv) * p->we_wordc);
3995 char *w = p->we_wordv[i];

Completed in 291 milliseconds