Home | History | Annotate | Download | only in shadows

Lines Matching refs:pkg

53     public static void action(Context context, int category, String pkg) {
54 sLogs.add(new Log(context, category, pkg));
60 public final String pkg;
62 public Log(Context context, int category, String pkg) {
65 this.pkg = pkg;
76 && Objects.equal(otherLog.pkg, pkg);
82 return ((context == null) ? 0 : context.hashCode()) + category + ((pkg == null) ? 0
83 : pkg.hashCode());