| /illumos-gate/usr/src/test/util-tests/tests/cpmvln/ |
| H A D | ln-LP.ksh | 55 ["file"]=(make="touch" hard="pass" soft="pass") 56 ["dir"]=(make="mkdir" hard="fail" soft="pass") 57 ["fifo"]=(make="$lnlp_mkobj -f" hard="pass" soft="pass") 58 ["door"]=(make="$lnlp_mkobj -d" hard="fail" soft="pass") 59 ["uds"]=(make="$lnlp_mkobj -s" hard="pass" soft="pass") 240 test_series "$XLN defaults" hard $XLN 246 test_series "$LN -L" hard $LN -L 251 test_series "$LN -L wins (-PL)" hard $LN -PL 252 test_series "$LN -L wins (-LPLPL)" hard $LN -LPLPL 253 test_series "$LN -L wins (-PPPL)" hard $LN -PPPL [all …]
|
| /illumos-gate/usr/src/cmd/sh/ |
| H A D | ulimit.c | 64 int hard, soft, cnt, c, res; in sysulimit() local 80 hard = 0; in sysulimit() 90 hard++; in sysulimit() 137 if (!hard && !soft) { in sysulimit() 162 if (hard && soft) { in sysulimit() 165 if (hard) { in sysulimit() 225 if (!hard && !soft) { in sysulimit() 226 hard++; in sysulimit() 229 if (hard) { in sysulimit()
|
| /illumos-gate/usr/src/uts/common/inet/tcp/ |
| H A D | tcp_sig.c | 288 tcpsig_check_lifetimes(sadb_lifetime_t *hard, sadb_lifetime_t *soft) in tcpsig_check_lifetimes() argument 290 if (hard == NULL || soft == NULL) in tcpsig_check_lifetimes() 293 if (hard->sadb_lifetime_addtime != 0 && in tcpsig_check_lifetimes() 295 hard->sadb_lifetime_addtime < soft->sadb_lifetime_addtime) { in tcpsig_check_lifetimes() 299 if (hard->sadb_lifetime_usetime != 0 && in tcpsig_check_lifetimes() 301 hard->sadb_lifetime_usetime < soft->sadb_lifetime_usetime) { in tcpsig_check_lifetimes() 316 tcpsig_update_lifetimes(tcpsig_sa_t *sa, sadb_lifetime_t *hard, in tcpsig_update_lifetimes() argument 323 if (hard != NULL) { in tcpsig_update_lifetimes() 324 if (hard->sadb_lifetime_usetime != 0) in tcpsig_update_lifetimes() 325 sa->ts_harduselt = hard->sadb_lifetime_usetime; in tcpsig_update_lifetimes() [all …]
|
| /illumos-gate/usr/src/cmd/picl/plugins/sun4u/chicago/envd/ |
| H A D | envmodel.info | 77 #define ENV_DISK0 hard-disk0 78 #define ENV_DISK1 hard-disk1 79 #define ENV_DISK2 hard-disk2 80 #define ENV_DISK3 hard-disk3 149 * Internal hard disks 152 PROP Label string r 0 "hard-disk0" 156 PROP Label string r 0 "hard-disk1" 160 PROP Label string r 0 "hard-disk2" 164 PROP Label string r 0 "hard-disk3"
|
| /illumos-gate/usr/src/cmd/csh/ |
| H A D | sh.func.c | 77 void plim(struct limits *lp, tchar hard); 1321 tchar hard = 0; in dolimit() local 1328 hard = 1; in dolimit() 1333 plim(lp, hard); in dolimit() 1339 plim(lp, hard); in dolimit() 1350 if (setlim(lp, hard, limit) < 0) { in dolimit() 1494 plim(struct limits *lp, tchar hard) in plim() argument 1506 limit = hard ? rlim.rlim_max : rlim.rlim_cur; in plim() 1524 tchar hard = 0; in dounlimit() local 1531 hard = 1; in dounlimit() [all …]
|
| /illumos-gate/usr/src/uts/common/os/ |
| H A D | cyclic.c | 1412 uchar_t hard = softbuf->cys_hard; in cyclic_expand_xcall() local 1417 ASSERT(hard == softbuf->cys_soft); in cyclic_expand_xcall() 1418 ASSERT(hard == 0 || hard == 1); in cyclic_expand_xcall() 1419 ASSERT(softbuf->cys_buf[hard].cypc_buf != NULL); in cyclic_expand_xcall() 1421 softbuf->cys_hard = hard ^ 1; in cyclic_expand_xcall() 1428 ASSERT(softbuf->cys_buf[hard ^ 1].cypc_buf != NULL); in cyclic_expand_xcall() 1429 ASSERT(softbuf->cys_buf[hard ^ 1].cypc_prodndx == 0); in cyclic_expand_xcall() 1430 ASSERT(softbuf->cys_buf[hard ^ 1].cypc_consndx == 0); in cyclic_expand_xcall() 1485 char hard = softbuf->cys_hard; in cyclic_expand() local 1486 cyc_pcbuffer_t *pc = &softbuf->cys_buf[hard ^ 1]; in cyclic_expand() [all …]
|
| /illumos-gate/usr/src/cmd/picl/plugins/sun4u/enchilada/envd/ |
| H A D | envmodel.info | 58 #define ENV_DISK0 hard-disk0 59 #define ENV_DISK1 hard-disk1 141 * Internal hard disks 144 PROP Label string r 0 "hard-disk0" 148 PROP Label string r 0 "hard-disk1"
|
| /illumos-gate/usr/src/uts/common/io/fibre-channel/fca/qlc/ |
| H A D | qlc.conf | 104 enable-adapter-hard-loop-ID=0; 111 adapter-hard-loop-ID=0;
|
| /illumos-gate/usr/src/cmd/plimit/ |
| H A D | plimit.c | 321 char *hard = strtok_r(NULL, " \t", &lastc); in parse_limits() local 324 if (hard != NULL && strtok_r(NULL, " \t", &lastc) != NULL) in parse_limits() 336 if (hard == NULL || *hard == '\0') { in parse_limits() 340 if (limit_value(which, hard, &rp->rlim_max) != 0) in parse_limits()
|
| /illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/ |
| H A D | ipseckey.c | 1762 struct sadb_lifetime *hard = NULL, *soft = NULL; /* Current? */ in doaddup() local 2561 if (hard == NULL) { in doaddup() 2562 hard = malloc(sizeof (*hard)); in doaddup() 2563 if (hard == NULL) in doaddup() 2565 bzero(hard, sizeof (*hard)); in doaddup() 2566 hard->sadb_lifetime_exttype = in doaddup() 2568 hard->sadb_lifetime_len = in doaddup() 2569 SADB_8TO64(sizeof (*hard)); in doaddup() 2570 totallen += sizeof (*hard); in doaddup() 2574 if (hard->sadb_lifetime_allocations != 0) { in doaddup() [all …]
|
| /illumos-gate/usr/src/lib/libipsecutil/common/ |
| H A D | ipsec_util.c | 1980 struct sadb_lifetime *hard, struct sadb_lifetime *soft, in print_lifetimes() argument 1998 if (hard != NULL && in print_lifetimes() 1999 hard->sadb_lifetime_len != SADB_8TO64(sizeof (*hard))) { in print_lifetimes() 2002 SADB_64TO8(hard->sadb_lifetime_len)); in print_lifetimes() 2127 if (hard != NULL) { in print_lifetimes() 2133 hard->sadb_lifetime_bytes, in print_lifetimes() 2134 bytecnt2out(hard->sadb_lifetime_bytes, byte_str, in print_lifetimes() 2136 hard->sadb_lifetime_allocations); in print_lifetimes() 2139 hard_prefix, hard->sadb_lifetime_addtime, in print_lifetimes() 2140 secs2out(hard->sadb_lifetime_addtime, secs_str, in print_lifetimes() [all …]
|
| /illumos-gate/usr/src/grub/grub-0.97/docs/ |
| H A D | menu.lst | 75 # For installing GRUB into the hard disk 76 title Install GRUB into the hard disk
|
| H A D | grub.info-1 | 250 Support reading data from any or all floppies or hard disk(s) 353 Here, `hd' means it is a hard disk drive. The first integer `0' 354 indicates the drive number, that is, the first hard disk, while the 358 expression means the second partition of the first hard disk drive. In 364 This specifies the first "extended partition" of the first hard disk 367 on your hard disk. 371 This means the BSD `a' partition of the second hard disk. If you 402 partition of the first hard disk drive. Note that the argument 420 drive (floppy or hard disk). There are two ways of doing that - either 428 computer if, by any chance, your hard drive becomes unusable [all …]
|
| H A D | grub.info-3 | 66 hard disks, the partition table) of the sector the Stage 1 is to 70 properly when booting from a hard disk drive. Therefore, you will 162 This command is limited to _primary_ PC partitions on a hard disk. 178 The example exchanges the order between the first hard disk and the 179 second hard disk. See also *Note DOS/Windows::. 338 INSTALL_DEVICE is a hard disk, then embed a Stage 1.5 in the disk 430 The stage2 or stage1.5 is being read from a hard disk, and the 431 attempt to determine the size and geometry of the hard disk failed. 437 is different than for hard disks. 1031 your hard disk drives and your BIOS. [all …]
|
| H A D | grub.texi | 303 Support reading data from any or all floppies or hard disk(s) recognized 397 Here, @samp{hd} means it is a hard disk drive. The first integer 398 @samp{0} indicates the drive number, that is, the first hard disk, while 402 one. This expression means the second partition of the first hard disk 410 This specifies the first @dfn{extended partition} of the first hard disk 413 partitions on your hard disk. 419 This means the BSD @samp{a} partition of the second hard disk. If you 455 partition of the first hard disk drive. Note that the argument 471 drive (floppy or hard disk). There are two ways of doing that - either 479 if, by any chance, your hard drive becomes unusable (unbootable). [all …]
|
| H A D | grub.info | 251 Support reading data from any or all floppies or hard disk(s) 354 Here, `hd' means it is a hard disk drive. The first integer `0' 355 indicates the drive number, that is, the first hard disk, while the 359 expression means the second partition of the first hard disk drive. In 365 This specifies the first "extended partition" of the first hard disk 368 on your hard disk. 372 This means the BSD `a' partition of the second hard disk. If you 403 partition of the first hard disk drive. Note that the argument 421 drive (floppy or hard disk). There are two ways of doing that - either 429 computer if, by any chance, your hard drive becomes unusable [all …]
|
| /illumos-gate/usr/src/cmd/more/ |
| H A D | more.c | 180 int hard, dumb, noscroll, hardtabs, clreol; variable 550 if (hard && promptlen > 0) in screen() 673 if (!hard) { in prompt() 767 if (hardtabs && column < promptlen && !hard) { in getaline() 860 if (hard) { in prmpt_erase() 941 if (clear_screen && !hard) { in doclear() 1547 hard++; /* Hard copy terminal */ in initterm() 1555 if (tailequ(fnames[0], "page") || !hard && (scroll_forward == NULL)) in initterm() 1639 if (hard) { in ttyin()
|
| /illumos-gate/usr/src/uts/common/fs/zfs/ |
| H A D | dmu_traverse.c | 223 boolean_t hard = td->td_flags & TRAVERSE_HARD; in traverse_visitbp() local 415 if (hard && (err == EIO || err == ECKSUM)) { in traverse_visitbp() 698 boolean_t hard = (flags & TRAVERSE_HARD); in traverse_pool() local 713 if (hard) in traverse_pool() 726 if (hard) in traverse_pool()
|
| /illumos-gate/usr/src/uts/common/fs/autofs/ |
| H A D | auto_subr.c | 335 bool_t hard) /* retry forever? */ in auto_calldaemon() argument 374 if (hard) { in auto_calldaemon() 564 if (hard) { in auto_calldaemon() 614 auto_null_request(zoneid_t zoneid, bool_t hard) in auto_null_request() argument 621 xdr_void, NULL, xdr_void, NULL, 0, hard); in auto_null_request() 632 bool_t hard, in auto_lookup_request() argument 666 (void *)resp, sizeof (autofs_lookupres), hard); in auto_lookup_request() 734 bool_t hard) in auto_mount_request() argument 764 (void *)xdrres, sizeof (autofs_mountres), hard); in auto_mount_request() 806 bool_t hard) in auto_send_unmount_request() argument [all …]
|
| /illumos-gate/usr/src/uts/common/inet/ip/ |
| H A D | sadb.c | 811 sadb_hardsoftchk(sadb_lifetime_t *hard, sadb_lifetime_t *soft, in sadb_hardsoftchk() argument 814 if (hard == NULL || soft == NULL) in sadb_hardsoftchk() 817 if (hard->sadb_lifetime_allocations != 0 && in sadb_hardsoftchk() 819 hard->sadb_lifetime_allocations < soft->sadb_lifetime_allocations) in sadb_hardsoftchk() 822 if (hard->sadb_lifetime_bytes != 0 && in sadb_hardsoftchk() 824 hard->sadb_lifetime_bytes < soft->sadb_lifetime_bytes) in sadb_hardsoftchk() 827 if (hard->sadb_lifetime_addtime != 0 && in sadb_hardsoftchk() 829 hard->sadb_lifetime_addtime < soft->sadb_lifetime_addtime) in sadb_hardsoftchk() 832 if (hard->sadb_lifetime_usetime != 0 && in sadb_hardsoftchk() 834 hard->sadb_lifetime_usetime < soft->sadb_lifetime_usetime) in sadb_hardsoftchk() [all …]
|
| /illumos-gate/usr/src/cmd/initpkg/init.d/ |
| H A D | README | 40 scripts be hard-linked from the same file stored in /etc/init.d/. 50 matching 'K' script, and they are both hard linked to a script in
|
| /illumos-gate/usr/src/lib/libc/port/regex/ |
| H A D | engine.c | 604 int hard; in backref() local 614 hard = 0; in backref() 615 for (ss = startst; !hard && ss < stopst; ss++) in backref() 681 hard = 1; in backref() 684 if (!hard) { /* that was it! */ in backref()
|
| /illumos-gate/usr/src/contrib/ast/src/cmd/INIT/ |
| H A D | CONVERT.mk | 5 * directory name $(MAKEFILE:D). The hard work is in the makefile using
|
| /illumos-gate/usr/src/contrib/ast/src/cmd/msgcc/ |
| H A D | NOTES | 24 undefined references to { USAGE_LICENSE ERROR_CATALOG } are hard
|
| /illumos-gate/usr/src/tools/smatch/src/Documentation/ |
| H A D | arm64-detecting-tagged-addresses.txt | 16 Untagged variables are detected by looking for hard-coded known struct 17 members (such as vm_start, vm_end and addr_limit) and hard-coded known
|