Searched refs:u16Length (Results 1 - 22 of 22) sorted by relevance

/vbox/src/VBox/Main/src-client/
H A DDisplayImplLegacy.cpp821 if (pHdr->u16Length != sizeof(VBOXVIDEOINFODISPLAY))
823 LogRel(("VBoxVideo: Guest adapter information %s invalid length %d!!!\n", "DISPLAY", pHdr->u16Length));
846 if (pHdr->u16Length != sizeof(VBOXVIDEOINFOQUERYCONF32))
848 LogRel(("VBoxVideo: Guest adapter information %s invalid length %d!!!\n", "CONF32", pHdr->u16Length));
873 if (pHdr->u16Length != 0)
875 LogRel(("VBoxVideo: Guest adapter information %s invalid length %d!!!\n", "END", pHdr->u16Length));
887 pu8 += pHdr->u16Length;
925 if (pHdr->u16Length != sizeof(VBOXVIDEOINFOSCREEN))
927 LogRel(("VBoxVideo: Guest display information %s invalid length %d!!!\n", "SCREEN", pHdr->u16Length));
965 if (pHdr->u16Length !
[all...]
H A DConsoleImpl.cpp8042 pFolderName->u16Length = (uint16_t)cbString - sizeof(RTUTF16);
8059 pMapName->u16Length = (uint16_t)cbString - sizeof(RTUTF16);
8122 pMapName->u16Length = (uint16_t)cbString - sizeof(RTUTF16);
/vbox/src/VBox/Additions/WINNT/SharedFolders/driver/
H A Dvbsfhlp.c464 pShflString->u16Length = cb; /* without terminating null */
465 AssertMsg(pShflString->u16Length + sizeof(WCHAR) == pShflString->u16Size,
466 ("u16Length %d, u16Size %d\n", pShflString->u16Length, pShflString->u16Size));
471 pShflString->u16Length = 0; /* without terminating null */
H A Dinfo.c25 ULONG cbLength = (str).u16Length; \
155 ParsedPath->u16Length = (uint16_t)(cch * sizeof(WCHAR));
157 AssertMsg(ParsedPath->u16Length + sizeof(WCHAR) == ParsedPath->u16Size,
158 ("u16Length %d, u16Size %d\n", ParsedPath->u16Length, ParsedPath->u16Size));
161 ParsedPath->u16Length / sizeof(WCHAR), ParsedPath->String.ucs2));
360 cbToCopy, pDirEntry->name.u16Size, pDirEntry->name.u16Length));
409 cbToCopy, pDirEntry->name.u16Size, pDirEntry->name.u16Length));
H A Dpath.c259 ParsedPath->u16Length / sizeof(WCHAR), ParsedPath->String.ucs2));
898 DestPath->u16Length / sizeof(WCHAR), &DestPath->String.ucs2[0]));
909 SrcPath->u16Length / sizeof(WCHAR), &SrcPath->String.ucs2[0]));
H A Dvbsf.c844 && pString->u16Length < cbRemoteName)
846 ReturnedSize = pString->u16Length;
847 RtlCopyMemory(pwcRemoteName, pString->String.ucs2, pString->u16Length);
/vbox/src/VBox/Additions/haiku/SharedFolders/
H A Dvboxsf.c150 rv->u16Length = len;
159 PSHFLSTRING rv = malloc(sizeof(SHFLSTRING) + s->u16Length);
161 memcpy(rv, s, sizeof(SHFLSTRING) + s->u16Length);
168 PSHFLSTRING rv = malloc(sizeof(SHFLSTRING) + s1->u16Length + s2len);
171 memcpy(rv, s1, sizeof(SHFLSTRING) + s1->u16Length);
173 rv->u16Length += s2len;
183 PSHFLSTRING rv = malloc(sizeof(SHFLSTRING) + s1len + s2->u16Length);
188 rv->u16Length = s1len + s2->u16Length;
189 rv->u16Size = rv->u16Length
[all...]
/vbox/include/VBox/
H A Dshflsvc.h162 uint16_t u16Length; member in struct:_SHFLSTRING
188 return pString ? pString->u16Length : 0;
204 pString->u16Length = 0;
228 if (RT_UNLIKELY(pString->u16Length >= pString->u16Size))
252 if (RT_UNLIKELY(pString->u16Length >= pString->u16Size))
254 rc = RTStrValidateEncodingEx((const char *)&pString->String.utf8[0], pString->u16Length + 1,
260 if (RT_UNLIKELY(pString->u16Length & 1))
262 if (RT_UNLIKELY((uint32_t)sizeof(RTUTF16) + pString->u16Length > pString->u16Size))
264 rc = RTUtf16ValidateEncodingEx(&pString->String.ucs2[0], pString->u16Length / 2 + 1,
H A DVBoxVideo.h136 uint16_t u16Length; member in struct:VBOXVIDEOINFOHDR
/vbox/src/VBox/HostServices/SharedFolders/
H A Dmappings.cpp230 FolderMapping[i].pMapName->u16Length = pMapName->u16Length;
443 pString->u16Length = pFolderMapping->pMapName->u16Length;
H A Dvbsf.cpp486 uint32_t cchSrc = pPath->u16Length;
536 cbPathLength = sizeof(SHFLSTRING) + pPathParameter->u16Length * 8 + 2;
546 pPathParameter->u16Length / sizeof(pPathParameter->String.ucs2[0]));
554 pPath->u16Length = ucs2Length * sizeof(pPath->String.ucs2[0]);
555 pPath->u16Size = pPath->u16Length + sizeof(pPath->String.ucs2[0]);
561 size_t cwcSrc = pPath->u16Length / sizeof(RTUTF16);
1742 pSFDEntry->name.u16Length = pDirEntry->cbName;
1776 pSFDEntry->name.u16Length = (uint32_t)RTUtf16Len(pSFDEntry->name.String.ucs2) * 2;
1777 pSFDEntry->name.u16Size = pSFDEntry->name.u16Length + 2;
H A Dservice.cpp942 && pszMapName->u16Length >= 2
943 && pszMapName->String.ucs2[pszMapName->u16Length / 2 - 1] == 0x0000)
945 pszMapName->u16Length -= 2;
949 pszMapName->u16Length += 2;
/vbox/src/VBox/Devices/PC/
H A DDevFwCommon.cpp308 uint16_t u16Length; member in struct:MPSCFGTBLHEADER
1132 pCfgTab->u16Length = (uint8_t*)pIrqEntry - pTable;
1133 pCfgTab->u8Checksum = fwCommonChecksum(pTable, pCfgTab->u16Length);
1135 AssertMsg(pCfgTab->u16Length < cbMax,
1137 pCfgTab->u16Length, cbMax));
/vbox/src/VBox/Additions/linux/sharedfolders/
H A Dvfsmod.c105 str_name->u16Length = name_len;
264 sf_i->path->u16Length = 1;
H A Ddirops.c205 info->name.String.utf8, info->name.u16Length);
811 ssymname->u16Length = symname_len - 1;
H A Dutils.c436 p_len = sf_i->path->u16Length;
462 tmp->u16Length = path_len - 1;
/vbox/src/VBox/Additions/freebsd/vboxvfs/
H A Dvboxvfs_vfsops.c137 pShFlShareName->u16Length = cbShare;
/vbox/src/VBox/Devices/Network/
H A DDevE1000.cpp743 uint16_t u16Length; /**< Length of data in buffer */ member in struct:E1kRxDesc_st
759 unsigned u16Length : 16; member in struct:E1kTDLegacy::TDLCmd_st
1758 E1kLog2(("%s <-- Receive Descriptor (%d bytes):\n", pThis->szPrf, pDesc->u16Length));
1760 pDesc->u64BufAddr, pDesc->u16Length, pDesc->u16Checksum));
1837 pThis->szPrf, cszDir, pDesc->legacy.cmd.u16Length, cszDir));
1840 pDesc->legacy.cmd.u16Length));
2160 pDesc->u16Length = (uint16_t)cb; Assert(pDesc->u16Length == cb);
2182 pDesc->u16Length = (uint16_t)cb; Assert(pDesc->u16Length
[all...]
/vbox/src/VBox/HostServices/SharedFolders/testcase/
H A DtstSharedFolderService.cpp492 pDest->string.u16Length = (uint16_t)(strlen(pcszSource) * sizeof(RTUTF16));
493 pDest->string.u16Size = pDest->string.u16Length + sizeof(RTUTF16);
494 for (unsigned i = 0; i <= pDest->string.u16Length; ++i)
/vbox/src/VBox/Additions/solaris/SharedFolders/
H A Dvboxfs_prov.c75 str->u16Length = len;
/vbox/src/VBox/Devices/Storage/
H A DDevLsiLogicSCSI.h160 unsigned u16Length: 16; member in struct:MptSGEntryChain
H A DDevLsiLogicSCSI.cpp1819 Log(("%s: u16Length=%u\n", __FUNCTION__, pSGEntry->Chain.u16Length));

Completed in 4252 milliseconds