Lines Matching defs: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
67 DataInputStream in = new DataInputStream(
70 savedFileSize = in.readLong();
71 savedCrc = in.readLong();
72 savedVersion = in.readInt();
77 if (in != null) {
78 in.close();
86 * Restore from backup -- reads in the flattened bookmark file as supplied from
87 * the backup service, parses that out, and rebuilds the bookmarks table in the
102 DataInputStream in = new DataInputStream(infstream);
105 int count = in.readInt();
112 mark.url = in.readUTF();
113 mark.visits = in.readInt();
114 mark.date = in.readLong();
115 mark.created = in.readLong();
116 mark.title = in.readUTF();
129 // Does this URL exist in the bookmark table?
149 if (in != null) {
150 in.close();
156 // changes whenever we get invoked for backup in the future