Searched defs:SCAN_CHECK_ONLY (Results 1 - 1 of 1) sorted by path

/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java433 static final int SCAN_CHECK_ONLY = 1<<13; field in class:PackageManagerService
8851 // we scan the package with the SCAN_CHECK_ONLY flag set to see whether all
8855 if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
8857 scanFlags |= SCAN_CHECK_ONLY;
8860 scanFlags &= ~SCAN_CHECK_ONLY;
8876 if ((scanFlags & SCAN_CHECK_ONLY) != 0) {
10068 // we recursively scan the package with the SCAN_CHECK_ONLY flag set to see
10072 if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
10074 scanFlags |= SCAN_CHECK_ONLY;
10077 scanFlags &= ~SCAN_CHECK_ONLY;
[all...]

Completed in 114 milliseconds