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
43 public VideoEvent createFromParcel(Parcel in) {
44 return new VideoEvent(in);
63 VideoEvent(Parcel in) {
64 mEventName = in.readInt();
65 mTimeSinceLastEvent = in.readLong();
66 mVideoState = in.readInt();
142 public AnalyticsEvent createFromParcel(Parcel in) {
143 return new AnalyticsEvent(in);
160 AnalyticsEvent(Parcel in) {
161 mEventName = in.readInt();
162 mTimeSinceLastEvent = in.readLong();
205 public EventTiming createFromParcel(Parcel in) {
206 return new EventTiming(in);
223 private EventTiming(Parcel in) {
224 mName = in.readInt();
225 mTime = in.readLong();
268 public ParcelableCallAnalytics createFromParcel(Parcel in) {
269 return new ParcelableCallAnalytics(in);
278 // The start time of the call in milliseconds since Jan. 1, 1970, rounded to the nearest
282 // The duration of the call, in milliseconds.
288 // true if the call came in while another call was in progress or if the user dialed this call
289 // while in the middle of another call.
341 public ParcelableCallAnalytics(Parcel in) {
342 startTimeMillis = in.readLong();
343 callDurationMillis = in.readLong();
344 callType = in.readInt();
345 isAdditionalCall = readByteAsBoolean(in);
346 isInterrupted = readByteAsBoolean(in);
347 callTechnologies = in.readInt();
348 callTerminationCode = in.readInt();
349 isEmergencyCall = readByteAsBoolean(in);
350 connectionService = in.readString();
351 isCreatedFromExistingConnection = readByteAsBoolean(in);
353 in.readTypedList(analyticsEvents, AnalyticsEvent.CREATOR);
355 in.readTypedList(eventTimings, EventTiming.CREATOR);
356 isVideoCall = readByteAsBoolean(in);
358 in.readTypedList(videoEvents, VideoEvent.CREATOR);
455 private static boolean readByteAsBoolean(Parcel in) {
456 return (in.readByte() == 1);