HomeSort by: relevance | last modified time | path
    Searched refs:wordexp (Results 1 - 12 of 12) sorted by relevancy

  /src/include/
wordexp.h 1 /* $NetBSD: wordexp.h,v 1.2 2008/04/01 19:23:28 drochner Exp $ */
28 * $FreeBSD: /repoman/r/ncvs/src/include/wordexp.h,v 1.4 2003/01/03 12:03:38 tjr Exp $
54 * Flags for wordexp().
64 * Return values from wordexp().
77 int wordexp(const char * __restrict, wordexp_t * __restrict, int);
Makefile 26 vis.h wchar.h wctype.h wordexp.h
  /src/bin/sh/
builtins.def 95 wordexpcmd wordexp
  /src/lib/libc/gen/
wordexp.c 1 /* $NetBSD: wordexp.c,v 1.4 2024/01/20 14:52:47 christos Exp $ */
40 #include <wordexp.h>
45 __FBSDID("$FreeBSD: /repoman/r/ncvs/src/lib/libc/gen/wordexp.c,v 1.5 2004/04/09 11:32:32 tjr Exp $");
47 __RCSID("$NetBSD: wordexp.c,v 1.4 2024/01/20 14:52:47 christos Exp $");
55 * wordexp --
57 * of words in `we'. See wordexp(3).
61 wordexp(const char * __restrict words, wordexp_t * __restrict we, int flags) function in typeref:typename:int
88 * Use the `wordexp' /bin/sh builtin function to do most of the work
112 if (asprintf(&cmd, "wordexp%c%s\n", *ifs, words) < 0)
130 * We are the child; just get /bin/sh to run the wordexp
    [all...]
Makefile.inc 40 warnx.c warnc.c wordexp.c xsyslog.c \
92 wordexp.3
  /src/usr.bin/mail/
fio.c 45 #include <wordexp.h>
479 e = wordexp(name, &we, WRDE_NOCMD);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_platform_limits_solaris.cc 60 #include <wordexp.h>
sanitizer_platform_limits_freebsd.cc 87 #include <wordexp.h>
sanitizer_platform_limits_posix.cc 106 #include <wordexp.h>
sanitizer_platform_limits_netbsd.cc 357 #include <wordexp.h>
sanitizer_common_interceptors.inc 3901 INTERCEPTOR(int, wordexp, char *s, __sanitizer_wordexp_t *p, int flags) {
3903 COMMON_INTERCEPTOR_ENTER(ctx, wordexp, s, p, flags);
3908 int res = REAL(wordexp)(s, p, flags);
3921 #define INIT_WORDEXP COMMON_INTERCEPT_FUNCTION(wordexp);
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
msan_test.cc 64 #include <wordexp.h>
3724 TEST(MemorySanitizer, wordexp) {
3726 int res = wordexp("a b c", &w, 0);

Completed in 48 milliseconds