Symbol: spec
bin/ksh/history.c
528
char *spec, *tok, *state;
bin/ksh/history.c
536
spec = str_save(str, ATEMP);
bin/ksh/history.c
537
for (tok = strtok_r(spec, ":", &state); tok != NULL;
bin/ksh/history.c
544
afree(spec, ATEMP);
games/hack/def.objects.h
292
#define RING(name,stone,spec) { name, stone, NULL, 0, 0,\
games/hack/def.objects.h
293
RING_SYM, 0, 0, 1, spec, 0, 0 }
games/monop/cards.c
162
spec = TRUE;
games/monop/cards.c
166
spec = TRUE;
games/monop/cards.c
210
spec = FALSE;
games/monop/rent.c
72
if (spec)
games/monop/rent.c
78
if (plp->num_util == 2 || spec) {
libexec/ld.so/trace.c
122
_dl_trace_parse_spec(const char *var, struct tracespec *spec)
libexec/ld.so/trace.c
127
spec->inverse = 1;
libexec/ld.so/trace.c
137
spec->spec = _dl_malloc(1 + end - start);
libexec/ld.so/trace.c
138
if (spec->spec == NULL)
libexec/ld.so/trace.c
141
_dl_bcopy(start, spec->spec, end - start);
libexec/ld.so/trace.c
142
spec->spec[end - start] = '\0';
libexec/ld.so/trace.c
155
_dl_trace_match(const char *name, struct tracespec *spec, int allow_so)
libexec/ld.so/trace.c
162
if (spec->spec == NULL)
libexec/ld.so/trace.c
166
list = spec->spec;
libexec/ld.so/trace.c
205
return spec->inverse ? !match : match;
libexec/ld.so/trace.c
33
char *spec; /* comma separated spec entries */
regress/sbin/iked/dh/dhtest.c
67
group->spec->type == GROUP_SNTRUP761X25519)
regress/sbin/iked/dh/dhtest.c
74
name[group->spec->type],
regress/sbin/iked/dh/dhtest.c
75
group->spec->bits, ibuf_length(buf) * 8);
regress/sbin/isakmpd/dh/dhtest.c
60
name[group->spec->type],
regress/sbin/isakmpd/dh/dhtest.c
61
group->spec->bits);
sbin/fsck/fsck.c
196
char *spec, *type;
sbin/fsck/fsck.c
200
spec = *argv;
sbin/fsck/fsck.c
207
spec = *argv;
sbin/fsck/fsck.c
210
spec = fs->fs_spec;
sbin/fsck/fsck.c
217
rval |= checkfs(type, blockcheck(spec), *argv, NULL, NULL);
sbin/fsck/fsck.c
251
checkfs(const char *vfstype, const char *spec, const char *mntpt, void *auxarg,
sbin/fsck/fsck.c
288
argv[argc++] = spec;
sbin/fsck/fsck.c
317
if (spec)
sbin/fsck/fsck.c
318
warn("exec %s for %s", execname, spec);
sbin/fsck/fsck.c
325
if (spec)
sbin/fsck/fsck.c
326
warn("exec %s for %s", execname, spec);
sbin/fsck/fsck.c
352
warnx("%s: %s", spec, strsignal(WTERMSIG(status)));
sbin/ifconfig/ifconfig.c
6301
umb_parse_classes(const char *spec)
sbin/ifconfig/ifconfig.c
6306
if ((optlist = strdup(spec)) == NULL)
sbin/iked/dh.c
296
group->spec = NULL;
sbin/iked/dh.c
313
group->spec = p;
sbin/iked/dh.c
434
if (!BN_hex2bn(&p, group->spec->prime) ||
sbin/iked/dh.c
435
!BN_hex2bn(&g, group->spec->generator) ||
sbin/iked/dh.c
453
if (group->spec == NULL)
sbin/iked/dh.c
455
return (roundup(group->spec->bits, 8) / 8);
sbin/iked/dh.c
511
if ((group->ec = EC_KEY_new_by_curve_name(group->spec->nid)) == NULL)
sbin/iked/dh.c
523
if (group->spec == NULL)
sbin/iked/dh.c
526
return ((roundup(group->spec->bits, 8) * 2) / 8);
sbin/iked/dh.c
740
if (group->spec == NULL)
sbin/iked/dh.h
41
*spec;
sbin/isakmpd/dh.c
247
group->spec = NULL;
sbin/isakmpd/dh.c
272
group->spec = p;
sbin/isakmpd/dh.c
347
if (!BN_hex2bn(&p, group->spec->prime) ||
sbin/isakmpd/dh.c
348
!BN_hex2bn(&g, group->spec->generator)) {
sbin/isakmpd/dh.c
366
if (group->spec == NULL)
sbin/isakmpd/dh.c
368
return (roundup(group->spec->bits, 8) / 8);
sbin/isakmpd/dh.c
422
if ((group->ec = EC_KEY_new_by_curve_name(group->spec->nid)) == NULL)
sbin/isakmpd/dh.c
434
if (group->spec == NULL)
sbin/isakmpd/dh.c
437
return ((roundup(group->spec->bits, 8) * 2) / 8);
sbin/isakmpd/dh.h
39
struct group_id *spec;
sbin/mount/mount.c
336
mountfs(const char *vfstype, const char *spec, const char *name,
sbin/mount/mount.c
408
argv[argc++] = spec;
sbin/mount_nfs/mount_nfs.c
167
char name[PATH_MAX], *options = NULL, *spec;
sbin/mount_nfs/mount_nfs.c
367
spec = *argv++;
sbin/mount_nfs/mount_nfs.c
371
if (!getnfsargs(spec, nfsargsp))
sbin/mount_nfs/mount_nfs.c
383
getnfsargs(char *spec, struct nfs_args *nfsargsp)
sbin/mount_nfs/mount_nfs.c
396
if (strlcpy(nam, spec, sizeof(nam)) >= sizeof(nam)) {
sbin/mount_nfs/mount_nfs.c
400
if ((delimp = strchr(spec, '@')) != NULL) {
sbin/mount_nfs/mount_nfs.c
402
} else if ((delimp = strchr(spec, ':')) != NULL) {
sbin/mount_nfs/mount_nfs.c
403
hostp = spec;
sbin/mount_nfs/mount_nfs.c
404
spec = delimp + 1;
sbin/mount_nfs/mount_nfs.c
462
xdr_dir, spec, xdr_fh, &nfhret, try);
sbin/mount_nfs/mount_nfs.c
510
warnc(nfhret.stat, "can't access %s", spec);
sbin/swapctl/swapctl.c
353
const char *spec;
sbin/swapctl/swapctl.c
358
spec = fp->fs_spec;
sbin/swapctl/swapctl.c
381
spec = strdup(s + strlen(NFSMNTPT));
sbin/swapctl/swapctl.c
382
if (spec == NULL)
sbin/swapctl/swapctl.c
388
if (strlen(spec) == 0) {
sbin/swapctl/swapctl.c
390
free((char *)spec);
sbin/swapctl/swapctl.c
398
execl(PATH_MOUNT, PATH_MOUNT, fp->fs_spec, spec,
sbin/swapctl/swapctl.c
407
free((char *)spec);
sbin/swapctl/swapctl.c
410
} else if (isduid(spec, 0)) {
sbin/swapctl/swapctl.c
419
if (strncmp("/dev/", spec, 5) != 0)
sbin/swapctl/swapctl.c
422
if (stat(spec, &st) == -1) {
sbin/swapctl/swapctl.c
423
warn("%s", spec);
sbin/swapctl/swapctl.c
437
if (swapctl(SWAP_ON, spec, (int)priority) == -1) {
sbin/swapctl/swapctl.c
439
warn("%s", spec);
sbin/swapctl/swapctl.c
446
if (spec != fp->fs_spec)
sbin/swapctl/swapctl.c
447
free((char *)spec);
sbin/unwind/libunbound/services/authzone.c
108
struct auth_master* spec);
sbin/unwind/libunbound/services/authzone.c
4081
xfr_transfer_start_list(struct auth_xfer* xfr, struct auth_master* spec)
sbin/unwind/libunbound/services/authzone.c
4083
if(spec) {
sbin/unwind/libunbound/services/authzone.c
4085
xfr->task_transfer->masters, spec->host);
sbin/unwind/libunbound/services/authzone.c
4108
xfr_probe_start_list(struct auth_xfer* xfr, struct auth_master* spec)
sbin/unwind/libunbound/services/authzone.c
4110
if(spec) {
sbin/unwind/libunbound/services/authzone.c
4112
xfr->task_probe->masters, spec->host);
sbin/unwind/libunbound/services/authzone.c
6883
struct auth_master* spec)
sbin/unwind/libunbound/services/authzone.c
6894
xfr_start_transfer(xfr, env, spec);
sbin/unwind/libunbound/services/authzone.c
6912
xfr_probe_start_list(xfr, spec);
sbin/unwind/libunbound/validator/val_anchor.c
609
skip_to_special(FILE* in, sldns_buffer* buf, int* line, int spec)
sbin/unwind/libunbound/validator/val_anchor.c
618
if(rdlen != 1 || *sldns_buffer_begin(buf) != (uint8_t)spec) {
sbin/unwind/libunbound/validator/val_anchor.c
621
*line, spec);
sbin/unwind/libunbound/validator/val_anchor.c
626
log_err("trusted-keys, line %d, expected %c got EOF", *line, spec);
sys/dev/acpi/acpidev.h
408
uint16_t spec; /* formatted */
sys/dev/acpi/acpisbs.c
117
CHECK(WORD, SPECIFICATION_INFO, spec, -1,
sys/dev/ic/malo.c
2005
struct malo_hw_spec *spec;
sys/dev/ic/malo.c
2008
hdr->size = htole16(sizeof(*hdr) + sizeof(*spec));
sys/dev/ic/malo.c
2011
spec = (struct malo_hw_spec *)(hdr + 1);
sys/dev/ic/malo.c
2013
bzero(spec, sizeof(*spec));
sys/dev/ic/malo.c
2014
memset(spec->PermanentAddress, 0xff, ETHER_ADDR_LEN);
sys/dev/ic/malo.c
2015
spec->CookiePtr = htole32(sc->sc_cookie_dmaaddr);
sys/dev/ic/malo.c
2025
"#Ant %d\n", sc->sc_dev.dv_xname, htole16(spec->HwVersion),
sys/dev/ic/malo.c
2026
htole32(spec->FWReleaseNumber), htole16(spec->NumOfWCB),
sys/dev/ic/malo.c
2027
htole16(spec->NumOfMCastAdr), htole16(spec->RegionCode),
sys/dev/ic/malo.c
2028
htole16(spec->NumberOfAntenna));
sys/dev/ic/malo.c
2031
malo_mem_write4(sc, letoh32(spec->RxPdRdPtr) & 0xffff,
sys/dev/ic/malo.c
2033
malo_mem_write4(sc, letoh32(spec->RxPdWrPtr) & 0xffff,
sys/dev/ic/malo.c
2035
malo_mem_write4(sc, letoh32(spec->WcbBase0) & 0xffff,
sys/dev/ic/malo.c
2039
sc->sc_RxPdRdPtr = letoh32(spec->RxPdRdPtr) & 0xffff;
sys/dev/ic/malo.c
2040
sc->sc_RxPdWrPtr = letoh32(spec->RxPdWrPtr) & 0xffff;
sys/dev/pci/drm/i915/display/intel_pps.c
1519
struct intel_pps_delays *spec)
sys/dev/pci/drm/i915/display/intel_pps.c
1526
spec->power_up = msecs_to_pps_units(10 + 200); /* T1+T3 */
sys/dev/pci/drm/i915/display/intel_pps.c
1527
spec->backlight_on = msecs_to_pps_units(50); /* no limit for T8, use T7 instead */
sys/dev/pci/drm/i915/display/intel_pps.c
1528
spec->backlight_off = msecs_to_pps_units(50); /* no limit for T9, make it symmetric with T8 */
sys/dev/pci/drm/i915/display/intel_pps.c
1529
spec->power_down = msecs_to_pps_units(500); /* T10 */
sys/dev/pci/drm/i915/display/intel_pps.c
1530
spec->power_cycle = msecs_to_pps_units(10 + 500); /* T11+T12 */
sys/dev/pci/drm/i915/display/intel_pps.c
1532
intel_pps_dump_state(intel_dp, "spec", spec);
sys/dev/pci/drm/i915/display/intel_pps.c
1538
struct intel_pps_delays cur, vbt, spec,
sys/dev/pci/drm/i915/display/intel_pps.c
1549
pps_init_delays_spec(intel_dp, &spec);
sys/dev/pci/drm/i915/display/intel_pps.c
1554
spec.field : \
sys/dev/pci/if_mwxreg.h
1121
uint32_t spec[13];
usr.bin/cvs/date.y
96
spec : /* NULL */
usr.bin/cvs/date.y
97
| spec item
usr.bin/getconf/getconf.c
566
compilation_spec_valid(const char *spec)
usr.bin/getconf/getconf.c
571
if (strncmp(spec, posix_prefix, sizeof(posix_prefix) - 1) != 0)
usr.bin/getconf/getconf.c
574
spec += sizeof(posix_prefix) - 1;
usr.bin/getconf/getconf.c
576
if (strcmp(spec, *sp) == 0)
usr.bin/getconf/getconf.c
582
if (strcmp(spec, cp->name) == 0 && cp->type == SYSCONF)
usr.bin/hexdump/display.c
205
static const char *spec = " -0+#";
usr.bin/hexdump/display.c
216
for (p2 = ++p1; *p1 && strchr(spec, *p1); ++p1);
usr.bin/hexdump/parse.c
152
static const char *spec = ".#-+ 0123456789";
usr.bin/hexdump/parse.c
175
while (*++fmt && strchr(spec + 1, *fmt));
usr.bin/hexdump/parse.c
249
for (++p1; *p1 && strchr(spec, *p1); ++p1);
usr.bin/hexdump/parse.c
252
while (*++p1 && strchr(spec + 1, *p1));
usr.bin/rcs/date.y
97
spec : /* NULL */
usr.bin/rcs/date.y
98
| spec item
usr.bin/ssh/servconf.c
2787
parse_server_match_testspec(struct connection_info *ci, char *spec)
usr.bin/ssh/servconf.c
2792
while ((p = strsep(&spec, ",")) && *p != '\0') {
usr.sbin/config/gram.y
327
specs spec |
usr.sbin/config/gram.y
330
spec:
usr.sbin/mtree/extern.h
47
struct _node *spec(void);
usr.sbin/mtree/verify.c
60
root = spec();
usr.sbin/unbound/services/authzone.c
108
struct auth_master* spec);
usr.sbin/unbound/services/authzone.c
4081
xfr_transfer_start_list(struct auth_xfer* xfr, struct auth_master* spec)
usr.sbin/unbound/services/authzone.c
4083
if(spec) {
usr.sbin/unbound/services/authzone.c
4085
xfr->task_transfer->masters, spec->host);
usr.sbin/unbound/services/authzone.c
4108
xfr_probe_start_list(struct auth_xfer* xfr, struct auth_master* spec)
usr.sbin/unbound/services/authzone.c
4110
if(spec) {
usr.sbin/unbound/services/authzone.c
4112
xfr->task_probe->masters, spec->host);
usr.sbin/unbound/services/authzone.c
6883
struct auth_master* spec)
usr.sbin/unbound/services/authzone.c
6894
xfr_start_transfer(xfr, env, spec);
usr.sbin/unbound/services/authzone.c
6912
xfr_probe_start_list(xfr, spec);
usr.sbin/unbound/validator/val_anchor.c
609
skip_to_special(FILE* in, sldns_buffer* buf, int* line, int spec)
usr.sbin/unbound/validator/val_anchor.c
618
if(rdlen != 1 || *sldns_buffer_begin(buf) != (uint8_t)spec) {
usr.sbin/unbound/validator/val_anchor.c
621
*line, spec);
usr.sbin/unbound/validator/val_anchor.c
626
log_err("trusted-keys, line %d, expected %c got EOF", *line, spec);