Searched defs:smap (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
H A DActiveServices.java289 ServiceMap smap = mServiceMap.get(callingUser);
290 return smap != null ? smap.mStartingBackground.size() >= mMaxStartingBackground : false;
294 ServiceMap smap = mServiceMap.get(callingUser);
295 if (smap == null) {
296 smap = new ServiceMap(mAm.mHandler.getLooper(), callingUser);
297 mServiceMap.put(callingUser, smap);
299 return smap;
356 final ServiceMap smap = getServiceMap(r.userId);
379 if (smap
423 startServiceInnerLocked(ServiceMap smap, Intent service, ServiceRecord r, boolean callerFg, boolean addToStarting) argument
[all...]

Completed in 67 milliseconds