Searched refs:mbc_marshal_store_byte (Results 1 – 1 of 1) sorted by relevance
/illumos-gate/usr/src/uts/common/fs/smbsrv/ |
H A D | smb_mbuf_marshaling.c | 43 static void mbc_marshal_store_byte(mbuf_chain_t *, uint8_t); 1022 mbc_marshal_store_byte(mbuf_chain_t *mbc, uint8_t data) in mbc_marshal_store_byte() function 1043 mbc_marshal_store_byte(mbc, data); in mbc_marshal_put_char() 1052 mbc_marshal_store_byte(mbc, data); in mbc_marshal_put_short() 1053 mbc_marshal_store_byte(mbc, data >> 8); in mbc_marshal_put_short() 1062 mbc_marshal_store_byte(mbc, data); in mbc_marshal_put_long() 1063 mbc_marshal_store_byte(mbc, data >> 8); in mbc_marshal_put_long() 1064 mbc_marshal_store_byte(mbc, data >> 16); in mbc_marshal_put_long() 1065 mbc_marshal_store_byte(mbc, data >> 24); in mbc_marshal_put_long() 1075 mbc_marshal_store_byte(mbc, data); in mbc_marshal_put_long_long() [all …]
|