Lines Matching defs:set

83  * set of datastore provider operations. Simply modify the
791 * The pool_(get|rm|set)_property() functions consult the plugins before
801 * The (get|rm|set)_property() functions bypass the plugin layer completely,
1359 /* Now set the container for this comp */
1511 * sure that PO_RDWR is set in addition if PO_CREAT is set.
1542 /* set rdwr flag so we can updated the in-memory config. */
1852 * Return a result set of pools, searching the supplied configuration
1960 * Return a result set of res (actually as pool_elem_ts), searching the
2011 * Return a result set of comp (actually as pool_elem_ts), searching the
2159 * Execute a query to search for a qualifying set of elements.
2170 * Get the next result from a result set of elements.
2173 pool_rs_next(pool_result_set_t *set)
2175 return (set->prs_next(set));
2179 * Get the previous result from a result set of elements.
2182 pool_rs_prev(pool_result_set_t *set)
2184 return (set->prs_prev(set));
2188 * Get the first result from a result set of elements.
2191 pool_rs_first(pool_result_set_t *set)
2193 return (set->prs_first(set));
2197 * Get the last result from a result set of elements.
2200 pool_rs_last(pool_result_set_t *set)
2202 return (set->prs_last(set));
2207 * Get the count for a result set of elements.
2210 pool_rs_count(pool_result_set_t *set)
2212 return (set->prs_count(set));
2216 * Get the index for a result set of elements.
2219 pool_rs_get_index(pool_result_set_t *set)
2221 return (set->prs_get_index(set));
2225 * Set the index for a result set of elements.
2228 pool_rs_set_index(pool_result_set_t *set, int index)
2230 return (set->prs_set_index(set, index));
2234 * Close a result set of elements, freeing all associated resources.
2237 pool_rs_close(pool_result_set_t *set)
2239 return (set->prs_close(set));
2371 * Transfer resource quantities from one resource set to another.
2413 * Transfer resource components from one resource set to another.
2705 * Return a result set of all comp for the supplied res.