Searched refs:attributes (Results 1 - 25 of 126) sorted by relevance

123456

/osnet-11/usr/src/lib/sun_fc/common/
H A DSun_fcGetAdapterAttributes.cc36 * @memo Retrieves the attributes for an adapter
38 * @return HBA_STATUS_OK if attributes were filled in
40 * @param attributes The user-allocated buffer
44 PHBA_ADAPTERATTRIBUTES attributes) {
47 if (attributes == NULL) {
49 "NULL attributes pointer");
55 *attributes = myHandle->getHBAAttributes();
43 Sun_fcGetAdapterAttributes(HBA_HANDLE handle, PHBA_ADAPTERATTRIBUTES attributes) argument
H A DSun_fcNPIVGetAdapterAttributes.cc35 PHBA_ADAPTERATTRIBUTES attributes) {
38 if (attributes == NULL) {
40 "NULL attributes pointer");
46 *attributes = myHandle->npivGetHBAAttributes();
34 Sun_fcNPIVGetAdapterAttributes(HBA_HANDLE handle, PHBA_ADAPTERATTRIBUTES attributes) argument
H A DSun_fcGetAdapterPortAttributes.cc37 * @memo Retrieves the attributes for a specified port of an adapter
39 * @return HBA_STATUS_OK if attributes were filled in
42 * @param attributes The user-allocated buffer to store results in
46 HBA_UINT32 port, PHBA_PORTATTRIBUTES attributes) {
49 if (attributes == NULL) {
51 "NULL attributes pointer");
58 *attributes = myPort->getPortAttributes();
45 Sun_fcGetAdapterPortAttributes(HBA_HANDLE handle, HBA_UINT32 port, PHBA_PORTATTRIBUTES attributes) argument
H A DSun_fcGetDiscPortAttrs.cc37 * @memo Retrieves the attributes for a specified port discovered
39 * @return HBA_STATUS_OK if the attributes were filled in
43 * @param attributes The user-allocated buffer to store the attrs
48 PHBA_PORTATTRIBUTES attributes) {
51 if (attributes == NULL) {
53 "NULL attributes pointer");
60 *attributes = myPort->getDiscoveredAttributes(discoveredport);
46 Sun_fcGetDiscoveredPortAttributes(HBA_HANDLE handle, HBA_UINT32 port, HBA_UINT32 discoveredport, PHBA_PORTATTRIBUTES attributes) argument
H A DSun_fcGetPortAttributesByWWN.cc36 * @memo Retrieves the attributes for a specific discovered port
38 * @return HBA_STATUS_OK if the attributes are filled in
41 * @param attributes The user-allocated attributes buffer
45 PHBA_PORTATTRIBUTES attributes) {
48 if (attributes == NULL) {
49 log.userError("NULL attributes pointer");
55 *attributes = myHandle->getPortAttributes(wwnConversion(pwwn.wwn));
44 Sun_fcGetPortAttributesByWWN(HBA_HANDLE handle, HBA_WWN pwwn, PHBA_PORTATTRIBUTES attributes) argument
H A DSun_fcGetPortNPIVAttributes.cc36 HBA_UINT32 port, PHBA_PORTNPIVATTRIBUTES attributes) {
39 if (attributes == NULL) {
41 "NULL attributes pointer");
48 *attributes = myPort->getPortNPIVAttributes();
35 Sun_fcGetPortNPIVAttributes(HBA_HANDLE handle, HBA_UINT32 port, PHBA_PORTNPIVATTRIBUTES attributes) argument
H A DTgtFCHBAPort.cc247 HBA_PORTATTRIBUTES attributes; local
252 memset(&attributes, 0, sizeof (attributes));
278 attributes.PortFcId = attrs.PortFcId;
279 attributes.PortType = attrs.PortType;
280 attributes.PortState = attrs.PortState;
281 attributes.PortSupportedClassofService = attrs.PortSupportedClassofService;
282 attributes.PortSupportedSpeed = attrs.PortSupportedSpeed;
283 attributes.PortSpeed = attrs.PortSpeed;
284 attributes
301 HBA_PORTATTRIBUTES attributes; local
357 HBA_PORTATTRIBUTES attributes; local
[all...]
H A DSun_fcGetNPIVPortInfo.cc36 HBA_UINT32 vportindex, HBA_NPIVATTRIBUTES *attributes) {
43 *attributes = myNPIVPort->getPortAttributes();
35 Sun_fcGetNPIVPortInfo(HBA_HANDLE handle, HBA_UINT32 portindex, HBA_UINT32 vportindex, HBA_NPIVATTRIBUTES *attributes) argument
H A DHandlePort.cc117 * @memo Get attributes from a discovered port.
119 * @return The discovered port attributes
127 HBA_PORTATTRIBUTES attributes = port->getDiscoveredAttributes( local
130 return (attributes);
134 * @memo Get attributes from this port.
136 * @return The port attributes
144 HBA_PORTATTRIBUTES attributes = port->getPortAttributes(newState); local
146 return (attributes);
150 * @memo Get attributes from a discovered port.
152 * @return The discovered port attributes
162 HBA_PORTATTRIBUTES attributes = port->getDiscoveredAttributes( local
171 HBA_PORTNPIVATTRIBUTES attributes = port->getPortNPIVAttributes(newState); local
[all...]
H A DFCHBA.cc171 HBA_ADAPTERATTRIBUTES attributes; local
193 throw IOError("Unable to fetch adapter attributes");
199 attributes.NumberOfPorts = attrs.NumberOfPorts;
200 attributes.VendorSpecificID = attrs.VendorSpecificID;
201 memcpy(attributes.Manufacturer, attrs.Manufacturer, 64);
202 memcpy(attributes.SerialNumber, attrs.SerialNumber, 64);
203 memcpy(attributes.Model, attrs.Model, 256);
204 memcpy(attributes.ModelDescription, attrs.ModelDescription, 256);
205 memcpy(attributes.NodeSymbolicName, attrs.NodeSymbolicName, 256);
206 memcpy(attributes
283 HBA_ADAPTERATTRIBUTES attributes; local
[all...]
H A DFCHBAPort.cc554 HBA_PORTNPIVATTRIBUTES attributes; local
559 memset(&attributes, 0, sizeof(attributes));
569 attributes.npivflag = attrs.npivflag;
570 memcpy(&attributes.NodeWWN, &attrs.NodeWWN, 8);
571 memcpy(&attributes.PortWWN, &attrs.PortWWN, 8);
572 attributes.MaxNumberOfNPIVPorts = attrs.MaxNumberOfNPIVPorts;
573 attributes.NumberOfNPIVPorts = attrs.NumberOfNPIVPorts;
575 return (attributes);
581 HBA_PORTATTRIBUTES attributes; local
620 HBA_PORTATTRIBUTES attributes; local
661 HBA_PORTATTRIBUTES attributes; local
[all...]
H A DTgtFCHBA.cc92 HBA_ADAPTERATTRIBUTES attributes; local
141 throw IOError("Unable to fetch adapter attributes");
147 attributes.NumberOfPorts = attrs.NumberOfPorts;
148 attributes.VendorSpecificID = attrs.VendorSpecificID;
149 memcpy(attributes.Manufacturer, attrs.Manufacturer, 64);
150 memcpy(attributes.SerialNumber, attrs.SerialNumber, 64);
151 memcpy(attributes.Model, attrs.Model, 256);
152 memcpy(attributes.ModelDescription, attrs.ModelDescription, 256);
153 memcpy(attributes.NodeSymbolicName, attrs.NodeSymbolicName, 256);
154 memcpy(attributes
[all...]
H A DSun_fcGetFcpTargetMapping.cc73 HBA_ADAPTERATTRIBUTES attributes; local
88 /* get adapter attributes for number of ports */
89 status = Sun_fcGetAdapterAttributes(handle,&attributes);
91 log.userError("Unable to get adapter attributes");
100 for(port = 0; port < attributes.NumberOfPorts; port++) {
/osnet-11/usr/src/lib/sun_sas/common/
H A DSun_sasGetAdapterAttributes.c33 PSMHBA_ADAPTERATTRIBUTES attributes) {
38 if (attributes == NULL) {
39 log(LOG_DEBUG, ROUTINE, "NULL attributes pointer");
55 (void) memcpy(attributes, &hba_ptr->adapter_attributes,
32 Sun_sasGetAdapterAttributes(HBA_HANDLE handle, PSMHBA_ADAPTERATTRIBUTES attributes) argument
H A DSun_sasGetAdapterPortAttributes.c30 * Retrieves the attributes for a specified port of an adapter
34 HBA_UINT32 port, PSMHBA_PORTATTRIBUTES attributes) {
42 if ((attributes == NULL) ||
43 (attributes->PortSpecificAttribute.SASPort == NULL)) {
44 log(LOG_DEBUG, ROUTINE, "NULL attributes");
98 attributes->PortType = hba_port_ptr->port_attributes.PortType;
99 attributes->PortState = hba_port_ptr->port_attributes.PortState;
100 (void) strlcpy(attributes->OSDeviceName,
102 sizeof (attributes->OSDeviceName));
103 (void) memcpy(attributes
33 Sun_sasGetAdapterPortAttributes(HBA_HANDLE handle, HBA_UINT32 port, PSMHBA_PORTATTRIBUTES attributes) argument
[all...]
H A DSun_sasGetPortAttributesByWWN.c30 * Retrieves the attributes for a specific discovered port by WWN
34 HBA_WWN domainPortWWN, PSMHBA_PORTATTRIBUTES attributes)
43 if (attributes == NULL) {
44 log(LOG_DEBUG, ROUTINE, "NULL port attributes");
117 attributes->PortType =
119 attributes->PortState =
121 (void) strlcpy(attributes->OSDeviceName,
123 sizeof (attributes->OSDeviceName));
124 (void) memcpy(attributes->PortSpecificAttribute.SASPort,
144 attributes
33 Sun_sasGetPortAttributesByWWN(HBA_HANDLE handle, HBA_WWN portWWN, HBA_WWN domainPortWWN, PSMHBA_PORTATTRIBUTES attributes) argument
[all...]
H A DSun_sasGetDiscoveredPortAttributes.c30 * Retrieves the attributes for a specified port discovered in the network
35 SMHBA_PORTATTRIBUTES *attributes) {
44 if (attributes == NULL) {
46 "NULL attributes argument. Handle %08lx, port %d, "
121 attributes->PortType =
123 attributes->PortState =
125 (void) strlcpy(attributes->OSDeviceName,
127 sizeof (attributes->OSDeviceName));
128 (void) memcpy(attributes->PortSpecificAttribute.SASPort,
33 Sun_sasGetDiscoveredPortAttributes(HBA_HANDLE handle, HBA_UINT32 port, HBA_UINT32 discoveredport, SMHBA_PORTATTRIBUTES *attributes) argument
/osnet-11/usr/src/lib/libc/port/threads/
H A Dplockstat.d47 #pragma D attributes Evolving/Evolving/ISA provider plockstat provider
48 #pragma D attributes Private/Private/Unknown provider plockstat module
49 #pragma D attributes Private/Private/Unknown provider plockstat function
50 #pragma D attributes Evolving/Evolving/ISA provider plockstat name
51 #pragma D attributes Evolving/Evolving/ISA provider plockstat args
/osnet-11/usr/src/grub/grub2/include/grub/efiemu/
H A Druntime.h35 grub_efi_uint32_t attributes; member in struct:efi_variable
/osnet-11/usr/src/lib/libnisdb/
H A Dnis_parse_ldap_conf.c133 /* NIS to LDAP does not read command line attributes */
441 * RETURN VALUE: The config key if more attributes
940 /* Determine which attributes should be retrieved */
999 * Get a list of attributes from the LDAP server that have not yet
1005 * INPUT: Returns a list of parameters in attributes
1015 char **attributes)
1019 /* Determine which attributes should be retrieved */
1025 attributes[n_attrs++] = YP_CONFIG_DN;
1027 attributes[n_attrs++] = YP_CONFIG_SERVER_LIST;
1030 attributes[n_attr
1010 get_attribute_list( const __nis_ldap_proxy_info *proxy_info, const __nis_config_t *nis_config, const __nis_config_info_t *config_info, const __nisdb_table_mapping_t *table_info, char **attributes) argument
[all...]
/osnet-11/usr/src/lib/pkcs11/libpkcs11/common/
H A DmetaAttrManager.c33 find_attribute(CK_ATTRIBUTE_TYPE attrtype, generic_attr_t *attributes,
39 * Returns an (statically allocated) set of object attributes, as determined by
40 * class and keytype of the supplied object. The attributes are only
45 slot_object_t *slot_object, generic_attr_t **attributes,
94 attributes, num_attributes);
102 * Returns an (statically allocated) set of object attributes, as determined by
104 * class/subclass of the object. The attributes are only initialized to
110 generic_attr_t **attributes, size_t *num_attributes)
150 attributes, num_attributes));
156 * Returns an (statically allocated) set of object attributes, a
44 get_master_attributes_by_object(slot_session_t *session, slot_object_t *slot_object, generic_attr_t **attributes, size_t *num_attributes) argument
108 get_master_attributes_by_template( CK_ATTRIBUTE *template, CK_ULONG template_size, generic_attr_t **attributes, size_t *num_attributes) argument
161 get_master_template_by_type(CK_OBJECT_CLASS class, CK_ULONG subtype, generic_attr_t **attributes, size_t *num_attributes) argument
382 get_master_attributes_by_type(CK_OBJECT_CLASS class, CK_ULONG subtype, generic_attr_t **attributes, size_t *num_attributes) argument
515 dealloc_attributes(generic_attr_t *attributes, size_t num_attributes) argument
546 attribute_set_value(CK_ATTRIBUTE *new_attr, generic_attr_t *attributes, size_t num_attributes) argument
618 find_attribute(CK_ATTRIBUTE_TYPE attrtype, generic_attr_t *attributes, size_t num_attributes, generic_attr_t **found_attribute) argument
644 get_template_ulong(CK_ATTRIBUTE_TYPE type, CK_ATTRIBUTE *attributes, CK_ULONG num_attributes, CK_ULONG *result) argument
671 get_template_boolean(CK_ATTRIBUTE_TYPE type, CK_ATTRIBUTE *attributes, CK_ULONG num_attributes, boolean_t *result) argument
708 set_template_boolean(CK_ATTRIBUTE_TYPE type, CK_ATTRIBUTE *attributes, CK_ULONG num_attributes, boolean_t local, CK_BBOOL *value) argument
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/attrs/
H A Dattrs.pm8 attrs - set/get attributes of a subroutine (deprecated)
25 to declare attributes instead. See also L<attributes>.
27 This pragma lets you set and get attributes for subroutines.
28 Setting attributes takes place at compile time; trying to set
32 Valid attributes are as follows.
/osnet-11/usr/src/lib/libuefi_rt/common/
H A Dlibuefi_rt.c102 UINT32 *attributes, UINTN *data_size, void *data,
115 args.attributes = attributes;
127 UINT32 attributes, UINTN data_size, void *data,
140 args.attributes = &attributes;
100 uefirt_get_variable(uefirt_hdl_t hdl, CHAR16 *variable_name, EFI_GUID *vendor_guid, UINT32 *attributes, UINTN *data_size, void *data, EFI_STATUS *ret) argument
125 uefirt_set_variable(uefirt_hdl_t hdl, CHAR16 *variable_name, EFI_GUID *vendor_guid, UINT32 attributes, UINTN data_size, void *data, EFI_STATUS *ret) argument
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dattributes.pm1 package attributes; package
30 BEGIN { bootstrap attributes }
96 attributes - get/set subroutine or variable attributes
104 use attributes (); # optional, to get subroutine declarations
105 my @attrlist = attributes::get(\&foo);
107 use attributes 'get'; # import the attributes::get subroutine
119 use attributes __PACKAGE__, \&foo, 'method';
123 use attributes ();
[all...]
/osnet-11/usr/src/lib/libdtrace/common/
H A Dsched.d64 #pragma D attributes Stable/Stable/Common curcpu
68 #pragma D attributes Stable/Stable/Common cpu
72 #pragma D attributes Stable/Stable/Common pset
76 #pragma D attributes Stable/Stable/Common chip
80 #pragma D attributes Stable/Stable/Common lgrp

Completed in 107 milliseconds

123456