Searched refs:old (Results 176 - 200 of 387) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/cmd/sendmail/db/log/
H A Dlog_put.c537 char old[sizeof(LFPREFIX) + 5 + 20], new[sizeof(LFPREFIX) + 10 + 20]; local
545 * both the old-style and new-style log file names. The trick is
547 * read-only want to use an old-style file name if they can't find
549 * callers may check for the old-style when they really don't need
551 * the old-style name when we've already failed to find a new-style
569 * the caller isn't interested in old-style files.
574 /* Create an old-style file name. */
575 (void)snprintf(old, sizeof(old), LFNAME_V1, filenumber);
577 DB_APP_LOG, dblp->dir, old,
[all...]
/illumos-gate/usr/src/cmd/genmsg/
H A Dgenmsg.l435 int c, old = 0; /* input character */
451 if (c == skip_ch && old != '\\') {
468 if (old == '\\') {
469 old = '\0';
471 old = c;
484 int c, old = 0; /* input character */
502 if (c == '/' && old == '*') {
511 *ptr++ = old = c;
/illumos-gate/usr/src/cmd/svc/configd/
H A Dconfigd.c298 sigset_t new, old; local
316 (void) pthread_sigmask(SIG_SETMASK, &new, &old);
319 (void) pthread_sigmask(SIG_SETMASK, &old, NULL);
323 (void) pthread_sigmask(SIG_SETMASK, &old, NULL);
/illumos-gate/usr/src/psm/stand/boot/sparc/common/
H A Dsparcv9_subr.s211 * splx - set PIL back to that indicated by the old %PSR passed as an argument,
269 mov %o1, %o0 ! return the old pil
/illumos-gate/usr/src/uts/common/os/
H A Dpg.c211 #define PG_CPUPART_MOVE(class, cp, old, new) \
214 pg_classes[class].pgc_ops->cpupart_move(cp, old, new); \
792 * "old" and "new" are the outgoing and incoming threads, respectively.
795 pg_ev_thread_swtch(struct cpu *cp, hrtime_t now, kthread_t *old, kthread_t *new) argument
805 pg->pg_cb.thread_swtch(pg, cp, now, old, new);
H A Ddumpsubr.c549 dumpcfg_t *old = &dumpcfg; local
550 dumpcfg_t newcfg = *old;
558 if (old->helper != NULL) {
561 hpend = &old->helper[old->nhelper];
562 for (hp = old->helper; hp != hpend; hp++) {
568 kmem_free(old->helper, old->nhelper * sizeof (helper_t));
571 cpend = &old->cmap[old
[all...]
H A Dcontract.c1646 * active template. Frees the old active template, if there was one.
1653 ct_template_t *old; local
1656 old = curlwp->lwp_ct_active[template->ctmpl_type->ct_type_index];
1660 if (old)
1661 ctmpl_free(old);
1719 * by a contract type's ctop_dup template op. Returns with the old
1724 ctmpl_copy(ct_template_t *new, ct_template_t *old) argument
1727 mutex_enter(&old->ctmpl_lock);
1728 new->ctmpl_ops = old->ctmpl_ops;
1729 new->ctmpl_type = old
2498 ct_kevent_t *old; local
[all...]
H A Dipc.c243 * 3) All old slots are locked, in order.
246 * the old table.
249 * 8) All slot locks (old and new) are dropped.
259 * Because we can't guarantee that threads aren't accessing the old
871 ipc_slot_t *new, *old; local
886 old = service->ipcs_table;
888 mutex_enter(&old[i].ipct_lock);
891 new[i].ipct_seq = old[i].ipct_seq;
892 new[i].ipct_data = old[i].ipct_data;
893 old[
[all...]
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_ruleval.c104 * Grow 'old' from 'oldCount' to 'newCount' elements, initialize the
107 * refer only to the returned array, not to 'old'.
110 growRuleValue(int oldCount, int newCount, __nis_rule_value_t *old, argument
117 return (old);
121 old = 0;
127 rv = realloc(old, newCount * sizeof (rv[0]));
133 freeRuleValue(old, oldCount);
472 * which case the '*rval' pointer will change; the old '*rval'
674 __nis_value_t *tmpval, *old; local
713 old
[all...]
/illumos-gate/usr/src/cmd/pbind/
H A Dpbind.c152 bind_out(id_t pid, id_t lwpid, processorid_t old, processorid_t new) argument
165 if (old == PBIND_NONE) {
175 "now not bound\n"), proclwp, pidstr, old);
178 "now %d\n"), proclwp, pidstr, old, new);
/illumos-gate/usr/src/lib/libnwam/common/
H A Dlibnwam_values.c156 nwam_value_copy(nwam_value_t old, nwam_value_t *newp) argument
160 assert(old != NULL && newp != NULL);
162 switch (old->nwv_value_type) {
164 values = old->nwv_values.nwv_boolean;
167 values = old->nwv_values.nwv_int64;
170 values = old->nwv_values.nwv_uint64;
173 values = old->nwv_values.nwv_string;
178 return (nwam_value_create(old->nwv_value_type, values,
179 old->nwv_value_numvalues, newp));
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_upgrade/
H A Dzfs_upgrade_001_pos.ksh37 # the current system version and list all old-version filesystems.
38 # If no old-version filesystems be founded, it prints out
42 # 1. Prepare a set of datasets which contain old-version and current version.
44 # the current system version and list all old-version filesystems.
45 # 3. Remove all old-version filesystems, then execute 'zfs upgrade' again,
70 typeset oldoutput=/tmp/zfs-versions-old.$$
115 log_fail "More old-version filesystems print out than expect."
136 log_fail "Unexpect old-version filesystems print out."
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dnewscreen.c80 SCREEN *old = SP; local
265 SP = old;
/illumos-gate/usr/src/lib/libbc/libc/sys/common/sparc/
H A Dcerror.s27 ! back to the old name.
/illumos-gate/usr/src/lib/libm/i386/src/
H A Dexpm1f.s85 fstcw (%esp) / restore old RP
116 fstcw (%esp) / restore old RP
/illumos-gate/usr/src/common/crypto/md5/amd64/
H A Dmd5_amd64.pl28 # rax A r8 old A
29 # rbx B r9 old B
34 # rbp - r14 old C
35 # rsp stack r15 old D
202 2: / save old values of A, B, C, D
276 / add old values of A, B, C, D
/illumos-gate/usr/src/cmd/mdb/sparc/kmdb/kctl/
H A Dkctl_isadep.c288 kctl_boot_tmpfini(void *old) argument
290 (void) kctl_curthread_set(old);
/illumos-gate/usr/src/cmd/fs.d/pcfs/fsck/
H A Dclusters.c459 freeClusterInfo(ClusterInfo *old) argument
461 if (--old->refcnt <= 0) {
462 if (old->path && --old->path->references <= 0) {
463 free(old->path->fullName);
464 free(old->path);
466 old->nextfree = pool;
467 pool = old;
957 * newSize should always be smaller than the old one, since
/illumos-gate/usr/src/uts/i86pc/vm/
H A Dhtable.h277 x86pte_t old, x86pte_t *ptr, boolean_t tlb);
280 x86pte_t old, x86pte_t new);
/illumos-gate/usr/src/test/zfs-tests/tests/functional/acl/nontrivial/
H A Dzfs_acl_chmod_owner_001_pos.ksh191 typeset old=$3
199 if [[ $user == $old || $acl_target == *:allow ]]; then
/illumos-gate/usr/src/lib/libproc/common/
H A DPutil.c62 list_unlink(void *old) argument
64 plist_t *p = old;
/illumos-gate/usr/src/lib/libtnfctl/
H A Dprobes.c103 /* reset old and new of current objects */
105 cur_obj->old = B_TRUE;
145 if (cur_obj->old == B_TRUE) {
172 * appropriate (new, old, or neither)
185 if (cur_obj->old == B_TRUE) {
357 entry_p->old = B_FALSE;
367 entry_p->old = B_FALSE;
/illumos-gate/usr/src/cmd/sgs/prof/common/
H A Dprofv.c588 does_overlap(ProfModule *new, mod_info_t *old) argument
590 /* case 1: new module lies completely *before* the old one */
591 if (new->startaddr < old->load_base && new->endaddr <= old->load_base)
594 /* case 2: new module lies completely *after* the old one */
595 if (new->startaddr >= old->load_end && new->endaddr >= old->load_end)
679 * existing module. If yes, deactivate the old one.
816 * Check the magic and see if this is versioned or *old-style*
/illumos-gate/usr/src/uts/intel/pcbe/
H A Dp123_pcbe.c84 static int64_t diff3931(uint64_t sample, uint64_t old);
1038 diff3931(uint64_t sample, uint64_t old) argument
1042 if ((old & BITS_39_31) == BITS_39_31) {
1043 diff = (MASK40 & sample) - old;
1047 diff = (MASK31 & sample) - old;
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dnl7c.c164 nl7c_addr_t *old; local
198 old = nl7caddrs;
199 new->next = old;
200 if (atomic_cas_ptr(&nl7caddrs, old, new) != old) {

Completed in 152 milliseconds

1234567891011>>