HomeSort by relevance Sort by last modified time
    Searched refs:USER_SETUP_COMPLETE (Results 1 - 25 of 30) sorted by null

1 2

  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
SettingsFacade.java 22 import static android.provider.Settings.Secure.USER_SETUP_COMPLETE;
33 * Sets USER_SETUP_COMPLETE for a given user.
36 ProvisionLogger.logd("Setting USER_SETUP_COMPLETE to 1 for user " + userId);
37 Secure.putIntForUser(context.getContentResolver(), USER_SETUP_COMPLETE, 1, userId);
41 * Returns whether USER_SETUP_COMPLETE is set on the calling user.
44 return Secure.getInt(context.getContentResolver(), USER_SETUP_COMPLETE, 0) != 0;
  /packages/apps/Provision/src/com/android/provision/
DefaultActivity.java 36 Settings.Secure.putInt(getContentResolver(), Settings.Secure.USER_SETUP_COMPLETE, 1);
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
AutofillRestrictionsTest.java 20 import static android.provider.Settings.Secure.USER_SETUP_COMPLETE;
84 runShellCommand("settings put secure --user %d %s %s default", mUserId, USER_SETUP_COMPLETE,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DeviceProvisionedControllerImpl.java 44 mUserSetupUri = Secure.getUriFor(Secure.USER_SETUP_COMPLETE);
54 return Secure.getIntForUser(mContentResolver, Secure.USER_SETUP_COMPLETE, 0, currentUser)
ZenModeControllerImpl.java 256 return Secure.getIntForUser(mResolver, Secure.USER_SETUP_COMPLETE, 0, mUserId) != 0;
270 Secure.getUriFor(Secure.USER_SETUP_COMPLETE), false, this, mUserId);
277 || Secure.getUriFor(Secure.USER_SETUP_COMPLETE).equals(uri)) {
  /development/apps/SdkSetup/src/com/android/sdksetup/
DefaultActivity.java 43 Settings.Secure.putInt(getContentResolver(), Settings.Secure.USER_SETUP_COMPLETE, 1);
  /frameworks/base/tests/testables/tests/src/android/testing/
TestableSettingsProviderTest.java 83 assertTrue(Secure.getInt(mContentResolver, Secure.USER_SETUP_COMPLETE, 0) != 0);
  /cts/tests/autofillservice/src/android/autofillservice/cts/
Helper.java 22 import static android.provider.Settings.Secure.USER_SETUP_COMPLETE;
241 USER_SETUP_COMPLETE);
243 runShellCommand("settings put secure %s %s default", USER_SETUP_COMPLETE, newValue);
253 final String isIt = runShellCommand("settings get secure %s", USER_SETUP_COMPLETE);
262 assertWithMessage("Invalid value for secure setting %s", USER_SETUP_COMPLETE)
    [all...]
  /frameworks/base/core/java/com/android/internal/policy/
PhoneFallbackEventHandler.java 319 Settings.Secure.USER_SETUP_COMPLETE, 0) != 0;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
DiskReceiver.java 60 Settings.Secure.USER_SETUP_COMPLETE, 0) == 0) {
  /frameworks/base/services/core/java/com/android/server/display/
NightDisplayService.java 216 cr.registerContentObserver(Secure.getUriFor(Secure.USER_SETUP_COMPLETE),
225 return Secure.getIntForUser(cr, Secure.USER_SETUP_COMPLETE, 0, userHandle) == 1;
  /frameworks/base/services/core/java/com/android/server/
GestureLauncherService.java 402 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/
KeyboardUI.java 294 resolver, Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
Recents.java 814 (Settings.Secure.getInt(cr, Settings.Secure.USER_SETUP_COMPLETE, 0) != 0);
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
NightDisplayServiceTest.java     [all...]
GestureLauncherServiceTest.java     [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java     [all...]
SettingsProtoDumpUtil.java     [all...]
  /frameworks/base/core/tests/coretests/src/android/provider/
SettingsBackupTest.java 508 Settings.Secure.USER_SETUP_COMPLETE,
    [all...]
  /frameworks/base/services/autofill/java/com/android/server/autofill/
AutofillManagerService.java 763 Settings.Secure.USER_SETUP_COMPLETE), false, this, UserHandle.USER_ALL);
AutofillManagerServiceImpl.java 193 mContext.getContentResolver(), Settings.Secure.USER_SETUP_COMPLETE, mUserId);
  /frameworks/base/services/core/java/com/android/server/am/
TaskRecord.java 100 import static android.provider.Settings.Secure.USER_SETUP_COMPLETE;
145 private static final String ATTR_USER_SETUP_COMPLETE = "user_setup_complete";
    [all...]
  /frameworks/base/services/core/java/com/android/server/media/
MediaSessionService.java     [all...]
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DevicePolicyManagerService.java     [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
DevicePolicyManagerTest.java     [all...]

Completed in 1238 milliseconds

1 2