Lines Matching refs:limit
275 static uint32_t ifp_list_limit(struct ifp_ctx *ctx, uint32_t limit)
277 if (limit == 0) {
280 return MIN(ctx->wildcard_limit, limit);
282 return limit;
289 uint32_t limit)
299 list_ctx->limit = ifp_list_limit(ctx, limit);
303 list_ctx->paths = talloc_zero_array(list_ctx, const char *, limit);
315 size_t capacity = list_ctx->limit - list_ctx->path_count;
319 "IFP list request has limit of %"PRIu32" entries but back end "
320 "returned %zu entries\n", list_ctx->limit, entries);