Home | History | Annotate | Download | only in omap4xxx

Lines Matching defs:safe

225 /* returns 1 if valid, *safe == 1 if safe to dump stack */
226 static inline int check_guards(struct hdr *hdr, int *safe)
228 *safe = 1;
237 *safe = 0;
251 /* returns 1 if valid, *safe == 1 if safe to dump stack */
252 static inline int __check_allocation(struct hdr *hdr, int *safe)
255 *safe = 1;
263 *safe = 0;
271 /* check the guards to see if it's safe to dump a stack trace */
272 (void)check_guards(hdr, safe);
275 valid = check_guards(hdr, safe);
277 if (!valid && *safe) {
293 int *safe)
296 valid = __check_allocation(hdr, safe);
297 if (safe) {
306 int safe;
309 &safe);
320 static inline int del_leak(struct hdr *hdr, int *safe)
326 safe);
484 int safe;
488 if (del_leak(del, &safe)) {
489 /* safe == 1, because the allocation is valid */
508 int safe, num_checked;
514 (void)__check_allocation(hdr, &safe);