Home | History | Annotate | Download | only in pm

Lines Matching defs:REASON_STRINGS

28     public static final String REASON_STRINGS[] = {
36 if (PackageManagerService.REASON_LAST + 1 != REASON_STRINGS.length) {
37 throw new IllegalStateException("REASON_STRINGS not correct");
39 if (!"shared".equals(REASON_STRINGS[REASON_SHARED_INDEX])) {
40 throw new IllegalStateException("REASON_STRINGS not correct because of shared index");
45 if (reason < 0 || reason >= REASON_STRINGS.length) {
49 return "pm.dexopt." + REASON_STRINGS[reason];
59 + "(reason " + REASON_STRINGS[reason] + ")");
62 + "(reason " + REASON_STRINGS[reason] + ")");
85 sysPropName +"\" for reason " + REASON_STRINGS[reason]);
131 if (reason < 0 || reason >= REASON_STRINGS.length) {
134 return REASON_STRINGS[reason];