Home
last modified time | relevance | path

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

/titanic_50/usr/src/uts/common/fs/smbsrv/
H A Dsmb_mbuf_marshaling.c54 static uint8_t mbc_marshal_fetch_byte(mbuf_chain_t *mbc);
228 *cvalp++ = mbc_marshal_fetch_byte(mbc); in smb_mbc_vdecodef()
1219 mbc_marshal_fetch_byte(mbuf_chain_t *mbc) in mbc_marshal_fetch_byte() function
1241 *data = mbc_marshal_fetch_byte(mbc); in mbc_marshal_get_char()
1265 tmp = (uint16_t)mbc_marshal_fetch_byte(mbc); in mbc_marshal_get_short()
1266 tmp |= ((uint16_t)mbc_marshal_fetch_byte(mbc)) << 8; in mbc_marshal_get_short()
1291 tmp = (uint32_t)mbc_marshal_fetch_byte(mbc); in mbc_marshal_get_long()
1292 tmp |= ((uint32_t)mbc_marshal_fetch_byte(mbc)) << 8; in mbc_marshal_get_long()
1293 tmp |= ((uint32_t)mbc_marshal_fetch_byte(mbc)) << 16; in mbc_marshal_get_long()
1294 tmp |= ((uint32_t)mbc_marshal_fetch_byte(mbc)) << 24; in mbc_marshal_get_long()
[all …]