Lines Matching refs:handle_value
19 zx_status_t sys_handle_close(zx_handle_t handle_value) { in sys_handle_close() argument
20 LTRACEF("handle %x\n", handle_value); in sys_handle_close()
24 if (handle_value == ZX_HANDLE_INVALID) in sys_handle_close()
27 HandleOwner handle(up->RemoveHandle(handle_value)); in sys_handle_close()
42 bool is_replace, zx_handle_t handle_value, zx_rights_t rights, in handle_dup_replace() argument
44 LTRACEF("handle %x\n", handle_value); in handle_dup_replace()
49 auto source = up->GetHandleLocked(handle_value); in handle_dup_replace()
62 up->RemoveHandleLocked(handle_value); in handle_dup_replace()
69 up->RemoveHandleLocked(handle_value); in handle_dup_replace()
76 zx_handle_t handle_value, zx_rights_t rights, user_out_handle* out) { in sys_handle_duplicate() argument
77 return handle_dup_replace(false, handle_value, rights, out); in sys_handle_duplicate()
82 zx_handle_t handle_value, zx_rights_t rights, user_out_handle* out) { in sys_handle_replace() argument
83 return handle_dup_replace(true, handle_value, rights, out); in sys_handle_replace()