Searched refs:stable (Results 1 - 25 of 41) sorted by relevance

12

/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Dstable.h26 * stable.h -- public definitions for string table module
28 * simple string table module. all calls to stable() with the same
46 const char *stable(const char *s);
H A Dliterals.c30 * stable("fault")
33 * and avoid repeated calls to stable().
40 #include "stable.h"
52 * L_something = stable("something");
57 #define L_DECL(s) L_##s = stable(#s)
H A Desclex.c45 #include "stable.h"
258 stable(Rwords[i].word), Rwords[i].val);
263 stable(Timesuffix[i].suffix), &Timesuffix[i].nsec);
307 Fileopened = stable(*Files++);
411 File = stable(Tok);
491 return (record(QUOTE, stable(Tok)));
545 return (record(ARROW, stable(Tok)));
594 stable(Tok)));
634 stable(Tok)));
638 return (record(NUMBER, stable(To
[all...]
H A Dtree.c42 #include "stable.h"
524 ename->u.name.s = stable(buf);
558 ret->u.name.s = stable(s);
610 ret->u.name.s = stable(ss);
625 ret->u.globid.s = stable(s);
657 * new stable entry for a name including the dash.
677 np->u.name.last->u.name.s = stable(buf);
700 np->u.name.last->u.name.s = stable(buf);
754 ret->u.quote.s = stable(s);
774 ptr = stable(n
[all...]
H A Dstable.c25 * stable.c -- string table module
40 #include "stable.h"
67 * stable_init -- initialize the stable module
85 Stablecount = stats_new_counter("stable.size", "hash table size", 1);
86 Blockcount = stats_new_counter("stable.blocks", "blocks allocated", 1);
87 Add0 = stats_new_counter("stable.add0", "adds to empty buckets", 1);
88 Add1 = stats_new_counter("stable.add1", "adds to 1-entry buckets", 1);
89 Add2 = stats_new_counter("stable.add2", "adds to 2-entry buckets", 1);
90 Add3 = stats_new_counter("stable.add3", "adds to 3-entry buckets", 1);
91 Addn = stats_new_counter("stable
142 stable(const char *s) function
[all...]
H A Deftread.c40 #include "stable.h"
161 (void *)stable(dptr + 1), (void *)0, NULL);
165 (void *)stable(dptr), (void *)0, NULL);
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Dconfig.c45 #include "stable.h"
86 if (n->s != stable("cpu"))
134 s = stable(path);
281 ptr = stable("module");
283 ptr = stable("resource");
285 ptr = stable("serial");
337 pn = stable(cfgstr);
356 if (config_lastcomp == stable(SCSI_DEVICE) ||
357 config_lastcomp == stable(SMP_DEVICE)) {
364 } else if (pn == stable(TOPO_IO_DE
[all...]
H A DMakefile40 ptree.c stable.c stats.c tree.c
H A Deval.c37 #include "stable.h"
191 valuep->v = (uintptr_t)stable(s);
280 valuep->v = (uintptr_t)stable("");
303 valuep->v = (uintptr_t)stable("");
318 valuep->v = (uintptr_t)stable(s);
352 matchthis[1] = stable(path);
359 matchthis[0] = stable(path);
389 stable(connstrings[j]));
394 if (stable(w) == matchthis[i]) {
430 valuep->v = (uintptr_t)stable("");
[all...]
H A Dplatform.c57 #include "stable.h"
209 sname = stable(ename);
424 lastcomp = stable(name);
880 const char *snm = stable(dp->d_name);
1380 valuep->v = (uintptr_t)stable(outbuf);
1498 *name = stable(dupname);
1585 nameptr = stable(lastnameptr);
1596 if (nameptr == stable(nvpname))
1645 valuep->v = (uintptr_t)stable(val);
1733 valuep->v = (uintptr_t)stable(va
[all...]
H A Dfme.c43 #include "stable.h"
634 stable(estr), ipath(epnamenp));
799 (void) prune_propagations(stable(estr), ipath(epnamenp));
1014 ret = tree_iname(stable(ptr), NULL, 0);
1018 tree_iname(stable(ptr), NULL, 0));
1247 suffix = stable(&ptr[len]);
1258 newentp->ename = stable(serdclass);
1509 class = stable(class);
2046 const char *s; /* component name (in stable) */
2443 /* class name should be hoisted into a single stable entr
[all...]
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/krb5/krb/
H A Dserialize.c73 krb5_ser_handle stable;
77 if (!(stable = krb5_find_serializer(kcontext, entry->odtype))) {
81 if ((stable = (krb5_ser_handle) MALLOC(sizeof(krb5_ser_entry) *
85 (void) memcpy((void*)stable, kcontext->ser_ctx,
88 (void) memcpy((void*)&stable[kcontext->ser_ctx_count], entry,
93 kcontext->ser_ctx = (void *) stable;
100 (void) memcpy((void*)stable, entry, sizeof(krb5_ser_entry));
71 krb5_ser_handle stable; local
/illumos-gate/usr/src/uts/common/fs/specfs/
H A Dspecvfsops.c128 for (spp = stable; spp < &stable[STABLESIZE]; spp++) {
H A Dspecsubr.c141 * Get the time attributes outside of the stable lock since
413 st = stable[STABLEHASH(dev)];
455 for (sp = stable[i]; sp != NULL; sp = sp->s_next) {
628 struct snode *stable[STABLESIZE]; variable in typeref:struct:snode
639 sp->s_next = stable[STABLEHASH(sp->s_dev)];
640 stable[STABLEHASH(sp->s_dev)] = sp;
655 st = stable[STABLEHASH(sp->s_dev)];
659 stable[STABLEHASH(sp->s_dev)] = st->s_next;
687 st = stable[STABLEHASH(dev)];
910 for (sp = stable[
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/specfs/
H A Dspecfs.c45 uintptr_t stable; local
57 if (mdb_lookup_by_name("stable", &sym) == -1) {
58 mdb_warn("failed to read 'stable'");
62 stable = (uintptr_t)sym.st_value;
64 if (mdb_vread(&sp, sizeof (sp), stable) == -1) {
65 mdb_warn("failed to read stable entry at %p", stable);
71 sw->sw_stable = stable;
94 mdb_warn("failed to read stable entry at %p",
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPV1Manager.java198 start(SLPConfig config, ServerDATable table, ServiceTable stable) { argument
249 new SLPV1Advertiser(interfac, v1SLPGSAddr, stable);
/illumos-gate/usr/src/cmd/fm/eversholt/
H A DMakefile.esc.com35 out.o ptree.o stable.o stats.o tree.o $($(EFTCLASS)_WRTOBJ)
/illumos-gate/usr/src/uts/common/sys/fs/
H A Dsnode.h222 extern struct snode *stable[];
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_nfs3.c152 "Commit to stable storage", /* 21 */
1200 long stable; local
1202 stable = getxdr_long();
1203 switch (stable) {
/illumos-gate/usr/src/uts/sparc/v9/ml/
H A Dfloat.s245 set .stable, %g1 ! g1 gets base of table.
257 .stable:
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs_dump.c237 stable_how stable = FILE_SYNC; local
315 * stable
320 !XDR_PUTINT32(xdrp, (int32_t *)&stable) ||
/illumos-gate/usr/src/cmd/dc/
H A Ddc.c563 sptr = stable[c];
564 sp = stable[c] = sfree;
588 sptr = stable[c];
598 sptr = stable[c] = sfree;
612 sptr = stable[c];
616 stable[c] = sptr->next;
652 sptr = stable[n];
654 sptr = stable[n] = sfree;
701 sptr = stable[n];
2060 sptr = stable[
[all...]
H A Ddc.h151 struct sym *stable[TBLSZ]; variable in typeref:struct:sym
/illumos-gate/usr/src/uts/common/nfs/
H A Dnfs_log.h368 stable_how stable; member in struct:nfslog_WRITE3args
/illumos-gate/usr/src/head/rpcsvc/
H A Dnfs_prot.x742 stable_how stable;
1170 * COMMIT: Commit cached data on a server to stable storage

Completed in 130 milliseconds

12