Lines Matching defs:set

80  * set of datastore provider operations. Simply modify the
788 * The pool_(get|rm|set)_property() functions consult the plugins before
798 * The (get|rm|set)_property() functions bypass the plugin layer completely,
1356 /* Now set the container for this comp */
1508 * sure that PO_RDWR is set in addition if PO_CREAT is set.
1539 /* set rdwr flag so we can updated the in-memory config. */
1849 * Return a result set of pools, searching the supplied configuration
1957 * Return a result set of res (actually as pool_elem_ts), searching the
2008 * Return a result set of comp (actually as pool_elem_ts), searching the
2156 * Execute a query to search for a qualifying set of elements.
2167 * Get the next result from a result set of elements.
2170 pool_rs_next(pool_result_set_t *set)
2172 return (set->prs_next(set));
2176 * Get the previous result from a result set of elements.
2179 pool_rs_prev(pool_result_set_t *set)
2181 return (set->prs_prev(set));
2185 * Get the first result from a result set of elements.
2188 pool_rs_first(pool_result_set_t *set)
2190 return (set->prs_first(set));
2194 * Get the last result from a result set of elements.
2197 pool_rs_last(pool_result_set_t *set)
2199 return (set->prs_last(set));
2204 * Get the count for a result set of elements.
2207 pool_rs_count(pool_result_set_t *set)
2209 return (set->prs_count(set));
2213 * Get the index for a result set of elements.
2216 pool_rs_get_index(pool_result_set_t *set)
2218 return (set->prs_get_index(set));
2222 * Set the index for a result set of elements.
2225 pool_rs_set_index(pool_result_set_t *set, int index)
2227 return (set->prs_set_index(set, index));
2231 * Close a result set of elements, freeing all associated resources.
2234 pool_rs_close(pool_result_set_t *set)
2236 return (set->prs_close(set));
2368 * Transfer resource quantities from one resource set to another.
2410 * Transfer resource components from one resource set to another.
2702 * Return a result set of all comp for the supplied res.