Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_session.c335 uint8_t msg_type, uint32_t msg_length, in smb_session_xprt_puthdr() argument
345 if (msg_length >= (1 << 17)) in smb_session_xprt_puthdr()
348 buf[1] = ((msg_length >> 16) & 1); in smb_session_xprt_puthdr()
349 buf[2] = (msg_length >> 8) & 0xff; in smb_session_xprt_puthdr()
350 buf[3] = msg_length & 0xff; in smb_session_xprt_puthdr()
360 if (msg_length >= (1 << 24)) in smb_session_xprt_puthdr()
363 buf[1] = (msg_length >> 16) & 0xff; in smb_session_xprt_puthdr()
364 buf[2] = (msg_length >> 8) & 0xff; in smb_session_xprt_puthdr()
365 buf[3] = msg_length & 0xff; in smb_session_xprt_puthdr()
/illumos-gate/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()