Lines Matching defs:before

532      * Messages for {@link #mHandler} that need to wait for system ready before
1649 // permissions if requested before broadcasting the install.
2292 // Collect vendor overlay packages. (Do this before scanning any apps.)
2630 // early on (before the package manager declares itself as early) because other
4596 * will be in the old format (since they were stored on disk from before the
6840 // packages (parent and children) would be successfully scanned before the
7324 // that before the OTA the app was preopted) the app gets compiled with a non-profile
7914 // before the actual scan since scanning mutates internal state and we want
8503 // We also do this *before* we perform dexopt on this package, so that
8693 // authority clear the syncable flag. We copy the provider before
8847 // to be in a group defined by another app (before this had no implications).
10310 // before. In this case we do want to allow the app to
12530 // restore-at-install case, this Runnable will necessarily run before the
12729 * Location where install is coming from, before it has been
13013 * before giving up.
13382 * Called before the source arguments are copied. This is used mostly
13622 // Try enumerating all code paths before deleting
13787 Slog.i(TAG, "Failed to unmount " + cid + " before renaming");
13912 // Enumerate all code paths before deleting
14490 // relinquish resources before killing.
15146 // bail early here before tripping over redefined permissions.
15804 // other processes clean up before deleting resources.
18246 // If we upgraded grant all default permissions before kicking off.
20828 * Check and throw if the given before/after packages would be considered a
20831 private static void checkDowngrade(PackageParser.Package before, PackageInfoLite after)
20833 if (after.versionCode < before.mVersionCode) {
20836 + before.mVersionCode);
20837 } else if (after.versionCode == before.mVersionCode) {
20838 if (after.baseRevisionCode < before.baseRevisionCode) {
20841 + " is older than current " + before.baseRevisionCode);
20847 final int j = ArrayUtils.indexOf(before.splitNames, splitName);
20849 if (after.splitRevisionCodes[i] < before.splitRevisionCodes[j]) {
20853 + before.splitRevisionCodes[j]);