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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/packages/Keyguard/scripts/
copy_profile_icons.sh 3 for user in `adb $* shell ls /data/system/users | grep -v xml`
6 adb shell mkdir /data/user/${user}/users
7 for photo in `adb $* shell ls /data/system/users | grep -v xml`
10 adb shell mkdir /data/user/${user}/users/${photo}
11 adb pull /data/system/users/${photo}/photo.png
12 adb push photo.png /data/user/${user}/users/${photo}
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/handlers/
menu.py 31 from google.appengine.api import users namespace
52 user = users.get_current_user()
56 login_url = users.create_logout_url(self.request.uri)
60 login_url = users.create_login_url(self.request.uri)
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
WorkgroupQueue.java 37 private Set<QueueUser> users = Collections.emptySet(); field in class:WorkgroupQueue
74 * Returns the number of users waiting in the queue waiting to be routed to
77 * @return the number of users waiting in the queue.
80 if (users == null) {
83 return users.size();
87 * Returns an Iterator for the users in the queue waiting to be routed to
90 * @return an Iterator for the users waiting in the queue.
93 if (users == null) {
96 return Collections.unmodifiableSet(users).iterator();
99 void setUsers(Set<QueueUser> users) {
    [all...]
QueueUsersListener.java 54 * The list of users waiting in the queue was updated.
57 * @param users the list of users waiting in the queue.
59 public void usersUpdated(WorkgroupQueue queue, Set<QueueUser> users);
  /external/chromium_org/chrome/browser/chromeos/login/
crash_restore_browsertest.cc 11 #include "chrome/browser/chromeos/login/users/user.h"
12 #include "chrome/browser/chromeos/login/users/user_manager.h"
140 const UserList& users = user_manager->GetLoggedInUsers(); local
141 ASSERT_EQ(3UL, users.size());
144 EXPECT_EQ(kUserId3, users[0]->email());
146 users[0]->username_hash());
147 EXPECT_EQ(kUserId2, users[1]->email());
149 users[1]->username_hash());
150 EXPECT_EQ(kUserId1, users[2]->email());
152 users[2]->username_hash())
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/users/
user_manager_unittest.cc 15 #include "chrome/browser/chromeos/login/users/user.h"
16 #include "chrome/browser/chromeos/login/users/user_manager.h"
17 #include "chrome/browser/chromeos/login/users/user_manager_impl.h"
188 const UserList* users = &UserManager::Get()->GetUsers(); local
189 ASSERT_EQ(3U, users->size());
190 EXPECT_EQ((*users)[0]->email(), "user1@invalid.domain");
191 EXPECT_EQ((*users)[1]->email(), "user0@invalid.domain");
192 EXPECT_EQ((*users)[2]->email(), "owner@invalid.domain");
197 users = &UserManager::Get()->GetUsers();
198 EXPECT_EQ(1U, users->size())
213 const UserList* users = &UserManager::Get()->GetUsers(); local
    [all...]
  /external/libsepol/src/
user_internal.h 5 #include <sepol/users.h>
  /packages/apps/Launcher3/src/com/android/launcher3/compat/
