Searched refs:name (Results 76 - 100 of 5975) sorted by relevance

1234567891011>>

/freebsd-9.3-release/etc/rc.d/
H A Dzvol12 name="zvol"
21 zfs list -H -o org.freebsd:swap,name -t volume | \
22 while read state name; do
25 swapon /dev/zvol/${name}
34 zfs list -H -o org.freebsd:swap,name -t volume | \
35 while read state name; do
38 swapoff /dev/zvol/${name}
44 load_rc_config $name
H A Dhastd13 name="hastd"
15 pidfile="/var/run/${name}.pid"
16 command="/sbin/${name}"
28 load_rc_config $name
H A Dipmon13 name="ipmon"
15 command="/sbin/${name}"
24 err 1 "${name} requires either ipfilter or ipnat enabled"
32 load_rc_config $name
H A Dkadmind12 name="kadmind5"
13 load_rc_config $name
H A Dkerberos11 name="kerberos5"
14 load_rc_config $name
H A Dkpasswdd12 name="kpasswdd"
13 load_rc_config $name
/freebsd-9.3-release/lib/libutil/
H A Dauth.c39 auth_getval(const char *name) argument
42 (void)name;
/freebsd-9.3-release/tools/regression/geom_concat/
H A Dconf.sh4 name="test"
/freebsd-9.3-release/tools/regression/geom_mirror/
H A Dconf.sh4 name="test"
/freebsd-9.3-release/tools/regression/geom_raid3/
H A Dconf.sh4 name="test"
/freebsd-9.3-release/tools/regression/geom_shsec/
H A Dconf.sh4 name="test"
/freebsd-9.3-release/tools/regression/geom_stripe/
H A Dconf.sh4 name="test"
/freebsd-9.3-release/tools/regression/usr.bin/pkill/
H A Dpgrep-q.t8 name="pgrep -q"
17 echo "ok 1 - $name"
19 echo "not ok 1 - $name"
22 echo "ok 2 - $name"
24 echo "not ok 2 - $name"
28 echo "ok 3 - $name"
30 echo "not ok 3 - $name"
33 echo "ok 4 - $name"
35 echo "not ok 4 - $name"
/freebsd-9.3-release/usr.sbin/ctm/ctm_rmail/
H A Derror.h4 extern void err_prog_name(char *name);
/freebsd-9.3-release/contrib/ntp/scripts/rc/rc.d/
H A Dntpd9 name="ntpd"
11 command="/usr/sbin/${name}"
12 pidfile="/var/run/${name}.pid"
15 load_rc_config $name
/freebsd-9.3-release/contrib/ncurses/ncurses/trace/
H A Dlib_tracechr.c23 * Except as contained in this notice, the name(s) of the above copyright *
49 NCURSES_CONST char *name; local
55 name = _nc_keyname(sp, ch);
56 if (name == 0 || *name == '\0')
57 name = "NULL";
58 (void) sprintf(MyBuffer, "'%.30s' = %#03o", name, ch);
67 name = _nc_unctrl(sp, (chtype) ch);
68 if (name == 0 || *name
[all...]
/freebsd-9.3-release/sys/powerpc/include/
H A Dmmuvar.h87 #define MMU_DEF(name, ident, methods, size) \
89 mmu_def_t name = { \
92 DATA_SET(mmu_set, name)
94 #define MMU_DEF_INHERIT(name, ident, methods, size, base1) \
96 static kobj_class_t name ## _baseclasses[] = \
98 mmu_def_t name = { \
99 ident, methods, size, name ## _baseclasses \
101 DATA_SET(mmu_set, name)
105 mmu_def_t name = { \
106 ident, methods, size, name ## _baseclasse
[all...]
/freebsd-9.3-release/sys/dev/fb/
H A Dsplashreg.h37 char *name; member in struct:image_decoder
49 #define SPLASH_DECODER(name, sw) \
50 static int name##_modevent(module_t mod, int type, void *data) \
63 static moduledata_t name##_mod = { \
64 #name, \
65 name##_modevent, \
68 DECLARE_MODULE(name, name##_mod, SI_SUB_DRIVERS, SI_ORDER_ANY); \
69 MODULE_DEPEND(name, splash, 1, 1, 1)
71 #define SAVER_MODULE(name, s
[all...]
/freebsd-9.3-release/contrib/ncurses/misc/
H A Dcmpdef.cmd23 * Except as contained in this notice, the name(s) of the above copyright *
78 * We retrieve the symbol name (NAME) and its number (NUMBER)
80 parse pull '"' name '"' '@'number rest
81 if number = '' || name = '' then
84 say 'Symbol' name 'has no number'
89 numbers.name = number
90 names.number = name
100 parse pull '"' name '"' '@'number rest
101 if name = '' | number = '' then
104 say 'Symbol' name 'ha
[all...]
/freebsd-9.3-release/contrib/ipfilter/test/
H A Dnatipftest3 name=$2
39 echo "$name...";
40 /bin/cp /dev/null results/$name
42 echo "$rule" | ../ipftest -R $format -b -r regress/$name.ipf -N - -i input/$name >> \
43 results/$name;
47 echo "-------------------------------" >> results/$name
48 done ) < regress/$name.nat
49 cmp expected/$name results/$name
[all...]
/freebsd-9.3-release/usr.bin/mail/
H A Dvars.c13 * 4. Neither the name of the University nor the names of its contributors
51 assign(const char *name, const char *value) argument
56 h = hash(name);
57 vp = lookup(name);
60 vp->v_name = vcopy(name);
107 value(const char *name) argument
111 if ((vp = lookup(name)) == NULL)
112 return (getenv(name));
122 lookup(const char *name) argument
126 for (vp = variables[hash(name)]; v
137 findgroup(char name[]) argument
151 printgroup(char name[]) argument
171 hash(const char *name) argument
[all...]
/freebsd-9.3-release/contrib/cvs/lib/
H A Dgethostname.c1 /* hostname.c -- use uname() to get the name of the host
29 /* Put this host's name into NAME, using at most NAMELEN characters */
32 gethostname(name, namelen)
33 char *name;
41 (void) strncpy(name, ugnm.nodename, namelen-1);
42 name[namelen-1] = '\0';
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A Dregcclass.h21 * 3. Neither the name of the University nor the names of its contributors
42 const char *name; member in struct:cclass
H A Dregcname.h19 * 3. Neither the name of the University nor the names of its contributors
38 /* character-name table */
40 const char *name; member in struct:cname
/freebsd-9.3-release/contrib/texinfo/info/
H A Dkey.h28 char *name; member in struct:__anon4238

Completed in 242 milliseconds

1234567891011>>