Home | History | Annotate | Download | only in packageinstaller

Lines Matching defs:in

6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
84 * provided in {@link #mPackageManagerInstallResult}).
118 * Time instant when the installation request arrived, measured in elapsed realtime
124 * Time instant when the information about the package being installed was obtained, measured in
130 * Time instant when the user clicked the Install button, measured in elapsed realtime
137 * Time instant when this flow terminated, measured in elapsed realtime milliseconds. See
153 public InstallFlowAnalytics createFromParcel(Parcel in) {
154 return new InstallFlowAnalytics(in);
165 public InstallFlowAnalytics(Parcel in) {
166 mFlags = in.readInt();
167 mResult = in.readByte();
168 mPackageManagerInstallResult = in.readInt();
169 mStartTimestampMillis = in.readLong();
170 mPackageInfoObtainedTimestampMillis = in.readLong();
171 mInstallButtonClickTimestampMillis = in.readLong();
172 mEndTimestampMillis = in.readLong();
173 mPackageUri = in.readString();
174 mLogged = readBoolean(in);
353 * Sets the time instant when the installation request arrived, measured in elapsed realtime
423 // -111 (at the moment). We thus store them in negated form.
432 // Total elapsed time from start to end, in milliseconds.
437 // obtained, in milliseconds.
443 // Total elapsed time from start till Install button clicked, in milliseconds
456 in background.
545 * Sets or clears the specified flag in the {@link #mFlags} field.
556 * Checks whether the specified flag is set in the {@link #mFlags} field.
591 InputStream in = null;
593 in = new BufferedInputStream(new FileInputStream(file), buf.length);
595 while ((chunkSize = in.read(buf)) != -1) {
599 IoUtils.closeQuietly(in);