Lines Matching refs:result

187 	int result;
198 result = conf->pc_prov->pc_set_binding(conf, pool_name, idtype, id);
202 return (result);
213 char *result;
231 result = conf->pc_prov->pc_get_resource_binding(conf, type, pid);
234 return (result);
245 char *result;
256 result = conf->pc_prov->pc_get_binding(conf, pid);
259 return (result);
1852 * Return a result set of pools, searching the supplied configuration
1862 pool_t **result = NULL;
1877 if ((result = malloc(sizeof (pool_t *) * (*size + 1))) == NULL) {
1882 (void) memset(result, 0, sizeof (pool_t *) * (*size + 1));
1886 free(result);
1890 result[i++] = pool_elem_pool(pe);
1893 return (result);
1960 * Return a result set of res (actually as pool_elem_ts), searching the
1971 pool_resource_t **result = NULL;
1989 if ((result = malloc(sizeof (pool_resource_t *) * (*size + 1)))
1995 (void) memset(result, 0, sizeof (pool_resource_t *) * (*size + 1));
2000 free(result);
2004 result[i++] = pool_elem_res(pe);
2007 return (result);
2011 * Return a result set of comp (actually as pool_elem_ts), searching the
2170 * Get the next result from a result set of elements.
2179 * Get the previous result from a result set of elements.
2188 * Get the first result from a result set of elements.
2197 * Get the last result from a result set of elements.
2207 * Get the count for a result set of elements.
2216 * Get the index for a result set of elements.
2225 * Set the index for a result set of elements.
2234 * Close a result set of elements, freeing all associated resources.
2637 pool_resource_t **result = NULL;
2655 if ((result = malloc(sizeof (pool_resource_t *) * (*size + 1)))
2661 (void) memset(result, 0, sizeof (pool_resource_t *) * (*size + 1));
2666 free(result);
2670 result[i++] = pool_elem_res(pe);
2673 return (result);
2705 * Return a result set of all comp for the supplied res.
2713 pool_component_t **result = NULL;
2730 if ((result = malloc(sizeof (pool_component_t *) * (*size + 1)))
2736 (void) memset(result, 0, sizeof (pool_component_t *) * (*size + 1));
2740 free(result);
2744 result[i++] = pool_elem_comp(pe);
2747 return (result);