Lines Matching defs:object

52  * internal object type values returned by sa_get_object_type()
683 * sa_get_object_type(object)
685 * This function returns a numeric value representing the object
691 sa_get_object_type(void *object)
693 xmlNodePtr node = (xmlNodePtr)object;
935 * create a new object is called. The document
938 * etc. when all you have is an object in the
1213 * Return the share object for the share specified. The share
1540 * Add a new share object to the specified group. The share will
2435 * Get the property object with the name specified in prop from the
2702 * Given a property, return the object it is a property of. This will
3234 * sa_add_property(object, property)
3236 * Add the specified property to the object. Issue the appropriate
3237 * transaction or mark a ZFS object as needing an update.
3241 sa_add_property(void *object, sa_property_t property)
3250 handle = sa_find_group_handle((sa_group_t)object);
3252 proto = sa_get_optionset_attr(object, "type");
3253 if ((ret = sa_valid_property(handle, object, proto,
3256 (xmlNodePtr)object, (xmlNodePtr)property);
3267 parent = sa_get_parent_group(object);
3307 if (is_nodetype(object, "optionset")) {
3309 (sa_optionset_t)object,
3313 (sa_optionset_t)object,
3367 * Remove the specied property from its containing object. Update the
4106 * get_protocol_list(optionset, object)
4108 * Get the protocol optionset list for the object and add them as
4112 get_protocol_list(sa_optionset_t optionset, void *object)
4118 for (opts = sa_get_optionset(object, NULL);
4158 * sa_optionset_t sa_get_active_protocols(object)
4160 * Return a list of the protocols that are active for the object.
4171 sa_get_active_protocols(void *object)
4179 if (object == NULL)
4189 if (sa_is_resource(object)) {
4190 resource = (sa_resource_t)object;
4193 } else if (sa_is_share(object)) {
4194 share = (sa_share_t)object;