Correct LINT path on UidOwnerMatchType
UidOwnerMatchType Java definition moved from BpfNetMaps.java to BpfNetMapsConstants.java in change I6d7ea044e43180. Bug: 297836825 Test: presubmit Change-Id: I4fc28406750cac9143ea47e9304b455ab616d462
This commit is contained in:
@@ -190,7 +190,7 @@ enum UidOwnerMatchType {
|
|||||||
OEM_DENY_2_MATCH = (1 << 10),
|
OEM_DENY_2_MATCH = (1 << 10),
|
||||||
OEM_DENY_3_MATCH = (1 << 11),
|
OEM_DENY_3_MATCH = (1 << 11),
|
||||||
};
|
};
|
||||||
// LINT.ThenChange(packages/modules/Connectivity/service/src/com/android/server/BpfNetMaps.java)
|
// LINT.ThenChange(../framework/src/android/net/BpfNetMapsConstants.java)
|
||||||
|
|
||||||
enum BpfPermissionMatch {
|
enum BpfPermissionMatch {
|
||||||
BPF_PERMISSION_INTERNET = 1 << 2,
|
BPF_PERMISSION_INTERNET = 1 << 2,
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ public class BpfNetMapsConstants {
|
|||||||
public static final long OEM_DENY_1_MATCH = (1 << 9);
|
public static final long OEM_DENY_1_MATCH = (1 << 9);
|
||||||
public static final long OEM_DENY_2_MATCH = (1 << 10);
|
public static final long OEM_DENY_2_MATCH = (1 << 10);
|
||||||
public static final long OEM_DENY_3_MATCH = (1 << 11);
|
public static final long OEM_DENY_3_MATCH = (1 << 11);
|
||||||
// LINT.ThenChange(packages/modules/Connectivity/bpf_progs/netd.h)
|
// LINT.ThenChange(../../../../bpf_progs/netd.h)
|
||||||
|
|
||||||
public static final List<Pair<Long, String>> MATCH_LIST = Arrays.asList(
|
public static final List<Pair<Long, String>> MATCH_LIST = Arrays.asList(
|
||||||
Pair.create(HAPPY_BOX_MATCH, "HAPPY_BOX_MATCH"),
|
Pair.create(HAPPY_BOX_MATCH, "HAPPY_BOX_MATCH"),
|
||||||
|
|||||||
Reference in New Issue
Block a user