Lines Matching refs:aFSInfoBuf
2491 FSALLOCATE aFSInfoBuf; in get_volume_space_information() local
2497 &aFSInfoBuf, sizeof(aFSInfoBuf) ); in get_volume_space_information()
2502 uint64_t aBytesPerCluster( uint64_t(aFSInfoBuf.cbSector) * in get_volume_space_information()
2503 uint64_t(aFSInfoBuf.cSectorUnit) ); in get_volume_space_information()
2504 pInfo->uFreeSpace = aBytesPerCluster * uint64_t(aFSInfoBuf.cUnitAvail); in get_volume_space_information()
2505 pInfo->uTotalSpace = aBytesPerCluster * uint64_t(aFSInfoBuf.cUnit); in get_volume_space_information()
2660 FSINFO aFSInfoBuf; in _osl_getDriveInfo() local
2666 memset( &aFSInfoBuf, 0, sizeof(FSINFO) ); in _osl_getDriveInfo()
2669 APIRET rc = DosQueryFSInfo( nDriveNumber, ulFSInfoLevel, &aFSInfoBuf, sizeof(FSINFO) ); in _osl_getDriveInfo()
2675 if ( !rc || aFSInfoBuf.vol.cch) in _osl_getDriveInfo()
2676 strncat( szFileName, aFSInfoBuf.vol.szVolLabel, aFSInfoBuf.vol.cch); in _osl_getDriveInfo()