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()
1437 tmp = (uint32_t)mbc_marshal_fetch_byte(mbc); in mbc_marshal_get_long()
1477 tmp = (uint64_t)mbc_marshal_fetch_byte(mbc) << 32; in mbc_marshal_get_odd_long_long()
1478 tmp |= (uint64_t)mbc_marshal_fetch_byte(mbc) << 40; in mbc_marshal_get_odd_long_long()
1481 tmp |= (uint64_t)mbc_marshal_fetch_byte(mbc); in mbc_marshal_get_odd_long_long()
1482 tmp |= (uint64_t)mbc_marshal_fetch_byte(mbc) << 8; in mbc_marshal_get_odd_long_long()
[all …]