Lines Matching refs:handle_cookie
3924 struct binder_handle_cookie *handle_cookie) in binder_request_freeze_notification() argument
3933 ref = binder_get_ref_olocked(proc, handle_cookie->handle, false); in binder_request_freeze_notification()
3936 proc->pid, thread->pid, handle_cookie->handle); in binder_request_freeze_notification()
3954 freeze->cookie = handle_cookie->cookie; in binder_request_freeze_notification()
3977 struct binder_handle_cookie *handle_cookie) in binder_clear_freeze_notification() argument
3983 ref = binder_get_ref_olocked(proc, handle_cookie->handle, false); in binder_clear_freeze_notification()
3986 proc->pid, thread->pid, handle_cookie->handle); in binder_clear_freeze_notification()
4002 if (freeze->cookie != handle_cookie->cookie) { in binder_clear_freeze_notification()
4005 (u64)handle_cookie->cookie); in binder_clear_freeze_notification()
4554 struct binder_handle_cookie handle_cookie; in binder_thread_write() local
4557 if (copy_from_user(&handle_cookie, ptr, sizeof(handle_cookie))) in binder_thread_write()
4559 ptr += sizeof(handle_cookie); in binder_thread_write()
4561 &handle_cookie); in binder_thread_write()
4567 struct binder_handle_cookie handle_cookie; in binder_thread_write() local
4570 if (copy_from_user(&handle_cookie, ptr, sizeof(handle_cookie))) in binder_thread_write()
4572 ptr += sizeof(handle_cookie); in binder_thread_write()
4573 error = binder_clear_freeze_notification(proc, thread, &handle_cookie); in binder_thread_write()