Lines Matching full:size

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