Home
last modified time | relevance | path

Searched refs:msg_length (Results 1 – 5 of 5) sorted by relevance

/titanic_50/usr/src/uts/sun4u/starcat/io/
H A Dscosmb.c1129 uint32_t msg_cmd, msg_length; in scosmb_log_ecc_error() local
1144 msg_length = sizeof (plat_ecc_error_data_t); in scosmb_log_ecc_error()
1151 msg_length = sizeof (plat_ecc_error2_data_t); in scosmb_log_ecc_error()
1163 msg_length = sizeof (plat_ecc_indictment_data_t); in scosmb_log_ecc_error()
1175 msg_length = sizeof (plat_ecc_indictment2_data_t); in scosmb_log_ecc_error()
1188 msg_length = sizeof (plat_dimm_sid_request_data_t); in scosmb_log_ecc_error()
1221 msg_header_ptr->length = msg_length; in scosmb_log_ecc_error()
1222 msg_header_ptr->data = kmem_zalloc((size_t)msg_length, sleep_flag); in scosmb_log_ecc_error()
1233 bcopy(datap, msg_header_ptr->data, (size_t)msg_length); in scosmb_log_ecc_error()
H A Dmboxsc.c536 header.msg_length = MBOXSC_MSGHDR_SIZE + length; in mboxsc_putmsg()
656 error = mboxsc_timed_write(deadline, key, header.msg_length, in mboxsc_putmsg()
966 datalen = mailboxp->mbox_header.msg_length - MBOXSC_MSGHDR_SIZE; in mboxsc_getmsg()
1000 error = mboxsc_timed_read(deadline, key, header.msg_length, in mboxsc_getmsg()
2454 mailboxp->mbox_header.msg_length); in print_mailbox()
/titanic_50/usr/src/uts/common/fs/smbsrv/
H A Dsmb_session.c357 uint8_t msg_type, uint32_t msg_length, in smb_session_xprt_puthdr() argument
367 if (msg_length >= (1 << 17)) in smb_session_xprt_puthdr()
370 buf[1] = ((msg_length >> 16) & 1); in smb_session_xprt_puthdr()
371 buf[2] = (msg_length >> 8) & 0xff; in smb_session_xprt_puthdr()
372 buf[3] = msg_length & 0xff; in smb_session_xprt_puthdr()
382 if (msg_length >= (1 << 24)) in smb_session_xprt_puthdr()
385 buf[1] = (msg_length >> 16) & 0xff; in smb_session_xprt_puthdr()
386 buf[2] = (msg_length >> 8) & 0xff; in smb_session_xprt_puthdr()
387 buf[3] = msg_length & 0xff; in smb_session_xprt_puthdr()
/titanic_50/usr/src/uts/sun4u/starcat/sys/
H A Dmboxsc_impl.h54 uint32_t msg_length; member
/titanic_50/usr/src/grub/grub-0.97/netboot/
H A Dpcnet32.c202 u32 msg_length; member
561 (le32_to_cpu(rx_ring[entry].msg_length) & 0xfff) - 4; in pcnet32_poll()