Home | History | Annotate | Download | only in os

Lines Matching defs:list

25 import java.util.List;
38 private static Map<BridgeContext, List<HandlerThread>> sThreads =
39 new HashMap<BridgeContext, List<HandlerThread>>();
42 List<HandlerThread> list = sThreads.get(context);
43 if (list != null) {
44 for (HandlerThread thread : list) {
48 list.clear();
59 List<HandlerThread> list = sThreads.get(context);
60 if (list == null) {
61 list = new ArrayList<HandlerThread>();
62 sThreads.put(context, list);
65 list.add(theThread);