Home | History | Annotate | Download | only in net

Lines Matching refs:requestId

42     public final int requestId;
54 public DataUsageRequest(int requestId, NetworkTemplate template, long thresholdInBytes) {
55 this.requestId = requestId;
67 dest.writeInt(requestId);
76 int requestId = in.readInt();
79 DataUsageRequest result = new DataUsageRequest(requestId, template,
92 return "DataUsageRequest [ requestId=" + requestId
101 return that.requestId == this.requestId
108 return Objects.hash(requestId, template, thresholdInBytes);