HomeSort by relevance Sort by last modified time
    Searched refs:user (Results 51 - 75 of 3204) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/valgrind/none/tests/
cmdline4.stderr.exp 2 valgrind: Use --help for more information or consult the user manual.
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
UserAndPet.java 23 private User mUser;
27 public User getUser() {
31 public void setUser(User user) {
32 mUser = user;
  /hardware/qcom/neuralnetworks/hvxservice/1.0/
android.hardware.neuralnetworks@1.0-service-hvx.rc 19 user system
  /libcore/ojluni/src/main/java/java/security/acl/
Group.java 33 * represents an entity such as an individual user or a company). <p>
48 * @param user the principal to add to this group.
53 public boolean addMember(Principal user);
58 * @param user the principal to remove from this group.
63 public boolean removeMember(Principal user);
  /tools/tradefederation/core/src/com/android/tradefed/util/
ProcessInfo.java 20 * Used to store process related(USER, PID and NAME) information.
29 * Constructs the process info object based on the user, process id and
32 * @param user username of process owner
36 ProcessInfo(String user, int pid, String name) {
37 mUser = user;
  /external/autotest/frontend/
apache_auth.py 1 from django.contrib.auth.models import User, Group, check_password
16 doing the real authentication. Also ensures logged-in user exists in
17 frontend.afe.models.User database.
21 user = User.objects.get(username=username)
22 except User.DoesNotExist:
24 user = User(username=username,
26 user.is_staff = True
27 user.save() # need to save before adding group
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/compat/
LauncherAppsCompatVL.java 55 public List<LauncherActivityInfo> getActivityList(String packageName, UserHandle user) {
56 return mLauncherApps.getActivityList(packageName, user);
60 public LauncherActivityInfo resolveActivity(Intent intent, UserHandle user) {
61 return mLauncherApps.resolveActivity(intent, user);
65 public void startActivityForProfile(ComponentName component, UserHandle user,
67 mLauncherApps.startMainActivity(component, user, sourceBounds, opts);
71 public ApplicationInfo getApplicationInfo(String packageName, int flags, UserHandle user) {
72 final boolean isPrimaryUser = Process.myUserHandle().equals(user);
77 mLauncherApps.getActivityList(packageName, user);
97 public void showAppDetailsForProfile(ComponentName component, UserHandle user,
    [all...]
UserManagerCompatVL.java 49 public long getSerialNumberForUser(UserHandle user) {
52 Long serial = mUserToSerialMap.get(user);
56 return mUserManager.getSerialNumberForUser(user);
70 public boolean isQuietModeEnabled(UserHandle user) {
75 public boolean isUserUnlocked(UserHandle user) {
85 public boolean requestQuietModeEnabled(boolean enableQuietMode, UserHandle user) {
101 for (UserHandle user : users) {
102 long serial = mUserManager.getSerialNumberForUser(user);
103 mUsers.put(serial, user);
104 mUserToSerialMap.put(user, serial)
    [all...]
  /external/curl/docs/cmdline-opts/
proxy-user.d 1 Long: proxy-user
3 Arg: <user:password>
4 Help: Proxy user and password
6 Specify the user name and password to use for proxy authentication.
9 authentication then you can tell curl to select the user name and password
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
StorageHostTest.java 61 for (int user : mUsers) {
62 getDevice().executeShellCommand("appops set --user " + user + " " + PKG_STATS
85 for (int user : mUsers) {
86 runDeviceTests(PKG_A, CLASS, "testAllocate", user);
95 for (int user : mUsers) {
96 runDeviceTests(PKG_A, CLASS, "testVerifySpaceManual", user);
97 runDeviceTests(PKG_A, CLASS, "testVerifySpaceApi", user);
104 for (int user : mUsers) {
105 runDeviceTests(PKG_A, CLASS, "testVerifyQuotaApi", user);
    [all...]
ExternalStorageHostTest.java 91 for (int user : mUsers) {
92 runDeviceTests(NONE_PKG, COMMON_CLASS, user);
93 runDeviceTests(NONE_PKG, NONE_CLASS, user);
115 for (int user : mUsers) {
116 runDeviceTests(READ_PKG, COMMON_CLASS, user);
117 runDeviceTests(READ_PKG, READ_CLASS, user);
139 for (int user : mUsers) {
140 runDeviceTests(WRITE_PKG, COMMON_CLASS, user);
141 runDeviceTests(WRITE_PKG, WRITE_CLASS, user);
166 for (int user : mUsers)
    [all...]
  /frameworks/base/core/java/android/content/pm/
LauncherApps.java 69 * Class for retrieving a list of launchable activities for the current user and any associated
70 * managed profiles that are visible to the current user, which can be retrieved with
73 * Apps can be queried for each user profile.
98 * if the user accepts. If the user doesn't accept, no further action is required.
116 * if the user accepts. If the user doesn't accept, no further action is required.
156 * @param user The UserHandle of the profile that generated the change.
158 abstract public void onPackageRemoved(String packageName, UserHandle user);
167 * @param user The UserHandle of the profile that generated the change
553 component, sourceBounds, opts, user); local
574 component, sourceBounds, opts, user); local
855 mService.pinShortcuts(mContext.getPackageName(), packageName, shortcutIds, user); local
1279 UserHandle user; field in class:LauncherApps.CallbackMessageHandler.CallbackInfo
    [all...]
  /art/compiler/optimizing/
prepare_for_register_allocation.cc 93 HInstruction* user = use.GetUser(); local
94 if ((user->IsInvokeStaticOrDirect() || user->IsNewInstance()) &&
95 CanMoveClinitCheck(check, user)) {
96 implicit_clinit = user;
97 if (user->IsInvokeStaticOrDirect()) {
98 DCHECK(user->AsInvokeStaticOrDirect()->IsStaticWithExplicitClinitCheck());
99 user->AsInvokeStaticOrDirect()->RemoveExplicitClinitCheck(
102 DCHECK(user->IsNewInstance());
104 if (user->AsNewInstance()->GetEntrypoint() == kQuickAllocObjectInitialized)
116 HInstruction* user = it->GetUser(); local
167 HInstruction* user = condition->GetUses().front().GetUser(); local
    [all...]
  /external/autotest/client/cros/
cryptohome.py 28 def get_user_hash(user):
29 """Get the user hash for the given user."""
31 '--user=%s' % user])
34 def user_path(user):
35 """Get the user mount point for the given user."""
36 return utils.system_output(['cryptohome-path', 'user', user])
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
ShortcutKey.java 11 * A key that uniquely identifies a shortcut using its package, id, and user handle.
15 public ShortcutKey(String packageName, UserHandle user, String id) {
17 super(new ComponentName(packageName, id), user);
20 public ShortcutKey(ComponentName componentName, UserHandle user) {
21 super(componentName, user);
33 public static ShortcutKey fromIntent(Intent intent, UserHandle user) {
36 return new ShortcutKey(intent.getPackage(), user, shortcutId);
40 return fromIntent(info.getIntent(), info.user);
  /packages/apps/Launcher3/src/com/android/launcher3/util/
PackageUserKey.java 11 /** Creates a hash key based on package name and user. */
19 return new PackageUserKey(info.getTargetComponent().getPackageName(), info.user);
26 public PackageUserKey(String packageName, UserHandle user) {
27 update(packageName, user);
30 private void update(String packageName, UserHandle user) {
32 mUser = user;
33 mHashCode = Arrays.hashCode(new Object[] {packageName, user});
42 update(info.getTargetComponent().getPackageName(), info.user);
  /external/libvterm/include/
vterm.h 168 int (*text)(const char *bytes, size_t len, void *user);
169 int (*control)(unsigned char control, void *user);
170 int (*escape)(const char *bytes, size_t len, void *user);
171 int (*csi)(const char *leader, const long args[], int argcount, const char *intermed, char command, void *user);
172 int (*osc)(const char *command, size_t cmdlen, void *user);
173 int (*dcs)(const char *command, size_t cmdlen, void *user);
174 int (*resize)(int rows, int cols, void *user);
177 void vterm_set_parser_callbacks(VTerm *vt, const VTermParserCallbacks *callbacks, void *user);
186 int (*putglyph)(VTermGlyphInfo *info, VTermPos pos, void *user);
187 int (*movecursor)(VTermPos pos, VTermPos oldpos, int visible, void *user);
    [all...]
  /frameworks/base/services/usage/java/com/android/server/usage/
AppTimeLimitController.java 70 /** userId of the user */
180 /** Clean up data if user is removed */
199 UserData user = getOrCreateUserDataLocked(userId); local
200 removeObserverLocked(user, requestingUid, observerId, /*readding =*/ true);
202 final int observerIdCount = user.observerIdCounts.get(requestingUid, 0);
207 user.observerIdCounts.put(requestingUid, observerIdCount + 1);
220 user.groups.append(observerId, group);
222 addGroupToPackageMapLocked(user, packages, group);
229 if (user.currentForegroundedPackage != null && inPackageList(group.packages,
230 user.currentForegroundedPackage))
248 UserData user = getOrCreateUserDataLocked(userId); local
289 UserData user = getOrCreateUserDataLocked(userId); local
309 UserData user = getOrCreateUserDataLocked(userId); local
360 UserData user = getOrCreateUserDataLocked(group.userId); local
424 UserData user = getOrCreateUserDataLocked(group.userId); local
468 UserData user = mUsers.valueAt(i); local
    [all...]
  /test/vti/dashboard/src/main/java/com/android/vts/entity/
UserFavoriteEntity.java 21 import com.google.appengine.api.users.User;
25 /** Entity describing subscriptions between a user and a test. */
32 public static final String USER = "user";
37 public final User user; field in class:UserFavoriteEntity
42 * Create a user favorite relationship.
45 * @param user The User object for the subscribing user
94 User user = (User) e.getProperty(USER); local
    [all...]
  /bionic/libc/bionic/
initgroups.c 35 initgroups (const char *user, gid_t group)
42 if (getgrouplist(user, group, groups, &numgroups) < 0) {
46 if (getgrouplist(user,group,groups,&numgroups) < 0) {
  /external/autotest/frontend/client/src/autotest/afe/
ICheckBox.java 4 import com.google.gwt.user.client.ui.CheckBox;
5 import com.google.gwt.user.client.ui.HasText;
6 import com.google.gwt.user.client.ui.HasValue;
IRadioButton.java 3 import com.google.gwt.user.client.ui.HasText;
4 import com.google.gwt.user.client.ui.HasValue;
5 import com.google.gwt.user.client.ui.RadioButton;
RadioChooserDisplay.java 5 import com.google.gwt.user.client.ui.Composite;
6 import com.google.gwt.user.client.ui.HorizontalPanel;
7 import com.google.gwt.user.client.ui.Panel;
  /external/autotest/frontend/client/src/autotest/common/ui/
ElementWidget.java 3 import com.google.gwt.user.client.DOM;
4 import com.google.gwt.user.client.Element;
5 import com.google.gwt.user.client.ui.Widget;
  /external/guava/guava-gwt/src/com/google/common/collect/
ArrayListMultimap_CustomFieldSerializer.java 19 import com.google.gwt.user.client.rpc.SerializationException;
20 import com.google.gwt.user.client.rpc.SerializationStreamReader;
21 import com.google.gwt.user.client.rpc.SerializationStreamWriter;

Completed in 575 milliseconds

1 23 4 5 6 7 8 91011>>