Searched refs:protoInputStream (Results 1 – 8 of 8) sorted by relevance
255 return protoInputStream -> { in protoStreamReader()258 while (protoInputStream.nextField() != ProtoInputStream.NO_MORE_FIELDS) { in protoStreamReader()259 if (protoInputStream.getFieldNumber() != (int) PeopleEventsProto.EVENTS) { in protoStreamReader()262 long token = protoInputStream.start(PeopleEventsProto.EVENTS); in protoStreamReader()263 Event event = Event.readFromProto(protoInputStream); in protoStreamReader()264 protoInputStream.end(token); in protoStreamReader()333 return protoInputStream -> {336 while (protoInputStream.nextField() != ProtoInputStream.NO_MORE_FIELDS) {337 if (protoInputStream.getFieldNumber()341 long token = protoInputStream.start(PeopleEventIndexesProto.TYPED_INDEXES);[all …]
365 static ConversationInfo readFromProto(@NonNull ProtoInputStream protoInputStream) in readFromProto() argument368 while (protoInputStream.nextField() != ProtoInputStream.NO_MORE_FIELDS) { in readFromProto()369 switch (protoInputStream.getFieldNumber()) { in readFromProto()372 protoInputStream.readString(ConversationInfoProto.SHORTCUT_ID)); in readFromProto()375 long locusIdToken = protoInputStream.start( in readFromProto()377 while (protoInputStream.nextField() in readFromProto()379 if (protoInputStream.getFieldNumber() == (int) LocusIdProto.LOCUS_ID) { in readFromProto()381 protoInputStream.readString(LocusIdProto.LOCUS_ID))); in readFromProto()384 protoInputStream.end(locusIdToken); in readFromProto()387 builder.setContactUri(Uri.parse(protoInputStream.readString( in readFromProto()[all …]
162 static Event readFromProto(@NonNull ProtoInputStream protoInputStream) throws IOException { in readFromProto() argument164 while (protoInputStream.nextField() != ProtoInputStream.NO_MORE_FIELDS) { in readFromProto()165 switch (protoInputStream.getFieldNumber()) { in readFromProto()167 builder.setType(protoInputStream.readInt(PeopleEventProto.EVENT_TYPE)); in readFromProto()170 builder.setTimestamp(protoInputStream.readLong(PeopleEventProto.TIME)); in readFromProto()173 builder.setDurationSeconds(protoInputStream.readInt(PeopleEventProto.DURATION)); in readFromProto()177 + protoInputStream.getFieldNumber()); in readFromProto()
338 return protoInputStream -> { in protoStreamReader()341 while (protoInputStream.nextField() != ProtoInputStream.NO_MORE_FIELDS) { in protoStreamReader()342 if (protoInputStream.getFieldNumber() in protoStreamReader()346 long token = protoInputStream.start( in protoStreamReader()349 protoInputStream); in protoStreamReader()350 protoInputStream.end(token); in protoStreamReader()
284 static EventIndex readFromProto(@NonNull ProtoInputStream protoInputStream) throws IOException { in readFromProto() argument288 while (protoInputStream.nextField() != ProtoInputStream.NO_MORE_FIELDS) { in readFromProto()289 switch (protoInputStream.getFieldNumber()) { in readFromProto()291 eventBitmaps[bitmapIndex++] = protoInputStream.readLong( in readFromProto()295 lastUpdated = protoInputStream.readLong( in readFromProto()300 + protoInputStream.getFieldNumber()); in readFromProto()
216 final ProtoInputStream protoInputStream = new ProtoInputStream(fileInputStream); in parseFile() local217 return protoStreamReader().read(protoInputStream); in parseFile()252 T read(@NonNull ProtoInputStream protoInputStream); in read() argument
1226 public void readFromProto(ProtoInputStream protoInputStream, long fieldId) throws IOException { in readFromProto() argument1227 final long token = protoInputStream.start(fieldId); in readFromProto()1230 while (protoInputStream.nextField() != ProtoInputStream.NO_MORE_FIELDS) { in readFromProto()1231 switch (protoInputStream.getFieldNumber()) { in readFromProto()1233 fontScale = protoInputStream.readFloat(FONT_SCALE); in readFromProto()1236 mcc = protoInputStream.readInt(MCC); in readFromProto()1239 mnc = protoInputStream.readInt(MNC); in readFromProto()1244 final long localeToken = protoInputStream.start(LOCALES); in readFromProto()1250 while (protoInputStream.nextField() in readFromProto()1252 switch (protoInputStream.getFieldNumber()) { in readFromProto()[all …]
123 ProtoInputStream protoInputStream = new ProtoInputStream(inputStream); in readHibernationStates() local124 return mProtoReadWriter.readFromProto(protoInputStream); in readHibernationStates()