Home
last modified time | relevance | path

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

/packages/modules/Connectivity/tests/native/utilities/
Dfirewall.cpp72 UidOwnerValue newMatch = { in addRule() local
76 auto res = mUidOwnerMap.writeValue(uid, newMatch, BPF_ANY); in addRule()
79 UidOwnerValue newMatch = { in addRule() local
83 auto res = mUidOwnerMap.writeValue(uid, newMatch, BPF_ANY); in addRule()
94 UidOwnerValue newMatch = { in removeRule() local
98 if (newMatch.rule == 0) { in removeRule()
102 auto res = mUidOwnerMap.writeValue(uid, newMatch, BPF_ANY); in removeRule()
/packages/modules/Connectivity/service/src/com/android/server/
DBpfNetMaps.java400 final UidOwnerValue newMatch = new UidOwnerValue( in removeRule() local
405 if (newMatch.rule == 0) { in removeRule()
408 sUidOwnerMap.updateEntry(new S32(uid), newMatch); in removeRule()
427 final UidOwnerValue newMatch; in addRule() local
429 newMatch = new UidOwnerValue( in addRule()
434 newMatch = new UidOwnerValue( in addRule()
439 sUidOwnerMap.updateEntry(new S32(uid), newMatch); in addRule()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator2.java226 for (MatchScore newMatch : newMatches) { in findRawContactMatchingCandidates()
227 final long newRawContactId = newMatch.getRawContactId(); in findRawContactMatchingCandidates()
230 matchingCandidates.add(newMatch); in findRawContactMatchingCandidates()