MCPcopy Create free account
hub / github.com/bobranten/Ext4Fsd / Ext2SysInformation

Function Ext2SysInformation

Ext2Mgr/enumDisk.cpp:1837–1861  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1835
1836
1837CString
1838Ext2SysInformation()
1839{
1840 ULONG i = 0;
1841 CString s;
1842 PEXT2_VOLUME chain = gVols;
1843
1844 s = "\r\nDisk devices:\r\n";
1845 for (i=0; i < g_nDisks; i++) {
1846 s += Ext2DiskInformation(&gDisks[i]);
1847 }
1848
1849 s += "\r\nCdrom/DVD devices:\r\n";
1850
1851 for (i=0; i < g_nCdroms; i++) {
1852 s += Ext2CdromInformation(&gCdroms[i]);
1853 }
1854
1855 while (chain) {
1856 s += Ext2VolumeInformation(chain);
1857 chain = chain->Next;
1858 }
1859
1860 return s;
1861}
1862
1863VOID
1864Ext2CleanupDisks()

Callers 1

OnCopyAllMethod · 0.85

Calls 3

Ext2DiskInformationFunction · 0.85
Ext2CdromInformationFunction · 0.85
Ext2VolumeInformationFunction · 0.85

Tested by

no test coverage detected