Lines Matching refs:size
39 * @size: Size of the print buffer
46 int stack_trace_snprint(char *buf, size_t size, const unsigned long *entries,
54 for (i = 0; i < nr_entries && size; i++) {
55 generated = snprintf(buf, size, "%*c%pS\n", 1 + spaces, ' ',
59 if (generated >= size) {
60 buf += size;
61 size = 0;
64 size -= generated;
76 unsigned int size;
85 if (c->len >= c->size)
93 return c->len < c->size;
106 * @size: Size of the storage array
111 unsigned int stack_trace_save(unsigned long *store, unsigned int size,
117 .size = size,
130 * @size: Size of the storage array
136 unsigned int size, unsigned int skipnr)
141 .size = size,
158 * @size: Size of the storage array
164 unsigned int size, unsigned int skipnr)
169 .size = size,
182 * @size: Size of the storage array
191 unsigned int size)
196 .size = size,
217 * @size: Size of the storage array
221 unsigned int stack_trace_save_user(unsigned long *store, unsigned int size)
226 .size = size,
264 * @size: Size of the storage array
269 unsigned int stack_trace_save(unsigned long *store, unsigned int size,
274 .max_entries = size,
287 * @size: Size of the storage array
293 unsigned long *store, unsigned int size,
298 .max_entries = size,
311 * @size: Size of the storage array
317 unsigned int size, unsigned int skipnr)
321 .max_entries = size,
334 * @size: Size of the storage array
343 unsigned int size)
347 .max_entries = size,
359 * @size: Size of the storage array
363 unsigned int stack_trace_save_user(unsigned long *store, unsigned int size)
367 .max_entries = size,