HomeSort by: relevance | last modified time | path
    Searched refs:program (Results 1 - 25 of 151) sorted by relevancy

1 2 3 4 5 6 7

  /src/tools/autoconf/
Makefile 5 CONFIGURE_ARGS= --program-prefix=${_TOOL_PREFIX}
  /src/lib/librpcsvc/
rwall.x 50 program WALLPROG {
spray.x 4 * media and as a part of the software program in whole or part. Users
7 * program developed by the user.
75 program SPRAYPROG {
yppasswd.x 4 * media and as a part of the software program in whole or part. Users
7 * program developed by the user.
59 program YPPASSWDPROG {
klm_prot.x 4 * media and as a part of the software program in whole or part. Users
7 * program developed by the user.
125 program KLM_PROG {
rusers.x 4 * media and as a part of the software program in whole or part. Users
7 * program developed by the user.
79 program RUSERSPROG {
  /src/sys/arch/sun68k/stand/
README 3 The sun bootblocks are split into two parts: a small 1st-level program that
5 in size to SBSIZE - DEV_BSIZE bytes), and a 2nd-level program that resides
8 The 1st-level program is loaded into memory by the PROM. It loads the second
9 stage program from a set of filesystem block numbers that are hard-coded
10 into it by the `installboot' program. The prototype code for the 1st-level
13 The 2nd-level program (`ufsboot') is normally installed in the root FS
19 boot program:
34 installboot would find the inumber for the 2nd stage boot program
  /src/usr.bin/menuc/testm/
menus.msg 5 Welcome to the menuc (and msg) test program!
  /src/tools/gettext/
Makefile 7 CONFIGURE_ARGS= --program-transform-name="s,^,${_TOOL_PREFIX}," \
  /src/tools/texinfo/
Makefile 5 CONFIGURE_ARGS= --program-prefix=${_TOOL_PREFIX}
  /src/lib/libc/rpc/
pmap_clnt.c 71 pmap_set(u_long program, u_long version, int protocol, int port)
92 rslt = rpcb_set((rpcprog_t)program, (rpcvers_t)version, nconf, na);
99 * Remove the mapping between program, version and port.
103 pmap_unset(u_long program, u_long version)
111 udp_rslt = rpcb_unset((rpcprog_t)program, (rpcvers_t)version,
117 tcp_rslt = rpcb_unset((rpcprog_t)program, (rpcvers_t)version,
  /src/sbin/mount_puffs/
mount_puffs.c 56 fprintf(stderr, "usage: %s [-o options] program[#source] mountpoint\n", getprogname());
85 mount_puffs_filesystem(const char *program, const char *opts,
93 * program [-o opts] [source] mountpoint */
95 argv[argc++] = program;
106 /* We intentionally use execvp(3) here because the program can
108 if (execvp(program, __UNCONST(argv)) == -1) {
109 warn("Cannot execute %s", program);
172 /* Split the program name and source. This is to allow
175 char *program = strsep(&source, "#"); local in function:main
177 rv = mount_puffs_filesystem(program, opts, source, argv[1])
    [all...]
  /src/lib/libc/arch/m68k/sys/
getcontext.S 46 movl %sp@,UC_MCONTEXT_PC(%a0)| adjust saved program counter
  /src/usr.sbin/ypserv/common/
yplib_host.h 49 CLIENT *yp_bind_local(u_int program, u_int version);
50 CLIENT *yp_bind_host(char *server, u_int program, u_int version,
  /src/tools/file/
Makefile 11 CONFIGURE_ARGS= --program-prefix=${_TOOL_PREFIX} --disable-shared \
  /src/tools/gmake/
Makefile 11 CONFIGURE_ARGS= --program-prefix=${_TOOL_PREFIX}g
  /src/lib/libkvm/
kvm.c 99 * Report an error using printf style arguments. "program" is kd->program
105 _kvm_err(kvm_t *kd, const char *program, const char *fmt, ...)
110 if (program != NULL) {
111 (void)fprintf(stderr, "%s: ", program);
122 _kvm_syserr(kvm_t *kd, const char *program, const char *fmt, ...)
128 if (program != NULL) {
129 (void)fprintf(stderr, "%s: ", program);
149 _kvm_err(kd, kd->program, "%s", strerror(errno));
165 _kvm_syserr(kd, kd->program, "Lseek")
    [all...]
kvm_file.c 94 _kvm_err(kd, kd->program, "can't read filehead");
108 _kvm_err(kd, kd->program, "can't read kfp");
118 _kvm_err(kd, kd->program, "inconsistent nfiles");
139 _kvm_syserr(kd, kd->program, "kvm_getprocs");
145 _kvm_syserr(kd, kd->program, "kvm_getfiles");
164 _kvm_err(kd, kd->program,
169 _kvm_err(kd, kd->program, "can't read numfiles");
kvm_getloadavg.c 84 _kvm_err(kd, kd->program,
90 _kvm_err(kd, kd->program, "can't read averunnable");
  /src/include/
regexp.h 91 char program[1]; /* Unwarranted chumminess with compiler. */ member in struct:regexp
  /src/usr.bin/make/unit-tests/
sh-single-line.mk 6 # program, as described in the manual page, section "Shell Commands",
  /src/distrib/atari/floppies/prepare/
install.sh 33 # In a perfect world, this would be a nice C program, with a reasonable
77 The installation program needs to know which disk to consider
80 program.
  /src/games/warp/
config.h.SH 27 * This symbol, if defined, indicates that the program is being compiled
28 * under the EUNICE package under VMS. The program will need to handle
34 * This symbol, if defined, indicates that the program is running under
49 * This symbol, if defined, indicates to the C program that it should
60 * This symbol, if defined, indicates that the C program may use the
65 * This symbol, if defined, indicates that the C program may use the
70 * This symbol, if defined, indicates that the C program may use the
114 * This symbol, if defined, indicates to the C program that it should
116 * The program should be prepared to look up the host name, translate
130 * program should be kept on the basis of the user's full name as oppose
    [all...]
  /src/usr.bin/at/
at.c 67 enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */
590 int program = AT; /* our default program */ local in function:main
603 /* find out what this program is supposed to do */
605 program = ATQ;
608 program = ATRM;
611 program = BATCH;
648 if (program != AT)
651 program = ATRM;
656 if (program != AT
    [all...]
  /src/distrib/hpcarm/liveimage/
Makefile 22 --use-compress-program=${COMPRESS_PROGRAM:Q} \

Completed in 23 milliseconds

1 2 3 4 5 6 7