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
86 if (c->len >= c->size) in stack_trace_consume_entry()
94 return c->len < c->size; in stack_trace_consume_entry()
108 * @size: Size of the storage array
113 unsigned int stack_trace_save(unsigned long *store, unsigned int size, in stack_trace_save() argument
119 .size = size, in stack_trace_save()
132 * @size: Size of the storage array
138 unsigned int size, unsigned int skipnr) in stack_trace_save_tsk() argument
143 .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()
267 * @size: Size of the storage array
272 unsigned int stack_trace_save(unsigned long *store, unsigned int size, in stack_trace_save() argument
277 .max_entries = size, in stack_trace_save()
290 * @size: Size of the storage array
296 unsigned long *store, unsigned int size, in stack_trace_save_tsk() argument
301 .max_entries = size, in stack_trace_save_tsk()
314 * @size: Size of the storage array
320 unsigned int size, unsigned int skipnr) in stack_trace_save_regs() argument
324 .max_entries = size, in stack_trace_save_regs()
337 * @size: Size of the storage array
346 unsigned int size) in stack_trace_save_tsk_reliable() argument
350 .max_entries = size, in stack_trace_save_tsk_reliable()
362 * @size: Size of the storage array
366 unsigned int stack_trace_save_user(unsigned long *store, unsigned int size) in stack_trace_save_user() argument
370 .max_entries = size, in stack_trace_save_user()