Searched refs:pe (Results 1 – 6 of 6) sorted by relevance
170 PackageEntry pe = getOrCreateEntry(uid, pkg); in incPending() local171 if (pe.pendingNesting == 0) { in incPending()172 pe.pendingStartTime = now; in incPending()173 pe.pendingCount++; in incPending()175 pe.pendingNesting++; in incPending()179 PackageEntry pe = getOrCreateEntry(uid, pkg); in decPending() local180 if (pe.pendingNesting == 1) { in decPending()181 pe.pastPendingTime += now - pe.pendingStartTime; in decPending()183 pe.pendingNesting--; in decPending()187 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()
1291 final PatternMatcher pe = mDataSchemeSpecificParts.get(i); in hasDataSchemeSpecificPart() local1292 if (pe.match(data)) { in hasDataSchemeSpecificPart()1307 final PatternMatcher pe = mDataSchemeSpecificParts.get(i); in hasDataSchemeSpecificPart() local1308 if (pe.getType() == ssp.getType() && pe.getPath().equals(ssp.getPath())) { in hasDataSchemeSpecificPart()1485 final PatternMatcher pe = mDataPaths.get(i); in hasDataPath() local1486 if (pe.match(data)) { in hasDataPath()1501 final PatternMatcher pe = mDataPaths.get(i); in hasDataPath() local1502 if (pe.getType() == path.getType() && pe.getPath().equals(path.getPath())) { in hasDataPath()1912 PatternMatcher pe = mDataSchemeSpecificParts.get(i); in writeToXml() local1913 switch (pe.getType()) { in writeToXml()[all …]
485 ProtocolException pe = new ProtocolException(message); in protocolExceptionWithCause() local486 pe.initCause(cause); in protocolExceptionWithCause()487 return pe; in protocolExceptionWithCause()
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()
3252 } catch (XmlPullParserException pe) { in readUserLP()