Index: build/android/pylib/android_commands.py |
diff --git a/build/android/pylib/android_commands.py b/build/android/pylib/android_commands.py |
index 6bb9933655187f8bf13a05781687904f0aadd75a..e74c081e0634ba72382f6fd8bcea2c5679f41a5c 100644 |
--- a/build/android/pylib/android_commands.py |
+++ b/build/android/pylib/android_commands.py |
@@ -25,8 +25,6 @@ import constants |
import screenshot |
import system_properties |
-from utils import host_path_finder |
- |
try: |
from pylib import pexpect |
except: |
@@ -1501,20 +1499,6 @@ class AndroidCommands(object): |
logging.warning('Could not find disk IO stats.') |
return None |
- def PurgeUnpinnedAshmem(self): |
- """Purges the unpinned ashmem memory for the whole system. |
- |
- This can be used to make memory measurements more stable in particular. |
- """ |
- host_path = host_path_finder.GetMostRecentHostPath('purge_ashmem') |
- if not host_path: |
- raise Exception('Could not find the purge_ashmem binary.') |
- device_path = os.path.join(constants.TEST_EXECUTABLE_DIR, 'purge_ashmem') |
- self.PushIfNeeded(host_path, device_path) |
- if self.RunShellCommand(device_path, log_result=True): |
- return |
- raise Exception('Error while purging ashmem.') |
- |
def GetMemoryUsageForPid(self, pid): |
"""Returns the memory usage for given pid. |