Home
last modified time | relevance | path

Searched refs:mProcessMap (Results 1 – 1 of 1) sorted by relevance

/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DScriptingLayerService.java64 private final Map<Integer, InterpreterProcess> mProcessMap; field in ScriptingLayerService
92 mProcessMap = new ConcurrentHashMap<Integer, InterpreterProcess>(); in ScriptingLayerService()
132 if (mProcessMap.size() <= 1) { in updateNotification()
133 msg = "Tap to view " + Integer.toString(mProcessMap.size()) + " running script"; in updateNotification()
135 msg = "Tap to view " + Integer.toString(mProcessMap.size()) + " running scripts"; in updateNotification()
141 .setSmallIcon(mNotification.icon, mProcessMap.size()) in updateNotification()
164 if (mProcessMap.isEmpty()) { in onStartCommand()
288 mProcessMap.put(process.getPort(), process);
296 InterpreterProcess process = mProcessMap.remove(port);
331 result.addAll(mProcessMap.values());
[all …]