Lines Matching refs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
100 * Return first atomic bucket in this collection, which is more conservative
132 * Combine all {@link NetworkStatsHistory} in this collection which match
141 * Combine all {@link NetworkStatsHistory} in this collection which match
160 * Summarize all {@link NetworkStatsHistory} in this collection which match
224 * Record all {@link NetworkStatsHistory} contained in the given collection
255 public void read(InputStream in) throws IOException {
256 read(new DataInputStream(in));
259 public void read(DataInputStream in) throws IOException {
261 final int magic = in.readInt();
266 final int version = in.readInt();
270 final int identSize = in.readInt();
272 final NetworkIdentitySet ident = new NetworkIdentitySet(in);
274 final int size = in.readInt();
276 final int uid = in.readInt();
277 final int set = in.readInt();
278 final int tag = in.readInt();
281 final NetworkStatsHistory history = new NetworkStatsHistory(in);
330 DataInputStream in = null;
332 in = new DataInputStream(new BufferedInputStream(inputFile.openRead()));
335 final int magic = in.readInt();
340 final int version = in.readInt();
344 final int size = in.readInt();
346 final NetworkIdentitySet ident = new NetworkIdentitySet(in);
347 final NetworkStatsHistory history = new NetworkStatsHistory(in);
361 IoUtils.closeQuietly(in);
369 DataInputStream in = null;
371 in = new DataInputStream(new BufferedInputStream(inputFile.openRead()));
374 final int magic = in.readInt();
379 final int version = in.readInt();
398 final int identSize = in.readInt();
400 final NetworkIdentitySet ident = new NetworkIdentitySet(in);
402 final int size = in.readInt();
404 final int uid = in.readInt();
405 final int set = (version >= VERSION_UID_WITH_SET) ? in.readInt()
407 final int tag = in.readInt();
410 final NetworkStatsHistory history = new NetworkStatsHistory(in);
426 IoUtils.closeQuietly(in);
487 * in the given {@link NetworkIdentitySet}.