• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/NFS-82/rpc.lockd/

Lines Matching defs:arg4

476 		struct nlm4_testargs arg4;
478 arg4.cookie.n_bytes = (uint8_t *)&msg->lm_xid;
479 arg4.cookie.n_len = sizeof(msg->lm_xid);
480 arg4.exclusive = msg->lm_fl.l_type == F_WRLCK ? 1 : 0;
481 arg4.alock.caller_name = hostname;
482 arg4.alock.fh.n_bytes = (uint8_t *)&msg->lm_fh;
483 arg4.alock.fh.n_len = msg->lm_fh_len;
484 arg4.alock.oh.n_bytes = (uint8_t *)&owner;
485 arg4.alock.oh.n_len = sizeof(owner);
486 arg4.alock.svid = msg->lm_fl.l_pid;
487 arg4.alock.l_offset = msg->lm_fl.l_start;
488 arg4.alock.l_len = msg->lm_fl.l_len;
495 (xdrproc_t)xdr_nlm4_testargs, &arg4, (xdrproc_t)xdr_void, &dummy, timeout);
529 struct nlm4_lockargs arg4;
544 arg4.cookie.n_bytes = (uint8_t *)&msg->lm_xid;
545 arg4.cookie.n_len = sizeof(msg->lm_xid);
546 arg4.block = (msg->lm_flags & LOCKD_MSG_BLOCK) ? 1 : 0;
547 arg4.exclusive = msg->lm_fl.l_type == F_WRLCK ? 1 : 0;
548 arg4.alock.caller_name = hostname;
549 arg4.alock.fh.n_bytes = (uint8_t *)&msg->lm_fh;
550 arg4.alock.fh.n_len = msg->lm_fh_len;
551 arg4.alock.oh.n_bytes = (uint8_t *)&owner;
552 arg4.alock.oh.n_len = sizeof(owner);
553 arg4.alock.svid = msg->lm_fl.l_pid;
554 arg4.alock.l_offset = msg->lm_fl.l_start;
555 arg4.alock.l_len = msg->lm_fl.l_len;
556 arg4.reclaim = (msg->lm_flags & LOCKD_MSG_RECLAIM) ? 1 : 0;
557 arg4.state = nsm_state;
559 if ((cli = get_client((struct sockaddr *)&msg->lm_addr, NLM_VERS4, 1+arg4.reclaim, (msg->lm_flags & LOCKD_MSG_TCP))) == NULL)
564 (xdrproc_t)xdr_nlm4_lockargs, &arg4, (xdrproc_t)xdr_void, &dummy, timeout);
599 struct nlm4_cancargs arg4;
611 arg4.cookie.n_bytes = (uint8_t *)&msg->lm_xid;
612 arg4.cookie.n_len = sizeof(msg->lm_xid);
613 arg4.block = (msg->lm_flags & LOCKD_MSG_BLOCK) ? 1 : 0;
614 arg4.exclusive = msg->lm_fl.l_type == F_WRLCK ? 1 : 0;
615 arg4.alock.caller_name = hostname;
616 arg4.alock.fh.n_bytes = (uint8_t *)&msg->lm_fh;
617 arg4.alock.fh.n_len = msg->lm_fh_len;
618 arg4.alock.oh.n_bytes = (uint8_t *)&owner;
619 arg4.alock.oh.n_len = sizeof(owner);
620 arg4.alock.svid = msg->lm_fl.l_pid;
621 arg4.alock.l_offset = msg->lm_fl.l_start;
622 arg4.alock.l_len = msg->lm_fl.l_len;
629 (xdrproc_t)xdr_nlm4_cancargs, &arg4, (xdrproc_t)xdr_void, &dummy, timeout);
662 struct nlm4_unlockargs arg4;
673 arg4.cookie.n_bytes = (uint8_t *)&msg->lm_xid;
674 arg4.cookie.n_len = sizeof(msg->lm_xid);
675 arg4.alock.caller_name = hostname;
676 arg4.alock.fh.n_bytes = (uint8_t *)&msg->lm_fh;
677 arg4.alock.fh.n_len = msg->lm_fh_len;
678 arg4.alock.oh.n_bytes = (uint8_t *)&owner;
679 arg4.alock.oh.n_len = sizeof(owner);
680 arg4.alock.svid = msg->lm_fl.l_pid;
681 arg4.alock.l_offset = msg->lm_fl.l_start;
682 arg4.alock.l_len = msg->lm_fl.l_len;
689 (xdrproc_t)xdr_nlm4_unlockargs, &arg4, (xdrproc_t)xdr_void, &dummy, timeout);