Lines Matching full:size

40  * @size:	Size of the print buffer
47 int stack_trace_snprint(char *buf, size_t size, const unsigned long *entries, in stack_trace_snprint() argument
55 for (i = 0; i < nr_entries && size; i++) { in stack_trace_snprint()
56 generated = snprintf(buf, size, "%*c%pS\n", 1 + spaces, ' ', in stack_trace_snprint()
60 if (generated >= size) { in stack_trace_snprint()
61 buf += size; in stack_trace_snprint()
62 size = 0; in stack_trace_snprint()
65 size -= generated; in stack_trace_snprint()
77 unsigned int size; member
86 if (c->len >= c->size) in stack_trace_consume_entry()
94 return c->len < c->size; in stack_trace_consume_entry()
107 * @size: Size of the storage array
112 unsigned int stack_trace_save(unsigned long *store, unsigned int size, in stack_trace_save() argument
118 .size = size, in stack_trace_save()
131 * @size: Size of the storage array
137 unsigned int size, unsigned int skipnr) in stack_trace_save_tsk() argument
142 .size = size, in stack_trace_save_tsk()
160 * @size: Size of the storage array
166 unsigned int size, unsigned int skipnr) in stack_trace_save_regs() argument
171 .size = size, in stack_trace_save_regs()
184 * @size: Size of the storage array
193 unsigned int size) in stack_trace_save_tsk_reliable() argument
198 .size = size, in stack_trace_save_tsk_reliable()
219 * @size: Size of the storage array
223 unsigned int stack_trace_save_user(unsigned long *store, unsigned int size) in stack_trace_save_user() argument
228 .size = size, in stack_trace_save_user()
263 * @size: Size of the storage array
268 unsigned int stack_trace_save(unsigned long *store, unsigned int size, in stack_trace_save() argument
273 .max_entries = size, in stack_trace_save()
286 * @size: Size of the storage array
292 unsigned long *store, unsigned int size, in stack_trace_save_tsk() argument
297 .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()