Lines Matching refs:QuadPart

269                     pInfo->CreationTime.QuadPart   = RTTimeSpecGetNtTime(&pDirEntry->Info.BirthTime); /* ridiculous name */
270 pInfo->LastAccessTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.AccessTime);
271 pInfo->LastWriteTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.ModificationTime);
272 pInfo->ChangeTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.ChangeTime);
273 pInfo->AllocationSize.QuadPart = pDirEntry->Info.cbAllocated;
274 pInfo->EndOfFile.QuadPart = pDirEntry->Info.cbObject;
306 pInfo->CreationTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.BirthTime); /* ridiculous name */
307 pInfo->LastAccessTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.AccessTime);
308 pInfo->LastWriteTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.ModificationTime);
309 pInfo->ChangeTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.ChangeTime);
310 pInfo->AllocationSize.QuadPart = pDirEntry->Info.cbAllocated;
311 pInfo->EndOfFile.QuadPart = pDirEntry->Info.cbObject;
344 pInfo->CreationTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.BirthTime); /* ridiculous name */
345 pInfo->LastAccessTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.AccessTime);
346 pInfo->LastWriteTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.ModificationTime);
347 pInfo->ChangeTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.ChangeTime);
348 pInfo->AllocationSize.QuadPart = pDirEntry->Info.cbAllocated;
349 pInfo->EndOfFile.QuadPart = pDirEntry->Info.cbObject;
392 pInfo->CreationTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.BirthTime); /* ridiculous name */
393 pInfo->LastAccessTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.AccessTime);
394 pInfo->LastWriteTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.ModificationTime);
395 pInfo->ChangeTime.QuadPart = RTTimeSpecGetNtTime(&pDirEntry->Info.ChangeTime);
396 pInfo->AllocationSize.QuadPart = pDirEntry->Info.cbAllocated;
397 pInfo->EndOfFile.QuadPart = pDirEntry->Info.cbObject;
401 pInfo->FileId.QuadPart = 0;
607 pInfo->VolumeCreationTime.QuadPart = 0;
778 TotalAllocationUnits.QuadPart = pShflVolInfo->ullTotalAllocationBytes / pShflVolInfo->ulBytesPerAllocationUnit;
779 AvailableAllocationUnits.QuadPart = pShflVolInfo->ullAvailableAllocationBytes / pShflVolInfo->ulBytesPerAllocationUnit;
783 Log(("VBOXSF: MrxQueryVolumeInfo: TotalAllocationUnits 0x%RX64\n", TotalAllocationUnits.QuadPart));
784 Log(("VBOXSF: MrxQueryVolumeInfo: AvailableAllocationUnits 0x%RX64\n", AvailableAllocationUnits.QuadPart));
1034 pInfo->IndexNumber.QuadPart = (ULONG_PTR)capFcb;
1069 pInfo->AllocationSize.QuadPart = 0;
1070 pInfo->EndOfFile.QuadPart = 0;
1122 pInfo->CreationTime.QuadPart = RTTimeSpecGetNtTime(&pFileEntry->BirthTime); /* Ridiculous name. */
1123 pInfo->LastAccessTime.QuadPart = RTTimeSpecGetNtTime(&pFileEntry->AccessTime);
1124 pInfo->LastWriteTime.QuadPart = RTTimeSpecGetNtTime(&pFileEntry->ModificationTime);
1125 pInfo->ChangeTime.QuadPart = RTTimeSpecGetNtTime(&pFileEntry->ChangeTime);
1145 pInfo->AllocationSize.QuadPart = pFileEntry->cbAllocated;
1146 pInfo->EndOfFile.QuadPart = pFileEntry->cbObject;
1193 pInfo->IndexNumber.QuadPart = (ULONG_PTR)capFcb;
1239 pInfo->EndOfFile.QuadPart = pFileEntry->cbObject;
1253 pInfo->AllocationSize.QuadPart = pFileEntry->cbAllocated;
1268 pInfo->CreationTime.QuadPart = RTTimeSpecGetNtTime(&pFileEntry->BirthTime); /* Ridiculous name. */
1269 pInfo->LastAccessTime.QuadPart = RTTimeSpecGetNtTime(&pFileEntry->AccessTime);
1270 pInfo->LastWriteTime.QuadPart = RTTimeSpecGetNtTime(&pFileEntry->ModificationTime);
1271 pInfo->ChangeTime.QuadPart = RTTimeSpecGetNtTime(&pFileEntry->ChangeTime);
1272 pInfo->AllocationSize.QuadPart = pFileEntry->cbAllocated;
1273 pInfo->EndOfFile.QuadPart = pFileEntry->cbObject;
1360 Log(("VBOXSF: MRxSetFileInfo: FileBasicInformation: CreationTime %RX64\n", pInfo->CreationTime.QuadPart));
1361 Log(("VBOXSF: MRxSetFileInfo: FileBasicInformation: LastAccessTime %RX64\n", pInfo->LastAccessTime.QuadPart));
1362 Log(("VBOXSF: MRxSetFileInfo: FileBasicInformation: LastWriteTime %RX64\n", pInfo->LastWriteTime.QuadPart));
1363 Log(("VBOXSF: MRxSetFileInfo: FileBasicInformation: ChangeTime %RX64\n", pInfo->ChangeTime.QuadPart));
1369 if (pInfo->CreationTime.QuadPart == -1)
1374 if (pInfo->LastAccessTime.QuadPart == -1)
1379 if (pInfo->LastWriteTime.QuadPart == -1)
1384 if (pInfo->ChangeTime.QuadPart == -1)
1404 if (pInfo->CreationTime.QuadPart && !pVBoxFobx->fKeepCreationTime)
1406 RTTimeSpecSetNtTime(&pSHFLFileInfo->BirthTime, pInfo->CreationTime.QuadPart);
1409 if (pInfo->LastAccessTime.QuadPart && !pVBoxFobx->fKeepLastAccessTime)
1411 RTTimeSpecSetNtTime(&pSHFLFileInfo->AccessTime, pInfo->LastAccessTime.QuadPart);
1414 if (pInfo->LastWriteTime.QuadPart && !pVBoxFobx->fKeepLastWriteTime)
1416 RTTimeSpecSetNtTime(&pSHFLFileInfo->ModificationTime, pInfo->LastWriteTime.QuadPart);
1419 if (pInfo->ChangeTime.QuadPart && !pVBoxFobx->fKeepChangeTime)
1421 RTTimeSpecSetNtTime(&pSHFLFileInfo->ChangeTime, pInfo->ChangeTime.QuadPart);
1441 if (pInfo->CreationTime.QuadPart && !pVBoxFobx->fKeepCreationTime)
1443 if (pInfo->LastAccessTime.QuadPart && !pVBoxFobx->fKeepLastAccessTime)
1445 if (pInfo->LastWriteTime.QuadPart && !pVBoxFobx->fKeepLastWriteTime)
1447 if (pInfo->ChangeTime.QuadPart && !pVBoxFobx->fKeepChangeTime)
1475 pInfo->CurrentByteOffset.QuadPart));
1486 pInfo->AllocationSize.QuadPart, capFcb->Header.FileSize.QuadPart));
1489 if (pInfo->AllocationSize.QuadPart > capFcb->Header.FileSize.QuadPart)
1512 pInfo->EndOfFile.QuadPart, capFcb->Header.FileSize.QuadPart));
1517 NewAllocationSize.QuadPart, Status));