Home
last modified time | relevance | path

Searched refs:stable (Results 1 – 25 of 60) sorted by relevance

123

/titanic_44/usr/src/cmd/fm/modules/common/eversholt/
H A Dconfig.c86 if (n->s != stable("cpu")) in config_node_cache()
134 s = stable(path); in config_lookup()
281 ptr = stable("module"); in config_cook()
283 ptr = stable("resource"); in config_cook()
285 ptr = stable("serial"); in config_cook()
337 pn = stable(cfgstr); in config_cook()
356 if (config_lastcomp == stable(SCSI_DEVICE) || in config_cook()
357 config_lastcomp == stable(SMP_DEVICE)) { in config_cook()
364 } else if (pn == stable(TOPO_IO_DEV)) { in config_cook()
365 sv = stable(equals + 1); in config_cook()
[all …]
H A Deval.c191 valuep->v = (uintptr_t)stable(s); in eval_cat()
280 valuep->v = (uintptr_t)stable(""); in eval_func()
303 valuep->v = (uintptr_t)stable(""); in eval_func()
318 valuep->v = (uintptr_t)stable(s); in eval_func()
352 matchthis[1] = stable(path); in eval_func()
359 matchthis[0] = stable(path); in eval_func()
389 stable(connstrings[j])); in eval_func()
394 if (stable(w) == matchthis[i]) { in eval_func()
430 valuep->v = (uintptr_t)stable(""); in eval_func()
434 s = config_getprop(cp, stable(typestrings[i])); in eval_func()
[all …]
H A Dplatform.c209 sname = stable(ename); in hc_fmri_nodeize()
424 lastcomp = stable(name); in hc_path()
880 const char *snm = stable(dp->d_name); in platform_get_files()
1380 valuep->v = (uintptr_t)stable(outbuf); in platform_call()
1498 *name = stable(dupname); in get_array_info()
1585 nameptr = stable(lastnameptr); in platform_payloadprop()
1596 if (nameptr == stable(nvpname)) in platform_payloadprop()
1645 valuep->v = (uintptr_t)stable(val); in platform_payloadprop()
1733 valuep->v = (uintptr_t)stable(val[index]); in platform_payloadprop()
1949 retvals->v = (uintptr_t)stable(val); in platform_payloadprop_values()
[all …]
H A DMakefile40 ptree.c stable.c stats.c tree.c
/titanic_44/usr/src/uts/common/gssapi/mechs/krb5/krb5/krb/
H A Dserialize.c71 krb5_ser_handle stable; in krb5_register_serializer() local
75 if (!(stable = krb5_find_serializer(kcontext, entry->odtype))) { in krb5_register_serializer()
79 if ((stable = (krb5_ser_handle) MALLOC(sizeof(krb5_ser_entry) * in krb5_register_serializer()
83 (void) memcpy((void*)stable, kcontext->ser_ctx, in krb5_register_serializer()
86 (void) memcpy((void*)&stable[kcontext->ser_ctx_count], entry, in krb5_register_serializer()
91 kcontext->ser_ctx = (void *) stable; in krb5_register_serializer()
98 (void) memcpy((void*)stable, entry, sizeof(krb5_ser_entry)); in krb5_register_serializer()
/titanic_44/usr/src/cmd/fm/eversholt/common/
H A Desclex.c258 stable(Rwords[i].word), Rwords[i].val); in lex_init()
263 stable(Timesuffix[i].suffix), &Timesuffix[i].nsec); in lex_init()
307 Fileopened = stable(*Files++); in yylex()
411 File = stable(Tok); in yylex()
491 return (record(QUOTE, stable(Tok))); in yylex()
545 return (record(ARROW, stable(Tok))); in yylex()
594 stable(Tok))); in yylex()
634 stable(Tok))); in yylex()
638 return (record(NUMBER, stable(Tok))); in yylex()
656 cptr = stable(Tok); in yylex()
[all …]
H A Dtree.c524 ename->u.name.s = stable(buf); in ename_compress()
558 ret->u.name.s = stable(s); in tree_name()
610 ret->u.name.s = stable(ss); in tree_iname()
625 ret->u.globid.s = stable(s); in tree_globid()
677 np->u.name.last->u.name.s = stable(buf); in tree_name_repairdash()
700 np->u.name.last->u.name.s = stable(buf); in tree_name_repairdash2()
754 ret->u.quote.s = stable(s); in tree_quote()
774 ptr = stable(np->u.expr.right->u.quote.s); in tree_func()
777 ptr = stable("connected"); in tree_func()
779 ptr = stable("CONNECTED"); in tree_func()
[all …]
H A Dstable.h46 const char *stable(const char *s);
H A Dliterals.c57 #define L_DECL(s) L_##s = stable(#s) in literals_init()
H A Deftread.c161 (void *)stable(dptr + 1), (void *)0, NULL); in eftread_fopen()
165 (void *)stable(dptr), (void *)0, NULL); in eftread_fopen()
H A Dstable.c142 stable(const char *s) in stable() function
/titanic_44/usr/src/cmd/mdb/common/modules/specfs/
H A Dspecfs.c45 uintptr_t stable; in snode_walk_init() local
62 stable = (uintptr_t)sym.st_value; in snode_walk_init()
64 if (mdb_vread(&sp, sizeof (sp), stable) == -1) { in snode_walk_init()
65 mdb_warn("failed to read stable entry at %p", stable); in snode_walk_init()
71 sw->sw_stable = stable; in snode_walk_init()
/titanic_44/usr/src/uts/common/fs/specfs/
H A Dspecsubr.c413 st = stable[STABLEHASH(dev)]; in specfind()
455 for (sp = stable[i]; sp != NULL; sp = sp->s_next) { in devi_stillreferenced()
628 struct snode *stable[STABLESIZE]; variable
639 sp->s_next = stable[STABLEHASH(sp->s_dev)]; in sinsert()
640 stable[STABLEHASH(sp->s_dev)] = sp; in sinsert()
655 st = stable[STABLEHASH(sp->s_dev)]; in sdelete()
659 stable[STABLEHASH(sp->s_dev)] = st->s_next; in sdelete()
687 st = stable[STABLEHASH(dev)]; in sfind()
910 for (sp = stable[i]; sp; sp = sp->s_next) { in spec_snode_walk()
990 for (sp = stable[i]; sp != NULL; sp = sp->s_next) { in spec_fence_snode()
[all …]
H A Dspecvfsops.c128 for (spp = stable; spp < &stable[STABLESIZE]; spp++) { in spec_sync()
/titanic_44/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPV1Manager.java198 start(SLPConfig config, ServerDATable table, ServiceTable stable) { in start() argument
249 new SLPV1Advertiser(interfac, v1SLPGSAddr, stable); in start()
/titanic_44/usr/src/cmd/dc/
H A Ddc.c563 sptr = stable[c]; in commnds()
564 sp = stable[c] = sfree; in commnds()
588 sptr = stable[c]; in commnds()
598 sptr = stable[c] = sfree; in commnds()
612 sptr = stable[c]; in commnds()
616 stable[c] = sptr->next; in commnds()
652 sptr = stable[n]; in commnds()
654 sptr = stable[n] = sfree; in commnds()
701 sptr = stable[n]; in commnds()
2060 sptr = stable[c]; in load()
[all …]
H A Ddc.h151 struct sym *stable[TBLSZ]; variable
/titanic_44/usr/src/cmd/fm/eversholt/
H A DMakefile.esc.com35 out.o ptree.o stable.o stats.o tree.o $($(EFTCLASS)_WRTOBJ)
/titanic_44/usr/src/uts/common/sys/fs/
H A Dsnode.h222 extern struct snode *stable[];
/titanic_44/usr/src/uts/common/fs/nfs/
H A Dnfs_dump.c232 stable_how stable = FILE_SYNC; in nd_send_data() local
315 !XDR_PUTINT32(xdrp, (int32_t *)&stable) || in nd_send_data()
/titanic_44/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_nfs3.c1200 long stable; in sum_stablehow() local
1202 stable = getxdr_long(); in sum_stablehow()
1203 switch (stable) { in sum_stablehow()
/titanic_44/usr/src/uts/sparc/v9/ml/
H A Dfloat.s245 set .stable, %g1 ! g1 gets base of table.
257 .stable: label
/titanic_44/usr/src/lib/libdtrace/common/
H A Dudp.d.in43 * udpsinfo contains stable UDP details from udp_t.
/titanic_44/usr/src/cmd/lp/filter/postscript/dpost/
H A DREADME28 0 is the slowest but most stable choice. Level 2 encoding (which right now is the
/titanic_44/usr/src/grub/grub-0.97/
H A DMAINTENANCE31 debian-hurd@lists.debian.org. If the announcement is for a stable

123