Searched refs:pe (Results 1 – 9 of 9) sorted by relevance
171 PackageEntry pe = getOrCreateEntry(uid, pkg); in incPending() local172 if (pe.pendingNesting == 0) { in incPending()173 pe.pendingStartTime = now; in incPending()174 pe.pendingCount++; in incPending()176 pe.pendingNesting++; in incPending()180 PackageEntry pe = getOrCreateEntry(uid, pkg); in decPending() local181 if (pe.pendingNesting == 1) { in decPending()182 pe.pastPendingTime += now - pe.pendingStartTime; in decPending()184 pe.pendingNesting--; in decPending()188 PackageEntry pe = getOrCreateEntry(uid, pkg); in incActive() local[all …]
87 PackageEntry pe = ae.mPackages.get(srcPackage); in addBroadcast() local88 if (pe == null) { in addBroadcast()89 pe = new PackageEntry(); in addBroadcast()90 ae.mPackages.put(srcPackage, pe); in addBroadcast()92 pe.mSendCount++; in addBroadcast()141 PackageEntry pe = ae.mPackages.valueAt(j); in dumpStats() local142 pw.print(pe.mSendCount); in dumpStats()184 PackageEntry pe = ae.mPackages.valueAt(j); in dumpCheckinStats() local186 pw.print(pe.mSendCount); in dumpCheckinStats()
1070 final PatternMatcher pe = mDataSchemeSpecificParts.get(i); in hasDataSchemeSpecificPart() local1071 if (pe.match(data)) { in hasDataSchemeSpecificPart()1086 final PatternMatcher pe = mDataSchemeSpecificParts.get(i); in hasDataSchemeSpecificPart() local1087 if (pe.getType() == ssp.getType() && pe.getPath().equals(ssp.getPath())) { in hasDataSchemeSpecificPart()1251 final PatternMatcher pe = mDataPaths.get(i); in hasDataPath() local1252 if (pe.match(data)) { in hasDataPath()1267 final PatternMatcher pe = mDataPaths.get(i); in hasDataPath() local1268 if (pe.getType() == path.getType() && pe.getPath().equals(path.getPath())) { in hasDataPath()1637 PatternMatcher pe = mDataSchemeSpecificParts.get(i); in writeToXml() local1638 switch (pe.getType()) { in writeToXml()[all …]
484 ProtocolException pe = new ProtocolException(message); in protocolExceptionWithCause() local485 pe.initCause(cause); in protocolExceptionWithCause()486 return pe; in protocolExceptionWithCause()
301 ParseException pe = new ParseException(e.reason, e.getCause()); in onAnswer()302 pe.setStackTrace(e.getStackTrace()); in onAnswer()303 mDnsException = new DnsException(ERROR_PARSE, pe); in onAnswer()
349 } catch (PackageParser.PackageParserException pe) { in populateAllPackagesCacheIfNeeded()350 throw new IllegalStateException("Unable to parse: " + ai, pe); in populateAllPackagesCacheIfNeeded()
2517 } catch (XmlPullParserException pe) { in readUserLP()
2864 const char* pe = pf + s.size(); in base_name() local2865 if (pe[-1] == '>') in base_name()2870 if (--pe == pf) in base_name()2872 if (pe[-1] == '<') in base_name()2876 --pe; in base_name()2880 else if (pe[-1] == '>') in base_name()2884 const char* p0 = pe - 1; in base_name()2893 return String(p0, pe); in base_name()
1609 } catch (ParseException pe) { in parseDate()