Lines Matching refs:pBoth

186             uEndAddr = (uintptr_t)&pThis->uCurData.pBoth->FileName[0];
189 AssertReturn(pThis->uCurData.pBoth->FileNameLength < _64K, VERR_FILENAME_TOO_LONG);
190 AssertReturn((pThis->uCurData.pBoth->FileNameLength & 1) == 0, VERR_IO_GEN_FAILURE);
192 uEndAddr += pThis->uCurData.pBoth->FileNameLength;
195 AssertReturn((unsigned)pThis->uCurData.pBoth->ShortNameLength <= sizeof(pThis->uCurData.pBoth->ShortName),
224 uint32_t const offNext = pThis->uCurData.pBoth->NextEntryOffset;
235 cbRec += pThis->uCurData.pBoth->FileNameLength;
352 Assert(Ios.Information > sizeof(*pThis->uCurData.pBoth));
414 return rtDirNtConvertName(pThis, pThis->uCurData.pBoth->FileNameLength, pThis->uCurData.pBoth->FileName);
486 switch ( pDir->uCurData.pBoth->FileAttributes
578 PFILE_BOTH_DIR_INFORMATION pBoth = pDir->uCurData.pBoth;
587 uint8_t cbShort = pBoth->ShortNameLength;
591 memcpy(pDirEntry->wszShortName, pBoth->ShortName, cbShort);
597 pDirEntry->Info.cbObject = pBoth->EndOfFile.QuadPart;
598 pDirEntry->Info.cbAllocated = pBoth->AllocationSize.QuadPart;
600 Assert(sizeof(uint64_t) == sizeof(pBoth->CreationTime));
601 RTTimeSpecSetNtTime(&pDirEntry->Info.BirthTime, pBoth->CreationTime.QuadPart);
602 RTTimeSpecSetNtTime(&pDirEntry->Info.AccessTime, pBoth->LastAccessTime.QuadPart);
603 RTTimeSpecSetNtTime(&pDirEntry->Info.ModificationTime, pBoth->LastWriteTime.QuadPart);
604 RTTimeSpecSetNtTime(&pDirEntry->Info.ChangeTime, pBoth->ChangeTime.QuadPart);
606 pDirEntry->Info.Attr.fMode = rtFsModeFromDos((pBoth->FileAttributes << RTFS_DOS_SHIFT) & RTFS_DOS_MASK_NT,
646 pDirEntry->Info.Attr.u.EASize.cb = pBoth->EaSize;