• Home
  • Raw
  • Download

Lines Matching refs:cookie

211 	unsigned long cookie;  in fast_get_dcookie()  local
215 get_dcookie(path, &cookie); in fast_get_dcookie()
216 return cookie; in fast_get_dcookie()
227 unsigned long cookie = NO_COOKIE; in get_exec_dcookie() local
237 cookie = fast_get_dcookie(&exe_file->f_path); in get_exec_dcookie()
240 return cookie; in get_exec_dcookie()
254 unsigned long cookie = NO_COOKIE; in lookup_dcookie() local
264 cookie = fast_get_dcookie(&vma->vm_file->f_path); in lookup_dcookie()
276 cookie = INVALID_COOKIE; in lookup_dcookie()
279 return cookie; in lookup_dcookie()
302 add_user_ctx_switch(struct task_struct const *task, unsigned long cookie) in add_user_ctx_switch() argument
307 add_event_entry(cookie); in add_user_ctx_switch()
315 static void add_cookie_switch(unsigned long cookie) in add_cookie_switch() argument
319 add_event_entry(cookie); in add_cookie_switch()
332 unsigned long cookie; in add_data() local
343 cookie = lookup_dcookie(mm, pc, &offset); in add_data()
345 if (cookie == NO_COOKIE) in add_data()
347 if (cookie == INVALID_COOKIE) { in add_data()
351 if (cookie != last_cookie) { in add_data()
352 add_cookie_switch(cookie); in add_data()
353 last_cookie = cookie; in add_data()
381 unsigned long cookie; in add_sample() local
396 cookie = lookup_dcookie(mm, s->eip, &offset); in add_sample()
398 if (cookie == INVALID_COOKIE) { in add_sample()
403 if (cookie != last_cookie) { in add_sample()
404 add_cookie_switch(cookie); in add_sample()
405 last_cookie = cookie; in add_sample()
497 unsigned long cookie = 0; in sync_buffer() local
539 cookie = get_exec_dcookie(mm); in sync_buffer()
540 add_user_ctx_switch(new, cookie); in sync_buffer()