MCPcopy Create free account
hub / github.com/bleachbit/bleachbit / physical_free

Function physical_free

bleachbit/Memory.py:249–257  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

247
248
249def physical_free():
250 if sys.platform == 'linux':
251 return physical_free_linux()
252 elif 'win32' == sys.platform:
253 return physical_free_windows()
254 elif 'darwin' == sys.platform:
255 return physical_free_darwin()
256 else:
257 raise RuntimeError('unsupported platform for physical_free()')
258
259
260def report_free():

Callers 3

test_physical_freeMethod · 0.90
fill_memory_linuxFunction · 0.85
report_freeFunction · 0.85

Calls 3

physical_free_linuxFunction · 0.85
physical_free_windowsFunction · 0.85
physical_free_darwinFunction · 0.85

Tested by 1

test_physical_freeMethod · 0.72