Lines Matching refs:handle_cookie
3854 struct binder_handle_cookie *handle_cookie) in binder_request_freeze_notification() argument
3863 ref = binder_get_ref_olocked(proc, handle_cookie->handle, false); in binder_request_freeze_notification()
3866 proc->pid, thread->pid, handle_cookie->handle); in binder_request_freeze_notification()
3884 freeze->cookie = handle_cookie->cookie; in binder_request_freeze_notification()
3907 struct binder_handle_cookie *handle_cookie) in binder_clear_freeze_notification() argument
3913 ref = binder_get_ref_olocked(proc, handle_cookie->handle, false); in binder_clear_freeze_notification()
3916 proc->pid, thread->pid, handle_cookie->handle); in binder_clear_freeze_notification()
3932 if (freeze->cookie != handle_cookie->cookie) { in binder_clear_freeze_notification()
3935 (u64)handle_cookie->cookie); in binder_clear_freeze_notification()
4482 struct binder_handle_cookie handle_cookie; in binder_thread_write() local
4485 if (copy_from_user(&handle_cookie, ptr, sizeof(handle_cookie))) in binder_thread_write()
4487 ptr += sizeof(handle_cookie); in binder_thread_write()
4489 &handle_cookie); in binder_thread_write()
4495 struct binder_handle_cookie handle_cookie; in binder_thread_write() local
4498 if (copy_from_user(&handle_cookie, ptr, sizeof(handle_cookie))) in binder_thread_write()
4500 ptr += sizeof(handle_cookie); in binder_thread_write()
4501 error = binder_clear_freeze_notification(proc, thread, &handle_cookie); in binder_thread_write()