Searched refs:new (Results 251 - 275 of 655) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/cmd/stmsboot/
H A Dmpxio-upgrade335 exec < $SAVEDIR/vfstab.new; readvfstab /
339 $SAVEDIR/vfstab.new > /etc/vfstab
342 $CP $SAVEDIR/vfstab.new /etc/vfstab
344 $RM $SAVEDIR/vfstab.new
349 # update svm configuration to reflect new names
/illumos-gate/usr/src/common/atomic/sparcv9/
H A Datomic.s225 or %o4, %o5, %o5 ! insert the new value
233 srl %o5, %g1, %o0 ! %o0 = new value
299 or %o4, %o5, %o5 ! insert the new value
307 srl %o5, %g1, %o0 ! %o0 = new value
368 add %o2, %o1, %o0 ! return new value
433 add %o2, %o1, %o0 ! return new value
463 or %o2, %o1, %o5 ! or in the new value
471 srl %o5, %g1, %o0 ! %o0 = new value
499 or %o2, %o1, %o5 ! or in the new value
504 or %o2, %o1, %o5 ! or in the new valu
[all...]
/illumos-gate/usr/src/boot/sys/boot/common/linenoise/
H A Dlinenoise.c319 char *new = malloc(ab->len+len); local
321 if (new == NULL) return;
322 memcpy(new, ab->b, ab->len);
323 memcpy(new+ab->len,s,len);
325 ab->b = new;
534 /* Show the new entry */
788 /* This is the API call to add a new entry in the linenoise history.
791 * entry and make room for the new one, so it is not exactly suitable for huge
826 * just the latest 'len' elements if the new history length value is smaller
829 char **new; local
[all...]
/illumos-gate/usr/src/cmd/fs.d/nfs/statd/
H A Dsm_statd.c719 char *new; local
721 if ((new = malloc(len)) == 0) {
725 (void) memset(new, 0, len);
726 return (new);
738 name_entry *new; local
740 new = (name_entry *)xmalloc(sizeof (name_entry));
741 if (new == (name_entry *) NULL)
746 if ((new->name = strdup(name)) == NULL) {
748 free(new);
752 new
[all...]
/illumos-gate/usr/src/cmd/tsol/tnd/
H A Dtnd.c584 struct tnd_tnrhtp_c *new, **old; local
592 if ((new = (struct tnd_tnrhtp_c *)
595 (void) memcpy(&new->tp_ent, tpp, sizeof (tp));
596 old = (struct tnd_tnrhtp_c **)tsearch(new, &tp_tree, tp_compar);
597 if (*old != new)
598 free(new);
938 struct tnd_tnrhdb_c *new; local
981 * Use the new template.
998 new = (struct tnd_tnrhdb_c *)calloc(1,
1000 if (new
1037 struct tnd_tnrhdb_c *new; local
[all...]
/illumos-gate/usr/src/cmd/svc/configd/
H A Dbackend.c217 * repository database with the new schema perfectly well. As a result,
1257 struct sqlite *new; local
1282 new = sqlite_open(check_path, 0600, &errp);
1283 if (new == NULL) {
1287 r = backend_is_readonly(new, check_path);
1298 sqlite_close(new);
1323 sqlite_close(new);
1328 be->be_db = new;
1629 struct sqlite *new; local
1672 new
1800 char *new; local
2148 struct sqlite *new; local
2898 char *new; local
[all...]
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsockfilter.c66 * Whenever a filter is attached to a socket (sonode), a new instance is
101 * ticks can be dropped to make room for new connections. A connection that
724 * Creates a new filter instance from the entry `ent' and attaches
728 * The new instance will be placed on the top of the filter stack.
1023 * it should be attached to the sockparams. It should be called whenever a new
1033 sp_filter_t *new, *fil; local
1049 new = kmem_zalloc(sizeof (sp_filter_t), KM_NOSLEEP);
1050 if (new == NULL)
1053 new->spf_filter = ent;
1056 list_insert_head(&sp->sp_prog_filters, new);
1684 sof_cas_cookie(sof_handle_t handle, void *old, void *new) argument
1790 struct sonode *so, *old, *new; local
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/irs/
H A Ddns_pr.c194 char *p, *cp, **cpp, **new; local
234 new = realloc(pvt->proto.p_aliases,
236 if (!new) {
240 pvt->proto.p_aliases = new;
H A Ddns_sv.c187 char *p, *cp, **cpp, **new; local
241 new = realloc(pvt->serv.s_aliases,
243 if (!new) {
247 pvt->serv.s_aliases = new;
/illumos-gate/usr/src/cmd/csh/
H A Dsh.lex.c116 struct wordent *new = (struct wordent *)xalloc(sizeof *wdp); local
118 new->word = 0;
119 new->prev = wdp;
120 new->next = hp;
121 wdp->next = new;
122 wdp = new;
161 struct wordent *new = (struct wordent *)xalloc(sizeof *wdp); local
163 new->prev = wdp;
164 new->next = hp;
165 wdp->next = new;
735 struct wordent *new = (struct wordent *)xcalloc(1, sizeof *wdp); local
[all...]
/illumos-gate/usr/src/cmd/mdb/sparc/kmdb/
H A Dkmdb_asmutil.s122 set_tba(void *new)
/illumos-gate/usr/src/cmd/sed/
H A Ddefs.h70 char *new; /* Replacement text */
/illumos-gate/usr/src/cmd/fs.d/pcfs/fsck/
H A Dclusters.c240 CachedCluster *new; local
243 if ((new = (CachedCluster *)malloc(sizeof (CachedCluster))) == NULL) {
247 new->clusterNum = clusterNum;
248 new->modified = 0;
252 free(new);
256 new->clusterData.bytes = cp;
263 ClusterCache = new;
264 new->next = NULL;
265 } else if (new->clusterNum < ClusterCache->clusterNum) {
266 new
[all...]
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Ddockdeps.c312 char *pt, *new, line[LSIZE]; local
344 /* begin new definition */
355 if (new = strchr(pt, ')'))
356 *new++ = '\0';
360 pt = new;
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Dzfs_dir.h62 extern void zfs_dl_name_switch(zfs_dirlock_t *dl, char *new, char **old);
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/krb5/krb/
H A Dcopy_auth.c203 krb5_authdata **new; local
208 new = realloc(fctx->out,
210 if (new == NULL)
212 fctx->out = new;
/illumos-gate/usr/src/uts/common/avs/ns/sdbc/
H A Dsd_hash.h85 extern _sd_hash_hd_t *_sd_hash_replace(_sd_hash_hd_t *old, _sd_hash_hd_t *new,
/illumos-gate/usr/src/uts/intel/asm/
H A Datomic.h170 fxn(volatile type *target, type cmp, type new) \
176 : reg (new), "1" (cmp) \
198 atomic_cas_ptr(volatile void *target, void *cmp, void *new) argument
206 : "r" (new), "1" (cmp)
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dalloc.c361 void *new; local
367 new = ptr + 1;
372 (void) memcpy(new, old, size - sizeof (*ptr));
375 return (new);
/illumos-gate/usr/src/uts/common/avs/ncall/
H A Dncall.c270 ncall_modinfo_t *new; local
276 new = kmem_alloc(sizeof (*new), KM_SLEEP);
278 if (new != NULL) {
279 new->module = mp;
283 new->next = ncall_modules;
284 ncall_modules = new;
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_program.c54 * containing DOF are backward compatible. If a program requires new
243 dtrace_actdesc_t *new; local
246 if ((new = dt_alloc(dtp, sizeof (dtrace_actdesc_t))) == NULL)
252 sdp->dtsd_action_last->dtad_next = new;
257 sdp->dtsd_action = new;
263 edp->dted_action = new;
265 ap->dtad_next = new;
268 sdp->dtsd_action_last = new;
269 bzero(new, sizeof (dtrace_actdesc_t));
270 new
[all...]
/illumos-gate/usr/src/cmd/psrset/
H A Dpsrset.c175 assign_out(processorid_t cpu, psetid_t old, psetid_t new) argument
178 if (new == PS_NONE)
183 " now %d\n"), cpu, new);
185 if (new == PS_NONE)
190 "now %d\n"), cpu, old, new);
256 bind_out(id_t pid, id_t lwpid, psetid_t old, psetid_t new) argument
270 if (new == PS_NONE)
275 "now %d\n"), proclwp, pidstr, new);
277 if (new == PS_NONE)
282 "now %d\n"), proclwp, pidstr, old, new);
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.routed/
H A Dtable.c367 * aggregation table for the new route.
406 * If we find the even/odd twin of the new route, and if the
411 * the new route must be odd. However, the second or later
432 * know that the new route is a promoted (or
532 * in the table to the new, odd twin.
584 * Promote the new, odd twin by shaving its
615 * the new route.
643 /* Save the new route on the end of the table. */
1016 * responsible for adding new static routes to the daemon table.
1022 struct rt_spare new; local
1246 struct rt_spare new, *rts, *losing_rts = NULL; local
2302 rtadd(in_addr_t dst, in_addr_t mask, uint16_t state, struct rt_spare *new) argument
2362 rtchange(struct rt_entry *rt, uint16_t state, struct rt_spare *new, char *label) argument
2532 struct rt_spare new; local
2626 struct rt_spare new = rt->rt_spares[0]; local
2788 struct rt_spare new = RT->rt_spares[0]; local
[all...]
/illumos-gate/usr/src/uts/common/io/ppm/
H A Dppm.c1065 * Otherwise, set all cpus to the new power level.
1074 int old, new, ret, kmflag; local
1097 new = reqp->req.ppm_set_power_req.new_level;
1100 ppmd->level = new;
1104 "from %d to %d", str, (void *)dip, old, new))
1108 if (ppm_manage_early_cpus(dip, new, result))
1111 if (new == ppmd->level) {
1112 PPMD(D_CPU, ("%s: already at power level %d\n", str, new))
1121 ppmd->rplvl = new;
1123 if (cpup->rplvl == new)
1511 int new, old, cmpt; local
1933 int old, new, cmpt; local
2076 int old, new, cmpt; local
[all...]
/illumos-gate/usr/src/cmd/fm/fminject/common/
H A Dinj_defn.c550 * define a new list here. In that case, we recursively invoke the member
570 nvlist_t *new; local
589 if ((errno = nvlist_dup(subdefn->defn_nvl, &new, 0)) != 0) {
594 return (new);
602 nvlist_t *new = NULL; local
605 new = inj_defn_memcmp_sub_list(dlm, dfm);
608 new = inj_defn_memcmp_sub_defined(dlm, dfm);
612 return (new);
619 nvlist_t *new; local
621 if ((new
[all...]

Completed in 128 milliseconds

<<11121314151617181920>>