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

1 2 3 4 5 6 7

  /external/chromium/chrome/browser/ui/webui/options/chromeos/
user_image_source.cc 19 chromeos::UserVector users = chromeos::UserManager::Get()->GetUsers(); local
20 for (size_t i = 0; i < users.size(); ++i) {
21 if (users[i].email() == email) {
22 gfx::PNGCodec::EncodeBGRASkBitmap(users[i].image(), false, &user_image);
accounts_options_handler.cc 101 UserVector users = UserManager::Get()->GetUsers(); local
102 for (UserVector::const_iterator it = users.begin();
103 it != users.end(); ++it) {
117 UserVector users = UserManager::Get()->GetUsers(); local
118 for (UserVector::const_iterator it = users.begin();
119 it < users.end(); ++it) {
  /external/webkit/Tools/TestResultServer/handlers/
menu.py 29 from google.appengine.api import users namespace
45 user = users.get_current_user()
49 login_url = users.create_logout_url(self.request.uri)
53 login_url = users.create_login_url(self.request.uri)
dashboardhandler.py 33 from google.appengine.api import users namespace
78 "admin": users.is_current_user_admin(),
  /external/libsepol/src/
user_internal.h 5 #include <sepol/users.h>
  /external/webkit/Tools/QueueStatusServer/handlers/
updatebase.py 29 from google.appengine.api import users namespace
updatestatus.py 29 from google.appengine.api import users namespace
46 if users.get_current_user():
47 queue_status.author = users.get_current_user()
  /external/quake/quake/src/QW/
qwcl.spec.sh 26 original version of Quake can be played over the Internet, many users modem
27 users - the majority of players, had less than satisfactory play. Symptoms
30 various other difficulties plagued users.
qwsv.spec.sh 26 original version of Quake can be played over the Internet, many users modem
27 users - the majority of players, had less than satisfactory play. Symptoms
30 various other difficulties plagued users.
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 8 from google.appengine.api import users namespace
111 user = users.get_current_user()
130 'user_logout': users.create_logout_url(self.request.uri),
135 login_url = users.create_login_url(dest_url='/',
  /packages/apps/Settings/src/com/android/settings/users/
UserUtils.java 17 package com.android.settings.users;
ProfileUpdateReceiver.java 17 package com.android.settings.users;
  /external/chromium/chrome/browser/chromeos/login/
dom_login_display.cc 39 void DOMLoginDisplay::Init(const std::vector<UserManager::User>& users,
44 users_ = users;
user_manager.cc 44 // A vector pref of the users who have logged into the device.
244 std::vector<User> users; local
246 return users;
283 users.push_back(user);
287 return users;
308 // Get a copy of the current users.
309 std::vector<User> users = GetUsers(); local
311 // Clear the prefs view of the users.
322 for (std::vector<User>::iterator it = users.begin();
323 it != users.end()
342 std::vector<User> users = GetUsers(); local
364 std::vector<User> users = GetUsers(); local
399 std::vector<User> users = GetUsers(); local
    [all...]
dom_login_display.h 53 virtual void Init(const std::vector<UserManager::User>& users,
75 // Set of Users in the systemvisible UserControllers.
base_login_display_host.cc 121 std::vector<chromeos::UserManager::User> users = local
124 // Fix for users who updated device and thus never passed register screen.
125 // If we already have users, we assume that it is not a second part of
127 if (!WizardController::IsDeviceRegistered() && !users.empty()) {
128 VLOG(1) << "Mark device registered because there are remembered users: "
129 << users.size();
137 sign_in_controller_->Init(users);
login_display.h 42 // Users decides to sign in into captive portal.
46 // Used for both known and new users.
71 // Initializes login UI with the user pods based on list of known users and
73 virtual void Init(const std::vector<UserManager::User>& users,
views_login_display.h 27 // When Init is invoked, a UserController is created for each of the Users's
39 virtual void Init(const std::vector<UserManager::User>& users,
98 // Index of selected user (from the set of visible users).
  /external/libsepol/include/sepol/
sepol.h 18 #include <sepol/users.h>
  /external/dbus/dbus/
dbus-userdb.c 149 info = _dbus_hash_table_lookup_uintptr (db->users, uid);
202 if (!_dbus_hash_table_insert_uintptr (db->users, info->uid, info))
213 _dbus_hash_table_remove_uintptr (db->users, info->uid);
541 db->users = _dbus_hash_table_new (DBUS_HASH_UINTPTR,
544 if (db->users == NULL)
578 _dbus_hash_table_remove_all(db->users);
611 if (db->users)
612 _dbus_hash_table_unref (db->users);
  /frameworks/base/core/java/android/os/
UserManager.java 30 * Manages users and user details on a multi-user system.
45 * Returns whether the system supports multiple users.
46 * @return true if multiple users can be created, false if it is a single user device.
138 * user created, the new users will not be given the same serial number.
183 * Return the number of users currently created on the device.
186 List<UserInfo> users = getUsers(); local
187 return users != null ? users.size() : 1;
191 * Returns information for all users on this device.
193 * @return the list of users that were created
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardMultiUserSelectorView.java 77 ArrayList<UserInfo> users = new ArrayList<UserInfo>(userList); local
78 Collections.sort(users, mOrderAddedComparator);
80 for (UserInfo user: users) {
  /external/iproute2/ip/
ipmaddr.c 67 int users; member in struct:ma_info
100 sscanf(buf, "%d%s%d%d%s", &m.index, m.name, &m.users, &st,
148 sscanf(buf, "%08x%d", (__u32*)&m.addr.data, &m.users);
172 sscanf(buf, "%d%s%s%d", &m.index, m.name, hexa, &m.users);
221 if (list->users != 1)
222 fprintf(fp, " users %d", list->users);
  /development/scripts/app_engine_server/gae_shell/
shell.py 26 The logging, os, sys, db, and users modules are imported automatically.
48 from google.appengine.api import users namespace
74 'from google.appengine.api import users',
190 'user': users.get_current_user(),
191 'login_url': users.create_login_url(session_url),
192 'logout_url': users.create_logout_url(session_url),
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
txDataQueue.h 58 /* Verify that there are enough TxCtrlBlks for all users that are queueing packets (driver + FW) */
60 #error Not enough TxCtrlBlks for all users !!

Completed in 798 milliseconds

1 2 3 4 5 6 7