Lines Matching refs:pDirEntry

53     PSHFLDIRINFO pDirEntry;
236 pDirEntry = (PSHFLDIRINFO)pHGCMBuffer;
242 while ((*pLengthRemaining) && (cFiles > 0) && (pDirEntry != NULL))
244 int cbEntry = RT_OFFSETOF(SHFLDIRINFO, name.String) + pDirEntry->name.u16Size;
263 cbToCopy += pDirEntry->name.u16Size;
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;
276 pInfo->FileAttributes = VBoxToNTFileAttributes(pDirEntry->Info.Attr.fMode);
278 INIT_FILE_NAME(pInfo, pDirEntry->name);
300 cbToCopy += pDirEntry->name.u16Size;
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;
314 pInfo->FileAttributes = VBoxToNTFileAttributes(pDirEntry->Info.Attr.fMode);
316 INIT_FILE_NAME(pInfo, pDirEntry->name);
338 cbToCopy += pDirEntry->name.u16Size;
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;
353 pInfo->FileAttributes = VBoxToNTFileAttributes(pDirEntry->Info.Attr.fMode);
355 INIT_FILE_NAME(pInfo, pDirEntry->name);
358 pDirEntry->Info.cbAllocated, pDirEntry->Info.cbObject));
360 cbToCopy, pDirEntry->name.u16Size, pDirEntry->name.u16Length));
364 pDirEntry->name.u16Size / sizeof(WCHAR), pDirEntry->name.String.ucs2));
386 cbToCopy += pDirEntry->name.u16Size;
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;
402 pInfo->FileAttributes = VBoxToNTFileAttributes(pDirEntry->Info.Attr.fMode);
404 INIT_FILE_NAME(pInfo, pDirEntry->name);
407 pDirEntry->Info.cbAllocated, pDirEntry->Info.cbObject));
409 cbToCopy, pDirEntry->name.u16Size, pDirEntry->name.u16Length));
413 pDirEntry->name.u16Size / sizeof(WCHAR), pDirEntry->name.String.ucs2));
435 cbToCopy += pDirEntry->name.u16Size;
443 INIT_FILE_NAME(pInfo, pDirEntry->name);
469 pDirEntry = (PSHFLDIRINFO)((uintptr_t)pDirEntry + cbEntry);