Home
last modified time | relevance | path

Searched refs:program (Results 1 – 25 of 664) sorted by relevance

12345678910>>...27

/minix3/external/bsd/llvm/dist/llvm/utils/
H A Dcheck-each-file9 program=$2
10 linker=./link-$program
11 echo "Building $program with llvm-native-gcc"
12 rm -f $program
13 gmake -e $program CC=llvm-native-gcc CXX=llvm-native-gxx
14 echo "Erasing $program and re-linking it"
15 rm -f $program
16 echo "rm -f $program" > $linker
17 gmake -n $program >> $linker
23 echo "$program appears to need a dummy __main function; adding one"
[all …]
/minix3/crypto/external/bsd/openssl/dist/test/
H A Ddummytest.c11 char *p, *q = 0, *program; in main() local
37 program = BUF_strdup("(unknown)"); in main()
39 program = OPENSSL_malloc((q - p) + 1); in main()
40 strncpy(program, p, q - p); in main()
41 program[q - p] = '\0'; in main()
44 for (p = program; *p; p++) in main()
48 q = strstr(program, "TEST"); in main()
53 printf("No %s support\n", program); in main()
55 OPENSSL_free(program); in main()
/minix3/external/mit/expat/dist/conftools/
H A DPrintPath91 for program in $programs
95 if [ $test_exec_flag $path/${program}${ext} ] && \
96 [ ! -d $path/${program}${ext} ]; then
98 echo $path/${program}${ext}
105 if [ $test_exec_flag $path/${program} ] && \
106 [ ! -d $path/${program} ]; then
108 echo $path/${program}
/minix3/minix/usr.bin/mined/
H A Dmined2.c1045 static REGEX program; /* Program of expression */ in get_expression() local
1058 compile(exp_buf, &program); /* Compile new expression */ in get_expression()
1061 if (program.status == REG_ERROR) { /* Error during compiling */ in get_expression()
1062 error(program.result.err_mess, NULL); in get_expression()
1065 return &program; in get_expression()
1095 REGEX *program; /* Program resulting from compilation */ in change() local
1104 if ((program = get_expression(mess_buf)) == NULL) in change()
1116 if (line_check(program, line->text, FORWARD)) { in change()
1121 if ((textp = substitute(line, program,replacement)) in change()
1124 } while ((program->status & BEGIN_LINE) != BEGIN_LINE && in change()
[all …]
/minix3/lib/libkvm/
H A Dkvm.c104 _kvm_err(kvm_t *kd, const char *program, const char *fmt, ...) in _kvm_err() argument
109 if (program != NULL) { in _kvm_err()
110 (void)fprintf(stderr, "%s: ", program); in _kvm_err()
121 _kvm_syserr(kvm_t *kd, const char *program, const char *fmt, ...) in _kvm_syserr() argument
127 if (program != NULL) { in _kvm_syserr()
128 (void)fprintf(stderr, "%s: ", program); in _kvm_syserr()
148 _kvm_err(kd, kd->program, "%s", strerror(errno)); in _kvm_malloc()
164 _kvm_syserr(kd, kd->program, "Lseek"); in Lseek()
221 _kvm_syserr(kd, kd->program, "Pread"); in Pread()
269 _kvm_err(kd, kd->program, "md init failed"); in _kvm_open()
[all …]
H A Dkvm_file.c94 _kvm_err(kd, kd->program, "can't read filehead"); in kvm_deadfiles()
108 _kvm_err(kd, kd->program, "can't read kfp"); in kvm_deadfiles()
118 _kvm_err(kd, kd->program, "inconsistent nfiles"); in kvm_deadfiles()
139 _kvm_syserr(kd, kd->program, "kvm_getprocs"); in kvm_getfiles()
145 _kvm_syserr(kd, kd->program, "kvm_getfiles"); in kvm_getfiles()
164 _kvm_err(kd, kd->program, in kvm_getfiles()
169 _kvm_err(kd, kd->program, "can't read numfiles"); in kvm_getfiles()
/minix3/external/bsd/kyua-cli/dist/utils/process/
H A Dchild.cpp161 log_exec(const fs::path& program, const process::args_vector& args) in log_exec() argument
163 std::string plain_command = program.str(); in log_exec()
179 static void cxx_exec(const fs::path& program, const process::args_vector& args)
195 cxx_exec(const fs::path& program, const process::args_vector& args) throw() in cxx_exec() argument
201 argv[0] = program.c_str(); in cxx_exec()
209 ::execv(program.c_str(), in cxx_exec()
214 std::cerr << "Failed to execute " << program << ": " in cxx_exec()
218 std::cerr << "Failed to execute " << program << ": " in cxx_exec()
222 std::cerr << "Failed to execute " << program << "; got unexpected " in cxx_exec()
376 process::child::spawn_capture(const fs::path& program, const args_vector& args) in spawn_capture() argument
[all …]
/minix3/external/bsd/llvm/dist/llvm/docs/CommandGuide/
H A Dllvm-link.rst7 :program:`llvm-link` [*options*] *filename ...*
12 :program:`llvm-link` takes several LLVM bitcode files and links them together
21 Enable binary output on terminals. Normally, :program:`llvm-link` will refuse
23 option, :program:`llvm-link` will write raw bitcode regardless of the output
29 :program:`llvm-link` will write its output to standard output.
37 If specified, :program:`llvm-link` prints a human-readable version of the
46 Verbose mode. Print information about what :program:`llvm-link` is doing.
53 If :program:`llvm-link` succeeds, it will exit with 0. Otherwise, if an error
H A Dllvm-profdata.rst7 :program:`llvm-profdata` *command* [*args...*]
12 The :program:`llvm-profdata` tool is a small utility for working with profile
21 .. program:: llvm-profdata merge
31 :program:`llvm-profdata merge` [*options*] [*filenames...*]
36 :program:`llvm-profdata merge` takes several profile data files
52 .. program:: llvm-profdata show
62 :program:`llvm-profdata show` [*options*] [*filename*]
67 :program:`llvm-profdata show` takes a profile data file and displays the
101 :program:`llvm-profdata` returns 1 if the command is omitted or is invalid,
H A Dllvm-nm.rst7 :program:`llvm-nm` [*options*] [*filenames...*]
12 The :program:`llvm-nm` utility lists the names of symbols from the LLVM bitcode
13 files, object files, or :program:`ar` archives containing them, named on the
16 :program:`llvm-nm` will process a file on its standard input stream.
18 :program:`llvm-nm`'s default output format is the traditional BSD :program:`nm`
60 compiled "just-in-time", :program:`llvm-nm` does not print an address for any
67 .. program:: llvm-nm
132 * :program:`llvm-nm` cannot demangle C++ mangled names, like GNU :program:`nm`
135 * :program:`llvm-nm` does not support the full set of arguments that GNU
136 :program:`nm` does.
[all …]
H A Dlit.rst7 :program:`lit` [*options*] [*tests*]
12 :program:`lit` is a portable tool for executing LLVM and Clang style test
14 :program:`lit` is designed to be a lightweight testing tool with as simple a
17 :program:`lit` should be run with one or more *tests* to run specified on the
22 tests have been run :program:`lit` will print summary information on the number
24 :program:`lit` program will execute with a non-zero exit code if any tests
27 By default :program:`lit` will use a succinct progress display and will only
29 options controlling the :program:`lit` progress display and output.
31 :program:`lit` also includes a number of options for controlling how tests are
35 Finally, :program:`lit` also supports additional options for only running a
[all …]
H A Dllvm-readobj.rst7 :program:`llvm-readobj` [*options*] [*input...*]
12 The :program:`llvm-readobj` tool displays low-level format-specific information
19 If ``input`` is "``-``" or omitted, :program:`llvm-readobj` reads from standard
28 Display the version of this program
79 .. option:: -program-headers
81 Display the ELF program headers (only for ELF object files).
86 :program:`llvm-readobj` returns 0.
H A Dopt.rst7 :program:`opt` [*options*] [*filename*]
12 The :program:`opt` command is the modular LLVM optimizer and analyzer. It
15 function of :program:`opt` depends on whether the :option:`-analyze` option is
18 When :option:`-analyze` is specified, :program:`opt` performs various analyses
22 program.
24 While :option:`-analyze` is *not* given, :program:`opt` attempts to produce an
25 optimized output file. The optimizations available via :program:`opt` depend
30 If ``filename`` is omitted from the command line or is "``-``", :program:`opt`
35 :program:`opt` writes its output to the standard output.
42 Enable binary output on terminals. Normally, :program:`opt` will refuse to
[all …]
H A Dllvm-extract.rst7 :program:`llvm-extract` [*options*] **--func** *function-name* [*filename*]
12 The :program:`llvm-extract` command takes the name of a function and extracts
17 :program:`llvm-extract` will also remove unreachable global variables,
20 The :program:`llvm-extract` command reads its input from standard input if
29 Enable binary output on terminals. Normally, :program:`llvm-extract` will
31 this option, :program:`llvm-extract` will write raw bitcode regardless of the
63 :program:`llvm-extract` sends its output to standard output.
72 If :program:`llvm-extract` succeeds, it will exit with 0. Otherwise, if an error
H A Dtblgen.rst7 :program:`tblgen` [*options*] [*filename*]
12 :program:`tblgen` translates from target description (``.td``) files into C++
14 users of LLVM will not need to use this program. It is only for assisting with
17 The input and output of :program:`tblgen` is beyond the scope of this short
27 .. program:: tblgen
36 :program:`tblgen` sends its output to standard output.
126 Show the version number of this program.
131 If :program:`tblgen` succeeds, it will exit with 0. Otherwise, if an error
H A Dllvm-dwarfdump.rst7 :program:`llvm-dwarfdump` [*options*] [*filenames...*]
12 :program:`llvm-dwarfdump` parses DWARF sections in the object files
29 :program:`llvm-dwarfdump` returns 0. Other exit codes imply internal
30 program error.
/minix3/external/bsd/file/dist/magic/magdir/
H A Dlisp13 #>2 search/4096 !\r Lisp/Scheme program text
16 0 search/4096 (setq\ Lisp/Scheme program text
18 0 search/4096 (defvar\ Lisp/Scheme program text
20 0 search/4096 (defparam\ Lisp/Scheme program text
22 0 search/4096 (defun\ Lisp/Scheme program text
24 0 search/4096 (autoload\ Lisp/Scheme program text
26 0 search/4096 (custom-set-variables\ Lisp/Scheme program text
41 0 string (SYSTEM::VERSION\040' CLISP byte-compiled Lisp program (pre 2004-03-27)
42 0 string (|SYSTEM|::|VERSION|\040' CLISP byte-compiled Lisp program text
/minix3/lib/libc/rpc/
H A Dpmap_clnt.c71 pmap_set(u_long program, u_long version, int protocol, int port) in __weak_alias()
92 rslt = rpcb_set((rpcprog_t)program, (rpcvers_t)version, nconf, na); in __weak_alias()
103 pmap_unset(u_long program, u_long version) in pmap_unset() argument
111 udp_rslt = rpcb_unset((rpcprog_t)program, (rpcvers_t)version, in pmap_unset()
117 tcp_rslt = rpcb_unset((rpcprog_t)program, (rpcvers_t)version, in pmap_unset()
/minix3/external/bsd/bind/dist/bin/confgen/
H A Dddns-confgen.c64 static char program[256]; variable
121 result = isc_file_progname(*argv, program, sizeof(program)); in main()
123 memmove(program, "tsig-keygen", 11); in main()
124 progname = program; in main()
195 program, isc_commandline_option); in main()
202 program, isc_commandline_option); in main()
H A Drndc-confgen.c66 static char program[256]; variable
123 result = isc_file_progname(*argv, program, sizeof(program)); in main()
125 memmove(program, "rndc-confgen", 13); in main()
126 progname = program; in main()
196 program, isc_commandline_option); in main()
203 program, isc_commandline_option); in main()
/minix3/external/bsd/llvm/dist/llvm/autoconf/m4/
H A Dsanity_check.m41 dnl Check a program for version sanity. The test runs a program, passes it an
3 dnl output with a regular expression. If the output is non-empty, the program
5 dnl $1 - Name or full path of the program to run
11 AC_MSG_CHECKING([sanity for program ]$1)
/minix3/tools/host-mkdep/
H A Dconfigure307 -program-prefix | --program-prefix | --program-prefi | --program-pref \
308 | --program-pre | --program-pr | --program-p)
310 -program-prefix=* | --program-prefix=* | --program-prefi=* \
311 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
314 -program-suffix | --program-suffix | --program-suffi | --program-suff \
315 | --program-suf | --program-su | --program-s)
317 -program-suffix=* | --program-suffix=* | --program-suffi=* \
318 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
321 -program-transform-name | --program-transform-name \
322 | --program-transform-nam | --program-transform-na \
[all …]
/minix3/external/bsd/llvm/dist/clang/utils/
H A DCaptureCmd36 program = os.getenv('CAPTURE_CMD_PROGRAM')
39 if not program:
60 os.execv(program, sys.argv)
69 os.execv(program, sys.argv)
/minix3/crypto/external/bsd/libsaslc/etc/
H A DREADME15 Custom configuration files for <program> (for example postfix):
17 /etc/saslc.d/<program>/saslc.conf
18 /etc/saslc.d/<program>/mechs/{ANONYMOUS,CRAM-MD5,DIGEST-MD5}.conf
19 /etc/saslc.d/<program>/mechs/{EXTERNAL,GSSAPI,LOGIN,PLAIN}.conf
/minix3/tools/make/
H A Dconfigure307 -program-prefix | --program-prefix | --program-prefi | --program-pref \
308 | --program-pre | --program-pr | --program-p)
310 -program-prefix=* | --program-prefix=* | --program-prefi=* \
311 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
314 -program-suffix | --program-suffix | --program-suffi | --program-suff \
315 | --program-suf | --program-su | --program-s)
317 -program-suffix=* | --program-suffix=* | --program-suffi=* \
318 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
321 -program-transform-name | --program-transform-name \
322 | --program-transform-nam | --program-transform-na \
[all …]

12345678910>>...27