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

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/hs20/server/www/
redirect.php 24 $user = $row['user']; variable
27 $db->exec("INSERT INTO eventlog(user,realm,sessionid,timestamp,notes) " .
28 "VALUES ('$user', '$realm', '$id', " .
30 "'redirected after user input')");
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
UserAndAllPets.java 26 public User user; field in class:UserAndAllPets
UserWithPetsAndToys.java 26 public User user; field in class:UserWithPetsAndToys
  /packages/apps/Launcher3/src/com/android/launcher3/widget/
PendingAddShortcutInfo.java 33 user = activityInfo.getUser();
  /packages/apps/Settings/src/com/android/settings/applications/
AppLister.java 32 * Lists apps for current user that fit some criteria specified by includeInCount method
49 for (UserInfo user : mUm.getProfiles(UserHandle.myUserId())) {
53 | (user.isAdmin() ? PackageManager.MATCH_ANY_USER : 0),
54 user.id);
57 result.add(new UserAppInfo(user, info));
  /packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/
CustomActivity.java 25 public void startActivityAsUser(Intent intent, UserHandle user) {}
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/users/
RestrictionUtils.java 45 * Returns the current user restrictions in the form of application
47 * @return list of RestrictionEntry objects with user-visible text.
49 public static ArrayList<RestrictionEntry> getRestrictions(Context context, UserHandle user) {
53 Bundle userRestrictions = um.getUserRestrictions(user);
69 UserHandle user) {
73 um.setUserRestriction(entry.getKey(), !entry.getSelectedState(), user); local
  /platform_testing/libraries/system-helpers/user-helper/
Android.mk 19 LOCAL_MODULE := user-helper
  /prebuilts/go/darwin-x86/src/os/user/
lookup.go 5 package user package
9 // Current returns the current user.
10 func Current() (*User, error) {
19 // cache of the current user
22 u *User
26 // Lookup looks up a user by username. If the user cannot be found, the
28 func Lookup(username string) (*User, error) {
35 // LookupId looks up a user by userid. If the user cannot be found, th
    [all...]
getgrouplist_unix.go 7 package user package
14 static int mygetgrouplist(const char* user, gid_t group, gid_t* groups, int* ngroups) {
15 return getgrouplist(user, group, groups, ngroups);
33 return fmt.Errorf("user: %q is a member of more than %d groups", username, maxGroups)
38 return fmt.Errorf("user: list groups for %s failed", username)
  /prebuilts/go/linux-x86/src/os/user/
lookup.go 5 package user package
9 // Current returns the current user.
10 func Current() (*User, error) {
19 // cache of the current user
22 u *User
26 // Lookup looks up a user by username. If the user cannot be found, the
28 func Lookup(username string) (*User, error) {
35 // LookupId looks up a user by userid. If the user cannot be found, th
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
contextquery.py 36 user The user to match in the context.
38 will be used on the user.
57 user = CriteriaDescriptor("user_regex", "lookup_user") variable in class:ContextQuery
71 if self.user and not query.PolicyQuery._match_regex(
72 context.user,
73 self.user,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
context.py 22 from . import user
43 return "{0.user}:{0.role}:{0.type_}:{0.range_}".format(self)
45 return "{0.user}:{0.role}:{0.type_}".format(self)
48 def user(self): member in class:Context
49 """The user portion of the context."""
50 return user.user_factory(self.policy, self.qpol_symbol.user(self.policy))
  /toolchain/binutils/binutils-2.27/bfd/hosts/
symmetry.h 29 #define TRAD_CORE_USER_OFFSET ((UPAGES * NBPG) - sizeof (struct user))
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/nios2/
custom.s 1 # test progam for assembling user instructions
  /toolchain/binutils/binutils-2.27/gold/
timer.h 35 /* User time in this process. */
36 long user; member in struct:gold::Timer::TimeStats
  /external/autotest/frontend/client/src/autotest/afe/
JobOwnerFilter.java 15 import com.google.gwt.user.client.ui.HorizontalPanel;
16 import com.google.gwt.user.client.ui.Panel;
17 import com.google.gwt.user.client.ui.RadioButton;
18 import com.google.gwt.user.client.ui.VerticalPanel;
19 import com.google.gwt.user.client.ui.Widget;
59 // user list changes
72 for (String user : Utils.JSONObjectsToStrings(userArray, "login")) {
73 userList.addItem(user);
  /external/caliper/caliper/src/main/java/com/google/caliper/config/
CaliperConfigLoader.java 60 ImmutableMap<String, String> user = local
62 return new CaliperConfig(mergeProperties(options.configProperties(), user, defaults));
70 ImmutableMap<String, String> user; local
72 user = Util.loadProperties(supplier);
76 return new CaliperConfig(mergeProperties(options.configProperties(), user, defaults));
80 Map<String, String> user,
83 map.putAll(user); // overwrite and augment
  /external/ltp/testcases/kernel/syscalls/access/
access02.c 71 static void access_test(struct tcase *tc, const char *user)
80 tc->pathname, tc->name, user);
95 tc->targetname, user);
111 tc->targetname, user);
129 tc->targetname, user);
148 tc->targetname, user);
158 tc->pathname, tc->name, user);
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
RxJava2Test.java 30 import androidx.room.integration.testapp.vo.User;
92 TestObserver<User> testObserver = new TestObserver<>();
103 User user = TestUtil.createUser(3); local
104 mUserDao.insert(user);
105 TestObserver<User> testObserver = new TestObserver<>();
110 testObserver.assertValue(user);
117 TestObserver<List<User>> testObserver = new TestObserver<>();
122 testObserver.assertValue(Collections.<User>emptyList());
128 User[] users = TestUtil.createUsersArray(3, 5)
190 User user = TestUtil.createUser(3); local
263 User user = TestUtil.createUser(3); local
275 User user = TestUtil.createUser(3); local
303 User user = TestUtil.createUser(3); local
388 final User user = TestUtil.createUser(3); local
    [all...]
  /libcore/ojluni/src/main/java/sun/net/ftp/
FtpDirEntry.java 49 USER(0), GROUP(1), OTHERS(2);
57 private String user = null; field in class:FtpDirEntry
89 * Returns the user name of the owner of the file as returned by the FTP
90 * server, if provided. This could be a name or a user id (number).
92 * @return a {@code String} containing the user name or
96 return user;
100 * Sets the user name of the owner of the file. Intended mostly to be
103 * @param user The user name of the owner of the file, or {@code null}
107 public FtpDirEntry setUser(String user) {
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
AppInfo.java 57 public AppInfo(Context context, LauncherActivityInfo info, UserHandle user) {
58 this(info, user, UserManagerCompat.getInstance(context).isQuietModeEnabled(user));
61 public AppInfo(LauncherActivityInfo info, UserHandle user, boolean quietModeEnabled) {
64 this.user = user;
90 return new ComponentKey(componentName, user);
116 // The icon for a non-primary user is badged, hence it's not exactly an adaptive icon.
  /art/compiler/optimizing/
instruction_simplifier_mips.cc 81 HInstruction* user = use.GetUser(); local
82 if (user->IsArrayGet() && user != access && !user->AsArrayGet()->IsStringCharAt()) {
83 HArrayGet* another_access = user->AsArrayGet();
90 } else if (user->IsArraySet() && user != access) {
91 HArraySet* another_access = user->AsArraySet();
98 } else if (user->IsIntermediateArrayAddressIndex()) {
99 HIntermediateArrayAddressIndex* another_access = user->AsIntermediateArrayAddressIndex()
    [all...]
  /external/autotest/frontend/client/src/autotest/common/ui/
NotifyManager.java 3 import com.google.gwt.user.client.ui.Composite;
4 import com.google.gwt.user.client.ui.DisclosurePanel;
5 import com.google.gwt.user.client.ui.HorizontalPanel;
6 import com.google.gwt.user.client.ui.Image;
7 import com.google.gwt.user.client.ui.Label;
8 import com.google.gwt.user.client.ui.Panel;
9 import com.google.gwt.user.client.ui.PopupPanel;
10 import com.google.gwt.user.client.ui.RootPanel;
11 import com.google.gwt.user.client.ui.TextArea;
12 import com.google.gwt.user.client.ui.Widget
    [all...]
  /external/selinux/libsemanage/src/
users_base_file.c 24 semanage_user_base_t * user, FILE * str)
30 const char *name = semanage_user_base_get_name(user);
31 const char *mls_level = semanage_user_base_get_mlslevel(user);
32 const char *mls_range = semanage_user_base_get_mlsrange(user);
34 if (fprintf(str, "user %s roles { ", name) < 0)
37 if (semanage_user_base_get_roles(handle, user, &roles, &nroles) < 0)
61 ERR(handle, "could not print user %s to stream", name);
66 parse_info_t * info, semanage_user_base_t * user)
79 /* Parse user header */
80 if (parse_assert_str(handle, info, "user") < 0
    [all...]

Completed in 514 milliseconds

1 2 3 4 5 6 7 8 91011>>