Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_mbuf_marshaling.c53 static uint8_t mbc_marshal_fetch_byte(mbuf_chain_t *mbc);
227 *cvalp++ = mbc_marshal_fetch_byte(mbc); in smb_mbc_vdecodef()
1365 mbc_marshal_fetch_byte(mbuf_chain_t *mbc) in mbc_marshal_fetch_byte() function
1387 *data = mbc_marshal_fetch_byte(mbc); in mbc_marshal_get_char()
1411 tmp = (uint16_t)mbc_marshal_fetch_byte(mbc); in mbc_marshal_get_short()
1412 tmp |= ((uint16_t)mbc_marshal_fetch_byte(mbc)) << 8; in mbc_marshal_get_short()
1437 tmp = (uint32_t)mbc_marshal_fetch_byte(mbc); in mbc_marshal_get_long()
1438 tmp |= ((uint32_t)mbc_marshal_fetch_byte(mbc)) << 8; in mbc_marshal_get_long()
1439 tmp |= ((uint32_t)mbc_marshal_fetch_byte(mbc)) << 16; in mbc_marshal_get_long()
1440 tmp |= ((uint32_t)mbc_marshal_fetch_byte(mbc)) << 24; in mbc_marshal_get_long()
[all …]