Home
last modified time | relevance | path

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

/illumos-gate/usr/src/common/smbsrv/
H A Dsmb_utf8.c289 int oemlen; in smb_sbequiv_strlen() local
291 oemlen = smb_mbstooem(oembuf, mbsbuf, 8); in smb_sbequiv_strlen()
292 if (oemlen < 0) in smb_sbequiv_strlen()
294 len += oemlen; in smb_sbequiv_strlen()
337 int oemlen; in smb_oemtombs() local
349 oemlen = 0; in smb_oemtombs()
352 oemlen++; in smb_oemtombs()
362 size_t ilen = oemlen; in smb_oemtombs()
388 rlen = oemlen; in smb_oemtombs()
H A Dsmb_msgbuf.c383 int oemlen; // len of OEM string, w/o null in msgbuf_get_oem_string() local
397 oemlen = 0; in msgbuf_get_oem_string()
407 oemlen++; in msgbuf_get_oem_string()
420 oembuf[oemlen] = '\0'; in msgbuf_get_oem_string()
426 mbsmax = oemlen * 2; in msgbuf_get_oem_string()
717 int oemlen; in msgbuf_put_oem_string() local
732 repc = oemlen; in msgbuf_put_oem_string()
741 oembuf = smb_msgbuf_malloc(mb, oemlen + 1); in msgbuf_put_oem_string()
744 rlen = smb_mbstooem(oembuf, mbs, oemlen); in msgbuf_put_oem_string()
747 if (rlen > oemlen) in msgbuf_put_oem_string()
[all …]
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_mbuf_marshaling.c1098 int oemlen; in mbc_marshal_put_oem_string() local
1114 repc = oemlen + 1; in mbc_marshal_put_oem_string()
1127 if (rlen > oemlen) in mbc_marshal_put_oem_string()
1128 rlen = oemlen; in mbc_marshal_put_oem_string()
1537 int oemlen, oemmax; in mbc_marshal_get_oem_string() local
1549 oemlen = 0; in mbc_marshal_get_oem_string()
1555 if (oemlen >= max_bytes) in mbc_marshal_get_oem_string()
1557 if ((oemlen + 2) >= oemmax) { in mbc_marshal_get_oem_string()
1567 oembuf[oemlen++] = ch; in mbc_marshal_get_oem_string()
1569 oembuf[oemlen] = '\0'; in mbc_marshal_get_oem_string()
[all …]