Searched defs:user (Results 1 - 25 of 439) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/chromeos/extensions/
H A Dfirst_run_private_api.cc13 #include "components/user_manager/user.h"
20 user_manager::User* user = local
22 if (!user->GetGivenName().empty()) {
26 user->GetGivenName()));
/external/wpa_supplicant_8/hs20/server/www/
H A Dcert-enroll.php26 $user = sha1(mt_rand()); variable
28 if (!$db->exec("UPDATE sessions SET user='$user', type='cert' WHERE rowid=$rowid")) {
32 $db->exec("INSERT INTO eventlog(user,realm,sessionid,timestamp,notes) " .
35 "'completed user input response for client certificate enrollment')");
H A Dredirect.php24 $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')");
H A Dadd-free.php31 $user = $row['value']; variable
33 $row = $db->query("SELECT password FROM users WHERE identity='$user' AND realm='$realm'")->fetch();
39 if (!$db->exec("UPDATE sessions SET user='$user', password='$pw', realm='$realm', machine_managed='1' WHERE rowid=$rowid")) {
43 $db->exec("INSERT INTO eventlog(user,realm,sessionid,timestamp,notes) " .
44 "VALUES ('$user', '$realm', '$id', " .
46 "'completed user input response for a new PPS MO')");
H A Dadd-mo.php15 $user = $_POST["user"]; variable
17 if (strlen($id) < 32 || !isset($user) || !isset($pw)) {
21 if (strlen($user) < 1 || strncasecmp($user, "cert-", 5) == 0) {
34 $userrow = $db->query("SELECT identity FROM users WHERE identity='$user' AND realm='$realm'")->fetch();
45 if (!$db->exec("UPDATE sessions SET user='$user', password='$pw', realm='$realm', type='password' WHERE rowid=$rowid")) {
49 $db->exec("INSERT INTO eventlog(user,realm,sessionid,timestamp,notes) " .
50 "VALUES ('$user', '
[all...]
/external/bison/lib/
H A Dtimevar.h25 portions of the compiler. Each measures elapsed user, system, and
55 float user; member in struct:timevar_time_def
/external/chromium_org/ash/system/user/
H A Dlogin_status.cc5 #include "ash/system/user/login_status.h"
15 namespace user { namespace in namespace:ash
51 } // namespace user
H A Dlogin_status.h11 namespace user { namespace in namespace:ash
15 LOGGED_IN_LOCKED, // A user has locked the screen
16 LOGGED_IN_USER, // A regular user is logged in
21 LOGGED_IN_SUPERVISED, // A supervised user is logged in
28 } // namespace user
/external/chromium_org/chrome/browser/chromeos/login/supervised/
H A Dsupervised_user_password_browsertest.cc72 StartUserCreation("supervised-user-creation-next-button",
76 // Supervised user signs in, get sync notification about password update, and
82 const user_manager::User* user = local
86 user->email());
101 // Supervised user signs in for second time, and actual password migration takes
120 StartUserCreation("supervised-user-creation-next-button",
124 // Manager signs in, gets sync notification about supervised user password
166 // After that supervised user signs in, and no password change happens.
185 StartUserCreation("supervised-user-creation-next-button",
189 // Supervised user sign
195 const user_manager::User* user = local
[all...]
/external/chromium_org/extensions/browser/api/system_cpu/
H A Dcpu_info_provider_mac.cc33 double user = static_cast<double>(cpu_infos[i].cpu_ticks[CPU_STATE_USER]), local
40 infos->at(i)->usage.user = user + nice;
42 infos->at(i)->usage.total = sys + user + nice + idle;
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dfriendinvitesendtask.cc34 FriendInviteSendTask::Send(const Jid& user) { argument
43 item->AddAttr(QN_JID, user.Str());
44 item->AddAttr(QN_NAME, user.node());
51 presence->AddAttr(QN_TO, user.Str());
/external/lldb/test/pexpect-2.4/examples/
H A Dssh_tunnel.py21 tunnel_command = 'ssh -C -N -f -L 25:127.0.0.1:25 -L 143:127.0.0.1:143 -L 110:127.0.0.1:110 %(user)@%(host)'
23 user = raw_input('Username: ') variable
68 #tunnel_command = 'ssh -C -n -L 25:%(host)s:25 -L 110:%(host)s:110 %(user)s@%(host)s -f nothing.sh'
/external/oprofile/daemon/
H A Dopd_events.h27 unsigned long user; member in struct:opd_event
/external/oprofile/libop/
H A Dop_parse_event.h24 int user; member in struct:parsed_event
32 * event_name:count[:unit_mask:kernel:user]
/external/pdfium/fpdfsdk/include/
H A Dfpdf_progressive.h47 //A user defined data pointer, used by user's application. Can be NULL.
48 void* user; member in struct:_IFSDK_PAUSE
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DDepartQueuePacket.java27 * <li>The user wants to leave the queue. In this case, an instance of this class
28 * should be created without passing in a user address.
29 * <li>An administrator or the server removes wants to remove a user from the queue.
30 * In that case, the address of the user to remove from the queue should be
37 private String user; field in class:DepartQueuePacket
50 * specified user.
53 * @param user the user to make depart from the queue.
55 public DepartQueuePacket(String workgroup, String user) { argument
56 this.user
[all...]
/external/chromium_org/chrome/browser/chromeos/background/
H A Dash_user_wallpaper_delegate.cc19 #include "components/user_manager/user.h"
100 // Whitelist user types that are allowed to change their wallpaper. (Guest
108 const user_manager::User* user = variable
110 if (!user)
112 if (chromeos::WallpaperManager::Get()->IsPolicyControlled(user->email()))
/external/chromium_org/chrome/browser/chromeos/login/signin/
H A Dauth_sync_observer.cc52 user_manager::User* user = ProfileHelper::Get()->GetUserByProfile(profile_); local
60 // needed because sign-out/sign-in solution is suggested to the user.
64 std::string email = user->email();
66 // TODO(nkostyelv): Change observer after active user has changed.
68 user->oauth_token_status();
71 if (user->GetType() == user_manager::USER_TYPE_SUPERVISED &&
84 if (user->GetType() == user_manager::USER_TYPE_SUPERVISED &&
85 user->oauth_token_status() ==
90 user->email(), user_manager::User::OAUTH2_TOKEN_STATUS_VALID);
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dstub_enterprise_install_attributes.cc24 const std::string& user) {
25 registration_user_ = user;
23 SetRegistrationUser( const std::string& user) argument
/external/chromium_org/chrome/browser/extensions/api/feedback_private/
H A Dfeedback_service_chromeos.cc11 #include "components/user_manager/user.h"
45 const user_manager::User* user = manager ? manager->GetActiveUser() : NULL; local
46 return user ? user->display_email() : std::string();
/external/chromium_org/chrome/browser/policy/
H A Dconfiguration_policy_handler_list_factory.cc43 #include "components/user_manager/user.h"
540 const user_manager::User* user = local
542 if (user)
543 parameters->user_id_hash = user->username_hash();
H A Dpolicy_path_parser_linux.cc37 struct passwd* user = getpwuid(geteuid()); local
38 if (user) {
39 result.replace(position, strlen(kUserNamePolicyVarName), user->pw_name);
/external/chromium_org/chrome/browser/supervised_user/chromeos/
H A Dmanager_password_service_factory.cc16 #include "components/user_manager/user.h"
47 user_manager::User* user = ProfileHelper::Get()->GetUserByProfile(profile); local
49 user->email())) {
52 user->email(),
H A Dsupervised_user_password_service.cc47 const user_manager::User* user = supervised_user_manager->FindBySyncId(su_id); local
48 if (user == NULL) {
49 LOG(WARNING) << "Got notification for user not on device.";
52 DCHECK(user_id_ == user->email());
53 if (user_id_ != user->email())
H A Dsupervised_user_password_service_factory.cc14 #include "components/user_manager/user.h"
45 user_manager::User* user = ProfileHelper::Get()->GetUserByProfile(profile); local
46 if (user->GetType() != user_manager::USER_TYPE_SUPERVISED)
50 user->email(),

Completed in 501 milliseconds

1234567891011>>