Searched refs:scheme (Results 1 - 25 of 45) sorted by relevance

12

/osnet-11/usr/src/lib/libnisdb/
H A Ddb_scheme_c.x71 %/* A scheme is a description of the fields of a table. */
98 % STRUCTRWLOCK(scheme);
101 %/* Accessor: return number of keys in scheme. */
107 %/* Constructor: create empty scheme */
114 %/* Constructor: create new scheme by making copy of 'orig'.
115 % All items within old scheme are also copied (i.e. no shared pointers). */
121 %/* Destructor: delete all keys associated with scheme and scheme itself. */
128 % of this scheme. If so, return in 'result' the index's number. */
142 % return (WLOCK(scheme));
[all...]
H A Ddb_query.cc37 db_query::db_query(db_scheme * scheme, int size, nis_attr* attrlist) argument
51 if (!scheme->find_index(attrlist[i].zattr_ndx,
73 * along with information on the scheme given, will determine
79 db_query::db_query(db_scheme *scheme, entry_object_p obj) argument
81 num_components = scheme->numkeys(); // scheme's view of key count
82 db_key_desc *keyinfo = scheme->keyloc();
H A Ddb_mindex_c.x73 db_scheme *scheme;
120 % db_scheme *scheme;
137 % along with information on the scheme given, will determine
166 %/* Constructor: Create empty table (no scheme, no table or indices). */
169 %/* Constructor: Create new table using scheme defintion supplied.
170 % (Make copy of scheme and keep it with table.) */
180 %/* Returns whether there table is valid (i.e. has scheme). */
181 % bool_t good() { return scheme != NULL && table != NULL; }
193 % scheme. Reset version to 0 */
203 %/* Initialize table using information given in scheme 'ho
[all...]
H A Ddb_mindex.cc46 * Constructor: Create new table using scheme defintion supplied.
47 * (Make copy of scheme and keep it with table.)
60 /* Constructor: Create empty table (no scheme, no table or indices). */
63 scheme = NULL;
81 * Initialize table using information given in scheme 'how'.
82 * Record the scheme for later use (make copy of it);
89 scheme = new db_scheme(how); // make copy
90 if (scheme == NULL)
91 FATAL("db_mindex::init: could not allocate space for scheme",
94 if (scheme
[all...]
H A Ddb_scheme.cc38 * Constructor: create new scheme by making copy of 'orig'.
39 * All items within old scheme are also copied (i.e. no shared pointers).
88 INITRW(scheme);
163 INITRW(scheme);
188 /* Destructor: delete all keys associated with scheme and scheme itself. */
193 DESTROYRW(scheme);
198 * this scheme. If so, return in 'result' the index's number.
H A Ddb_dictionary_c.x59 db_scheme * scheme;
223 % If it cannot be loaded, it is initialized using the scheme stored in
244 % table does not have a scheme (which should be a fatal error?). */
/osnet-11/usr/src/lib/fm/topo/libtopo/common/
H A Dtopo_file.c63 const char *scheme, boolean_t pmap)
75 "name=%s, scheme=%s, pmap=%d, load_snapshot=%s\n",
77 (name == NULL) ? "NULL" : name, scheme, pmap,
99 mod->tm_rootdir, mod->tm_hdl->th_snap_dir, scheme);
111 name, scheme);
114 scheme);
122 if ((tfp->tf_tmap = topo_xml_read(mod, tfp->tf_filenm, scheme))
62 topo_file_load(topo_mod_t *mod, tnode_t *node, const char *name, const char *scheme, boolean_t pmap) argument
H A Dtopo_fmri.c44 * scheme plugin operations are supported as long as a backend method is
45 * supplied by a scheme-specific enumerator or the enumerator module that
46 * created the matching topology node. Support for fmd scheme operations
62 * - create: an FMRI nvlist by scheme type
100 char *scheme, *str; local
104 if (nvlist_lookup_string(fmri, FM_FMRI_SCHEME, &scheme) != 0)
108 if ((rnode = topo_hdl_root(thp, scheme)) == NULL)
179 char *scheme; local
183 if (nvlist_lookup_string(fmri, FM_FMRI_SCHEME, &scheme) != 0)
187 if ((rnode = topo_hdl_root(thp, scheme))
207 char *scheme; local
235 char *scheme; local
270 char *scheme; local
296 char *scheme; local
324 char *scheme; local
354 char *scheme; local
382 char *scheme; local
409 char *scheme; local
568 char *scheme; local
615 char *scheme; local
701 topo_fmri_create(topo_hdl_t *thp, const char *scheme, const char *name, topo_instance_t inst, nvlist_t *nvl, int *err) argument
859 char *scheme; local
900 char *scheme; local
[all...]
H A Dtopo_tree.c29 * Toplogy trees are instantiated for each builtin (FMRI) scheme specified
31 * skeleton of the topology tree (scheme, root node, and file information).
34 * provides a handle to access static .xml files that seed scheme-specifc
39 * trees maintained in topo_hdl_t. Builtin scheme-specific enumerators are
41 * system. If a <scheme>-topology.xml file exists in a standard file
82 topo_tree_create(topo_hdl_t *thp, topo_mod_t *mod, const char *scheme) argument
92 if ((tp->tt_scheme = topo_mod_strdup(mod, scheme)) == NULL)
161 topo_dprintf(thp, TOPO_DBG_SNAP, "%s: scheme=%s, load_snapshot=%s\n",
175 * <product-name>-<scheme>-topology
176 * <platform-name>-<scheme>
[all...]
H A Dtopo_parse.c34 tf_info_new(topo_mod_t *mp, xmlDocPtr doc, xmlChar *scheme) argument
43 if ((r->tf_scheme = topo_mod_strdup(mp, (char *)scheme)) == NULL) {
H A Dtopo_xml.c2175 xmlChar *scheme = NULL; local
2251 * expected scheme.
2260 if ((scheme = xmlGetProp(cursor, (xmlChar *)Scheme)) == NULL) {
2262 "%s: topology lacks a scheme\n", __func__);
2267 if (xmlStrcmp(scheme, (xmlChar *)escheme) != 0) {
2269 "%s: topology in unrecognized scheme, %s, expecting %s\n",
2270 __func__, scheme, escheme);
2272 xmlFree(scheme);
2289 xmlFree(scheme);
2299 xmlFree(scheme);
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/bin/
H A Dpiconv28 'scheme|S=s',
41 my $scheme = exists $Scheme{$Opt{Scheme}} ? $Opt{Scheme} : 'from_to';
49 Scheme: $scheme
56 if ($scheme eq 'from_to'){
61 }elsif ($scheme eq 'decode_encode'){
68 }elsif ($scheme eq 'perlio'){
73 die "$name: unknown scheme: $scheme";
111 -S,--scheme scheme us
[all...]
/osnet-11/usr/src/lib/rad/pysmf/common/
H A Dfmri.py45 scheme = "svc:"
46 if not fmri.startswith(scheme):
48 fmri = fmri[len(scheme):]
/osnet-11/usr/src/lib/fm/libasr/common/
H A Dasr_topo.c85 char *scheme, *fmristr; local
95 if (nvlist_lookup_string(fmri, FM_FMRI_SCHEME, &scheme) != 0) {
96 (void) asr_error(EASR_FM, "unknown FMRI scheme");
100 len = snprintf(NULL, 0, "%s://unknown", scheme);
105 (void) snprintf(buf, len + 1, "%s://unknown", scheme);
/osnet-11/usr/src/lib/fm/topo/maps/SUNW,Netra-X4200-M2/
H A DNetra-X4200-M2-disk-hc-topology.xmlgen31 <topology name='disk' scheme='hc'>
/osnet-11/usr/src/lib/fm/topo/maps/SUNW,Sun-Fire-X4200-M2/
H A DSun-Fire-X4200-M2-disk-hc-topology.xmlgen31 <topology name='disk' scheme='hc'>
/osnet-11/usr/src/lib/fm/topo/maps/SUNW,Sun-Fire-X4200-Server/
H A DSun-Fire-X4200-Server-disk-hc-topology.xmlgen31 <topology name='disk' scheme='hc'>
/osnet-11/usr/src/lib/fm/topo/maps/SUNW,Sun-Fire-X4600-M2/
H A DSun-Fire-X4600-M2-disk-hc-topology.xmlgen31 <topology name='disk' scheme='hc'>
/osnet-11/usr/src/lib/fm/libfmd_snmp/
H A DMakefile.com34 scheme.c
/osnet-11/usr/src/lib/fm/topo/maps/SUNW,SUN-FIRE-X4270-M2-SERVER/
H A DSUN-FIRE-X4270-M2-SERVER-disk-hc-topology.xmlgen30 <topology name='disk' scheme='hc'>
/osnet-11/usr/src/cmd/hal/probing/storage/
H A Dprobe-storage.c330 const char *scheme = ""; local
412 scheme = "mbr";
419 scheme = "smi";
429 scheme = "gpt";
437 libhal_changeset_set_property_string (cs, "storage.partitioning_scheme", scheme);
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Dac.c2786 gcry_ac_scheme_t scheme;
2803 /* Lookup a scheme by it's ID. */
2805 ac_scheme_get (gcry_ac_scheme_t scheme)
2811 if (scheme == ac_schemes[i].scheme)
2825 ac_scheme_t scheme, void **opts_em)
2830 options_em = gcry_malloc (scheme.options_em_n);
2837 err = (*scheme.dencode_prepare) (handle, key, opts, options_em);
2886 anonymous structure specific to the chosen scheme (gcry_ac_es_*_t).
2906 ac_scheme_t *scheme;
2777 gcry_ac_scheme_t scheme; member in struct:ac_scheme
2796 ac_scheme_get(gcry_ac_scheme_t scheme) argument
2815 ac_dencode_prepare(gcry_ac_handle_t handle, gcry_ac_key_t key, void *opts, ac_scheme_t scheme, void **opts_em) argument
2897 ac_scheme_t *scheme; local
2987 ac_scheme_t *scheme; local
3105 ac_scheme_t *scheme; local
3196 ac_scheme_t *scheme; local
[all...]
/osnet-11/usr/src/lib/libsip/common/
H A Dsip_msg.h121 sip_str_t scheme; member in struct:sip_auth
188 #define auth_scheme_ptr hdr_value.auth.scheme.sip_str_ptr
189 #define auth_scheme_len hdr_value.auth.scheme.sip_str_len
/osnet-11/usr/src/lib/fm/topo/maps/SUNW,Sun-Fire-X4500/
H A DSun-Fire-X4500-disk-hc-topology.xmlgen78 <topology name='disk' scheme='hc'>
/osnet-11/usr/src/lib/fm/topo/maps/SUNW,Sun-Fire-X4540/
H A DSun-Fire-X4540-disk-hc-topology.xmlgen78 <topology name='disk' scheme='hc'>

Completed in 309 milliseconds

12