HomeSort by: relevance | last modified time | path
    Searched defs:special (Results 1 - 25 of 33) sorted by relevancy

1 2

  /src/usr.bin/ctags/
lisp.c 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 int special; local in function:l_entries
72 special = NO;
76 special = YES;
80 special = YES;
89 if (special) {
  /src/sys/arch/sun2/sun2/
mbio.c 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
102 static const char *const special[] = { local in function:mbio_attach
130 for (cpp = special; *cpp != NULL; cpp++) {
obmem.c 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
97 static const char *const special[] = { local in function:obmem_attach
125 for (cpp = special; *cpp != NULL; cpp++) {
mbmem.c 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
110 static const char *const special[] = { local in function:mbmem_attach
144 for (cpp = special; *cpp != NULL; cpp++) {
obio.c 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
107 static const char *const special[] = { local in function:obio_attach
135 for (cpp = special; *cpp != NULL; cpp++) {
  /src/tests/lib/libc/sys/
t_wait_noproc.c 20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
178 const int special[] = { local in function:get_options4
195 const size_t M = (1 << __arraycount(special)) - 1;
197 if (pos < __arraycount(special))
198 return special[pos];
200 pos -= __arraycount(special);
207 for (n = 0; n < __arraycount(special); n++) {
  /src/usr.bin/cmp/
cmp.c 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
69 int ch, fd1, fd2, special; local in function:main
74 special = 0;
78 special = 1; /* careful! Don't use mmap() */
101 special = 1;
111 if (special)
114 special = 1;
139 if (!special) {
143 special = 1;
148 special = 1
    [all...]
  /src/sbin/mount_efs/
mount_efs.c 13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
50 fprintf(stderr, "usage: %s [-o options] special node\n", getprogname());
94 char special[MAXPATHLEN], node[MAXPATHLEN]; local in function:mount_efs
98 mount_efs_parseargs(argc, argv, &args, &mntflags, special, node);
101 err(EXIT_FAILURE, "%s on %s", special, node);
  /src/sys/dev/scsipi/
ssvar.h 25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
38 * Special handlers for impractically different scanner types.
78 struct ss_special *special; /* special handlers for spec. devices */ member in struct:ss_softc
84 * define the special attach routines if configured
  /src/sys/arch/sun68k/sun68k/
autoconf.c 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
131 static const char *const special[] = { local in function:mainbus_attach
146 for (cpp = special; *cpp != NULL; cpp++) {
  /src/sbin/fsirand/
fsirand.c 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
73 "usage: %s [-F] [-p] [-x <constant>] <special>\n",
228 const char *special; local in function:main
266 special = argv[0];
269 fd = open(special, openflags);
271 fd = opendisk(special, openflags, device, sizeof(device), 0);
272 special = device;
275 err(1, "Cannot open `%s'", special);
282 err(1, "%s: cannot get disklabel information", special);
287 getsblock(fd, special, fs)
    [all...]
  /src/sbin/newfs_ext2fs/
newfs_ext2fs.c 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
129 char *s1, *s2, *special; local in function:main
225 special = argv[0];
244 fsi = open(special, fl, 0777);
246 err(EXIT_FAILURE, "can't open file %s", special);
248 err(EXIT_FAILURE, "can't fstat opened %s", special);
252 fsi = opendisk(special, O_RDONLY, device, sizeof(device), 0);
253 special = device;
255 err(EXIT_FAILURE, "%s: open for read", special);
258 fso = open(special, O_WRONLY, 0)
    [all...]
  /src/sbin/newfs_lfs/
newfs.c 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
102 char *progname, *special; variable in typeref:typename:char **
278 special = argv[0];
279 if (strchr(special, '/') == NULL) {
281 special);
284 _PATH_DEV, special);
285 special = device;
288 fso = open(special, O_RDWR, DEFFILEMODE);
291 fso = open(special, O_CREAT | O_RDWR, DEFFILEMODE);
301 fatal("%s: %s", special, strerror(errno))
    [all...]
  /src/sys/arch/acorn32/stand/nbfs/
nbfs.c 24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
90 * Given a RISC OS special field and pathname, open the relevant
94 nbfs_devopen(struct open_file *f, char const *special, char const *fname,
110 err = rodisk_open(f, special, drive, part);
151 nbfs_fopen(struct open_file *f, char const *special, char const *path)
156 err = nbfs_devopen(f, special, path, &tail);
181 char const *special = (char const *)r->r6; local in function:nbfs_open
192 err = nbfs_fopen(&nof->f, special, fname);
274 char const *special = (char const *)r->r6 local in function:nbfs_file
346 char const *special = (char const *)r->r6; local in function:nbfs_func_dirents
    [all...]
  /src/usr.sbin/installboot/
installboot.c 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
128 const char *special, *raw; local in function:main
263 special = getfsspecname(specname, sizeof(specname), argv[0]);
264 if (special == NULL)
266 raw = getdiskrawname(rawname, sizeof(rawname), special);
268 special = raw;
269 params->filesystem = special;
  /src/sbin/tunefs/
tunefs.c 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
108 const char *special, *chg[2]; local in function:main
232 special = argv[0];
235 fi = open(special, openflags);
237 fi = openpartition(special, openflags, device, sizeof(device));
238 special = device;
241 err(1, "%s", special);
243 getsb(&sblock, special);
257 warnx("tuning %s", special);
416 printf("%s: current settings of %s\n", getprogname(), special);
731 const char *special, *raw; local in function:openpartition
    [all...]
  /src/lib/libc/nameser/
ns_name.c 14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
80 static int special(int);
156 if (special(c)) {
881 * is this characted special ("in need of quoting") ?
887 special(int ch) { function in typeref:typename:int
895 /* Special modifiers in zone files. */
  /src/bin/csh/
lex.c 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
438 int special, toolong; local in function:getdol
440 special = 0;
451 special++, *np++ = (Char)c, c = getC(DOEXCL);
457 if (special)
470 if (special)
480 if (special) {
  /src/sbin/newfs/
newfs.c 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
62 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
250 const char *s1, *special, *raw; local in function:main
472 special = argv[0];
487 if (stat(special, &sb) == -1)
500 fsi = open(special, fl, 0777);
502 err(1, "can't open file %s", special);
504 err(1, "can't fstat opened %s", special);
509 raw = getfsspecname(specname, sizeof(specname), special);
511 err(1, "%s: %s", special, specname)
    [all...]
  /src/usr.bin/patch/
pch.c 21 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1158 char special; local in function:another_hunk
1162 special = '^';
1164 special = ' ';
1166 special, p_line[i]);
  /src/bin/ksh/
var.c 31 static int special ARGS((const char *name));
66 * pop a block handling special variables
77 if ((vp = *vpp++) != NULL && (vp->flag&SPECIAL)) {
248 if (special(n))
249 vp->flag |= SPECIAL;
294 if (special(n))
295 vp->flag |= SPECIAL;
306 if ((vp->flag&SPECIAL))
309 s = null; /* special to dollar() */
407 if ((vq->flag&SPECIAL))
924 special(name) function
    [all...]
  /src/usr.sbin/dumplfs/
dumplfs.c 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
88 char *special; variable in typeref:typename:char *
235 special = argv[0];
236 if ((fd = open(special, O_RDONLY, 0)) < 0)
237 err(1, "%s", special);
  /src/sys/arch/amiga/dev/
grf_cv3d.c 26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
586 volatile char *special; local in function:cv3d_boardinit
596 special = ((volatile char*)cv3d_special_register_base +
599 special = ((volatile char*)cv3d_special_register_base);
601 *((volatile short *)(special + 0x10)) = 0;
602 *((volatile long *)(special + 0x4)) = 0x02000003;
  /src/bin/sh/
expand.c 26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
897 int special; local in function:evalvar
906 special = subtype != VSUNKNOWN && !is_name(*p);
920 special = p - var;
923 } else if (special) {
955 if (!set && subtype != VSPLUS && special && *var == '@')
962 if (special) {
967 while (--special > 0) {
990 * that has any potential special meaning
1152 * Test whether a special parameter is set
    [all...]
  /src/usr.bin/telnet/
commands.c 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
126 static int special(const char *);
191 if (*cp == '!') { /* Special case shell escape */
238 special(const char *s) function in typeref:typename:int
261 * for a special character.
311 int (*handler) /* Routine to perform (for special ops) */
314 int what; /* Character to be sent (<0 ==> special) */
921 return (cc_t)((s && *s) ? special(s) : _POSIX_VDISABLE);
997 value = special(argv[2])
    [all...]

Completed in 27 milliseconds

1 2