Searched refs:instance (Results 1 - 25 of 148) sorted by relevance

123456

/osnet-11/usr/src/lib/sun_fc/common/
H A DSun_fcGetNumberOfTgtAdapters.cc42 HBAList* list = HBAList::instance();
H A DSun_fcFreeLibrary.cc47 HBAList* list = HBAList::instance();
H A DSun_fcLoadLibrary.cc48 HBAList* list = HBAList::instance();
H A DSun_fcGetNumberOfAdapters.cc43 HBAList* list = HBAList::instance();
H A DSun_fcGetVendorLibraryAttributes.cc52 HBAList* list = HBAList::instance();
H A DSun_fcOpenAdapter.cc53 return (HBAList::instance()->openHBA(name)->getHandle());
H A DSun_fcOpenAdapterByWWN.cc52 *handle = HBAList::instance()->
H A DSun_fcOpenTgtAdapter.cc53 return (HBAList::instance()->openTgtHBA(name)->getHandle());
H A DSun_fcOpenTgtAdapterByWWN.cc52 *handle = HBAList::instance()->
H A DSun_fcGetAdapterName.cc55 HBAList* list = HBAList::instance();
H A DSun_fcGetTgtAdapterName.cc55 HBAList* list = HBAList::instance();
/osnet-11/usr/src/lib/libc/port/sys/
H A Dinst_sync.c32 #include <sys/instance.h>
/osnet-11/usr/src/grub/grub2/grub-core/gfxmenu/
H A Dgfxmenu.c55 struct grub_menu_viewer *instance; local
63 instance = grub_zalloc (sizeof (*instance));
64 if (!instance)
83 grub_free (instance);
106 instance->data = view;
107 instance->set_chosen_entry = grub_gfxmenu_set_chosen_entry;
108 instance->fini = grub_gfxmenu_viewer_fini;
109 instance->print_timeout = grub_gfxmenu_print_timeout;
110 instance
[all...]
/osnet-11/usr/src/lib/rad/pysmf/common/
H A Dfmri.py29 """ Immutable service or instance FMRI type """
31 def __init__(self, scope, service, instance):
32 """ Constructs an FMRI from a scope, service, and instance """
38 self._instance = instance
72 raise ValueError, "non service/instance FMRI"
74 instance = parts[2]
75 if instance.find("/") != -1:
76 raise ValueError, "non service/instance FMRI"
78 instance = None
80 return FMRI(scope, service, instance)
[all...]
H A Drad.py65 only) RAD instance.
85 def parts_to_name(service, instance = None, scope = None):
86 """ Convert service and/or instance to a rad.client.Name """
88 if instance is not None:
89 kvs = [_RAD_TYPE_INSTANCE, svc, ("instance", instance)]
103 """ Look up a service/instance object by rad.client.Name """
107 """ Look up a service/instance object by FMRI object """
111 """ Look up a service/instance object by svc: FMRI string """
114 def lookup_byparts(self, service, instance
[all...]
/osnet-11/usr/src/lib/rad/pykstat/common/
H A Drad.py67 only) RAD instance.
75 def lookup(self, module, name, instance):
77 Look up a single kstat instance by module, name, and instance.
82 ("instance", "%d" % instance)]))
84 def lookup_many(self, module = None, name = None, instance = None,
88 and instance.
95 if instance is not None:
96 keys.append(("instance", "
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/i86pc/x86pi/common/
H A Dx86pi_chassis.c40 x86pi_gen_chassis(topo_mod_t *mod, tnode_t *t_parent, int smb_id, int instance) argument
78 /* set hc_name and instance */
80 ch_hcfmri.instance = instance;
82 topo_mod_dprintf(mod, "%s: instance (%d)\n", f, ch_hcfmri.instance);
91 if (!instance) {
92 /* First Chassis SMBIOS Record is Chassis topo instance 0 */
101 instance);
H A Dx86pi_generic.c65 hcfmri->hc_name, hcfmri->instance, NULL, auth,
88 "%s failed to bind %s node instance %d: %s\n",
89 _ENUM_NAME, hcfmri->hc_name, hcfmri->instance,
139 "%s: NULL parent for %s node instance %d\n",
140 f, hcfmri->hc_name, hcfmri->instance);
146 hcfmri->instance, fmri);
149 "%s: failed to bind %s node instance %d: %s\n",
150 f, hcfmri->hc_name, (uint32_t)hcfmri->instance,
154 topo_mod_dprintf(mod, "%s: bound %s node instance %d type %s\n",
155 f, hcfmri->hc_name, hcfmri->instance, hcfmr
[all...]
/osnet-11/usr/src/lib/libdevinfo/
H A Ddevinfo_dim.c32 * This file contains interfaces to translate <driver><instance><minorname>
34 * the kernel instance tree so that it can provide translations for devices
74 di_dim_path_devices(di_dim_t dim, char *drv_name, int instance, argument
86 /* find the length of the devices path given major,instance */
87 if (modctl(MODGETDEVFSPATH_MI_LEN, major, instance, &len) != 0)
101 if (modctl(MODGETDEVFSPATH_MI, major, instance, len, devices) != 0) {
127 di_dim_path_dev(di_dim_t dim, char *drv_name, int instance, char *minor_name) argument
137 /* convert <driver><instance><minor_name> to /devices path */
138 devices = di_dim_path_devices(dim, drv_name, instance, minor_name);
/osnet-11/usr/src/lib/libuvfs/common/
H A Dsvc.c66 * places, e.g. launching an instance.
223 scf_instance_t *instance = NULL; local
247 instance = scf_instance_create(fs->fs_scf_handle);
248 if (instance == NULL) {
258 if (scf_service_add_instance(service, inst_name, instance) != NULL) {
265 if (scf_service_get_instance(service, inst_name, instance)
273 rc = scf_instance_add_pg(instance, "filesys", "application", 0, pg);
278 (scf_instance_get_pg(instance, "filesys", pg)))
308 rc = scf_instance_to_fmri(instance, fs->fs_daemon_fmri,
328 if (instance !
364 scf_instance_t *instance = NULL; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/t/
H A Dnetrc.t118 my $instance = bless({}, 'Net::Netrc');
120 is( $instance->$accessor(), undef,
122 $instance->{$accessor} = $accessor;
123 is( $instance->$accessor(), $accessor,
128 is( scalar( () = $instance->lpa()), 3,
130 is( join(' ', $instance->lpa), 'login password account',
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dor.t15 my $instance = shift || undef;
16 return bless \$instance => $class;
/osnet-11/usr/src/lib/libdhcpsvc/private/
H A Dprivate.c54 * to ensure that all threads have finished using an instance before
55 * closing the instance or removing the container it's referencing.
156 unload_public_module(void **instance, dsvc_splapi_t *api) argument
160 if (dlclose(*instance) != 0)
163 *instance = NULL;
171 * instance of opened module, and populates the api argument with the
175 load_public_module(dsvc_datastore_t *ddp, void **instance, dsvc_splapi_t *api) argument
188 *instance = dlopen(path, RTLD_LAZY|RTLD_GROUP|RTLD_WORLD);
189 if (*instance == NULL)
196 api->version = (dsvc_splfuncp_t)dlsym(*instance, "versio
306 void *instance; local
328 void *instance; local
351 void *instance; local
456 void *instance; local
777 void *instance; local
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dconv_princ.c28 * principal into name, instance, and realm.
41 /* The maximum sizes for V4 aname, realm, sname, and instance +1 */
174 * instance's domain name if requested.
251 const char *instance, const char *realm,
304 if (instance) {
305 if (instance[0] == '\0') {
306 instance = 0;
318 if ((p->flags & DO_REALM_CONVERSION) && !strchr(instance, '.')) {
322 names[3] = instance;
326 instance
250 krb5_425_conv_principal(krb5_context context, const char *name, const char *instance, const char *realm, krb5_principal *princ) argument
[all...]
/osnet-11/usr/src/lib/libfru/include/
H A Dlibfruds.h83 fru_tag_t tag, int instance,
86 fru_tag_t tag, int instance,
89 fru_tag_t tag, int instance);

Completed in 85 milliseconds

123456