Home | History | Annotate | Download | only in gdb

Lines Matching defs:ndr

494 	  NDR_record_t *ndr;
519 ndr = (NDR_record_t *)(desc + bod->msgh_descriptor_count);
522 _("NDR: mig=%02x if=%02x encod=%02x "
524 ndr->mig_vers, ndr->if_vers, ndr->mig_encoding,
525 ndr->int_rep, ndr->char_rep, ndr->float_rep);
589 darwin_check_message_ndr (NDR_record_t *ndr)
591 if (ndr->mig_vers != NDR_PROTOCOL_2_0
592 || ndr->if_vers != NDR_PROTOCOL_2_0
593 || ndr->mig_encoding != NDR_record.mig_encoding
594 || ndr->int_rep != NDR_record.int_rep
595 || ndr->char_rep != NDR_record.char_rep
596 || ndr->float_rep != NDR_record.float_rep)
610 NDR_record_t *ndr;
629 + sizeof (*ndr) + 2 * sizeof (integer_t))
638 ndr = (NDR_record_t *)(desc + 2);
639 if (darwin_check_message_ndr (ndr) != 0)
643 data = (integer_t *)(ndr + 1);
728 + sizeof (*ndr) + 2 * sizeof (integer_t)
744 NDR_record_t *ndr = (NDR_record_t *)(hdr + 1);
745 integer_t *data = (integer_t *)(ndr + 1);
754 if (hdr->msgh_size < (sizeof (*hdr) + sizeof (*ndr) + sizeof (integer_t)))
758 if (darwin_check_message_ndr (ndr) != 0)
790 reply->NDR = NDR_record;