UserManagerCompatVL.java 40 List<UserHandle> users = mUserManager.getUserProfiles(); local
41 if (users == null) {
45 users.size());
46 for (UserHandle user : users) {
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
QueueDetails.java 34 * Queue details packet extension, which contains details about the users
53 * The list of users in the queue.
55 private Set<QueueUser> users; field in class:QueueDetails
61 users = new HashSet<QueueUser>();
65 * Returns the number of users currently in the queue that are waiting to
68 * @return the number of users in the queue.
71 return users.size();
75 * Returns the set of users in the queue that are waiting to
78 * @return a Set for the users waiting in a queue.
81 synchronized (users) {
    [all...]
  /external/lldb/test/pexpect-2.4/examples/
uptime.py 15 # 2:06pm up 63 days, 18 min, 3 users, load average: 0.32, 0.08, 0.02
19 # 2:11PM up 3 days, 13:50, 3 users, load averages: 0.01, 0.00, 0.00
21 # 10:35 up 18:06, 4 users, load averages: 0.52 0.47 0.36
33 p.expect('up\s+(.*?),\s+([0-9]+) users?,\s+load averages?: ([0-9]+\.[0-9][0-9]),?\s+([0-9]+\.[0-9][0-9]),?\s+([0-9]+\.[0-9][0-9])')
34 duration, users, av1, av5, av15 = p.match.groups()
55 print 'days, hours, minutes, users, cpu avg 1 min, cpu avg 5 min, cpu avg 15 min'
56 print '%s, %s, %s, %s, %s, %s, %s' % (days, hours, mins, users, av1, av5, av15)
  /frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
DatabaseHelper.java 54 public static final String KEY_USERS = "users";
104 getCommaSeparatedString(soundModel.keyphrases[0].users));
182 int[] users = getArrayForCommaSeparatedString( local
190 if (users == null) {
191 // No users present in the keyphrase.
192 Slog.w(TAG, "Ignoring SoundModel since it doesn't specify users");
197 for (int user : users) {
214 keyphraseId, recognitionModes, modelLocale, text, users);
234 private static String getCommaSeparatedString(int[] users) {
235 if (users == null)
253 int[] users = new int[usersStr.length]; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/profiles/
profile_list_chromeos.cc 11 #include "chrome/browser/chromeos/login/users/user_manager.h"
45 // Filter for profiles associated with logged-in users.
46 UserList users = UserManager::Get()->GetLoggedInUsers(); local
49 for (UserList::const_iterator it = users.begin();
50 it != users.end(); ++it) {
  /external/fio/
diskutil.h 69 unsigned long users; member in struct:disk_util
78 du->users += val;
84 slave->users += val;
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 8 from google.appengine.api import users namespace
114 user = users.get_current_user()
133 'user_logout': users.create_logout_url(self.request.uri),
138 login_url = users.create_login_url(dest_url='/',
  /frameworks/base/services/core/java/com/android/server/connectivity/
PermissionMonitor.java 141 List<UserInfo> users = mUserManager.getUsers(true); // exclude dying users local
142 if (users != null) {
143 for (UserInfo user : users) {
148 log("Users: " + mUsers.size() + ", Apps: " + mApps.size());
183 private void update(Set<Integer> users, Map<Integer, Boolean> apps, boolean add) {
188 for (int user : users) {
212 Set<Integer> users = new HashSet<Integer>(); local
213 users.add(user);
214 update(users, mApps, true)
224 Set<Integer> users = new HashSet<Integer>(); local
    [all...]
  /external/chromium_org/ash/test/
test_session_state_delegate.h 25 void set_logged_in_users(int users) { logged_in_users_ = users; }
107 // The number of users logged in.
  /external/chromium_org/chrome/browser/chromeos/login/screens/
user_selection_screen.cc 12 #include "chrome/browser/chromeos/login/users/multi_profile_user_controller.h"
37 // Max number of users to show.
106 // For all other users, force online sign in if:
109 // * The user's OAuth token status is unknown (except supervised users,
137 void UserSelectionScreen::Init(const UserList& users, bool show_guest) {
138 users_ = users;
192 const UserList& users,
201 for (UserList::const_iterator it = users.begin(); it != users.end(); ++it) {
227 const UserList& users = GetUsers() local
    [all...]
user_selection_screen.h 15 #include "chrome/browser/chromeos/login/users/user.h"
30 const UserList& users,
36 void Init(const UserList& users, bool show_guest);
67 // Set of Users that are visible.
  /external/chromium_org/chrome/browser/ui/ash/multi_user/
multi_user_context_menu_chromeos_unittest.cc 39 void SetNumberOfUsers(int users) {
43 delegate->set_logged_in_users(users);
79 // Add more users.
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
accounts_options_handler.cc 17 #include "chrome/browser/chromeos/login/users/user_manager.h"
137 const UserList& users = UserManager::Get()->GetUsers(); local
138 for (UserList::const_iterator it = users.begin(); it < users.end(); ++it)
  /frameworks/base/core/java/android/os/
UserManager.java 37 * Manages users and user details on a multi-user system.
148 * users. The default value is <code>false</code>.
204 * Specifies if a user is disallowed from adding new users and
398 * Returns whether the system supports multiple users.
399 * @return true if multiple users can be created by user, false if it is a single user device.
448 * Used to check if the user making this call is linked to another user. Linked users may have
656 * user created, the new users will not be given the same serial number.
810 * Return the number of users currently created on the device.
813 List<UserInfo> users = getUsers(); local
814 return users != null ? users.size() : 1
840 final List<UserInfo> users = getUsers(true); local
880 List<UserInfo> users = new ArrayList<UserInfo>(); local
1079 List<UserInfo> users = getUsers(true); local
    [all...]
  /packages/services/Telephony/src/com/android/phone/
NotificationMgr.java 345 List<UserInfo> users = mUserManager.getUsers(true); local
346 for (int i = 0; i < users.size(); i++) {
347 final UserInfo user = users.get(i);
393 List<UserInfo> users = mUserManager.getUsers(true); local
394 for (int i = 0; i < users.size(); i++) {
395 UserHandle userHandle = users.get(i).getUserHandle();
426 List<UserInfo> users = mUserManager.getUsers(true); local
427 for (int i = 0; i < users.size(); i++) {
428 UserHandle userHandle = users.get(i).getUserHandle();
469 List<UserInfo> users = mUserManager.getUsers(true) local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_assets_manager_chromeos.cc 19 #include "chrome/browser/chromeos/login/users/user_manager.h"
117 const char ExtensionAssetsManagerChromeOS::kSharedExtensionUsers[] = "users";
293 base::ListValue* users = NULL; local
299 version_info->GetList(kSharedExtensionUsers, &users)) {
301 size_t users_size = users->GetSize();
305 if (users->GetString(i, &temp) && temp == user_id) {
312 users->AppendString(user_id);
391 base::ListValue* users = new base::ListValue; local
392 version_info->Set(kSharedExtensionUsers, users);
396 users->AppendString(info.profile->GetProfileName())
446 base::ListValue* users = NULL; local
500 base::ListValue* users = NULL; local
    [all...]
  /external/libsepol/include/sepol/
sepol.h 18 #include <sepol/users.h>
  /developers/build/
github-upload 13 EXISTING=`curl -s https://api.github.com/users/googlesamples/repos | grep full_name`

Completed in 3211 milliseconds

1 2 3 4 5 6 7 8 91011>>