Searched defs:user (Results 76 - 100 of 439) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/policy/
H A Dprofile_policy_connector_factory.cc22 #include "components/user_manager/user.h"
106 user_manager::User* user = NULL; local
108 user = chromeos::ProfileHelper::Get()->GetUserByProfile(profile);
109 CHECK(user);
125 user,
H A Dschema_registry_service_factory.cc21 #include "components/user_manager/user.h"
41 user_manager::User* user = local
43 if (!user)
53 return service->GetBrokerForUser(user->email());
/external/chromium_org/chrome/browser/ui/ash/
H A Dsession_state_delegate_chromeos_unittest.cc30 const char* kUser = "user@test.com";
82 // Add and log in a user to the session.
83 void UserAddedToSession(std::string user) { argument
84 user_manager()->AddUser(user);
85 user_manager()->LoginUser(user);
88 // Get the active user.
104 const user_manager::User* user = user_manager()->AddUser(user_email); local
106 // Note that user profiles are created after user login in reality.
110 user, user_profile
[all...]
/external/chromium_org/chrome/browser/ui/webui/ntp/
H A Dnew_tab_page_sync_handler.cc108 // from the user's perspective are:
137 base::string16 user = base::UTF8ToUTF16(SigninManagerFactory::GetForProfile( local
142 user));
167 std::string user; local
191 // The only time we set the URL is when the user is synced and we need to
193 // set that URL, HandleSyncLinkClicked won't be called when the user
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Daccounts_options_browsertest.cc64 void CheckAccountsUI(const user_manager::User* user, bool is_owner) { argument
65 Profile* profile = ProfileHelper::Get()->GetProfileByUserUnsafe(user);
67 user->email());
/external/chromium_org/cloud_print/service/win/
H A Dsetup_listener.cc29 SetupListener::SetupListener(const base::string16& user) argument
38 base::Bind(&SetupListener::Connect, base::Unretained(this), user));
97 void SetupListener::Connect(const base::string16& user) { argument
101 if (!user_sid.LoadAccount(ReplaceLocalHostInName(user).c_str())) {
102 LOG(ERROR) << "Unable to load Sid for" << user;
/external/chromium_org/components/signin/core/browser/
H A Dsignin_manager_base.cc35 // If the user is clearing the token service from the command line, then
42 std::string user = local
44 if (!user.empty()) {
50 user = gaia::CanonicalizeEmail(gaia::SanitizeEmail(user));
52 SetAuthenticatedUsername(user);
98 // user is signed in the two preferences should match. Doing it here as
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_pair_translate.c354 void rc_pair_translate(struct radeon_compiler *cc, void *user) argument
H A Dradeon_remove_constants.c60 void rc_remove_unused_constants(struct radeon_compiler *c, void *user) argument
62 unsigned **out_remap_table = (unsigned**)user;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_resource_buffer.h69 * Used for user buffers or for buffers which we know before hand that can
75 * Whether swbuf was created by the user or not.
77 boolean user; member in struct:svga_buffer
94 * Only set for non-user buffers.
121 * Information about uploaded version of user buffers.
127 * We combine multiple user buffers into the same hardware buffer. This
133 * Range of user buffer that is uploaded in @buffer at @offset.
146 * Only set for non-user buffers.
195 * Returns TRUE for user buffers. We may
202 return svga_buffer(buffer)->user;
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DSwitchData.java36 private final CodeAddress user; field in class:SwitchData
55 * @param user {@code non-null;} address representing the instruction that
61 public SwitchData(SourcePosition position, CodeAddress user, argument
65 if (user == null) {
66 throw new NullPointerException("user == null");
87 this.user = user;
103 int baseAddress = user.getAddress();
149 return new SwitchData(getPosition(), user, cases, targets);
180 int baseAddress = user
[all...]
/external/libsepol/src/
H A Dcontext_record.c11 /* Selinux user */
12 char *user; member in struct:sepol_context
28 return con->user;
34 sepol_context_t * con, const char *user)
37 char *tmp_user = strdup(user);
40 "context user to %s", user);
44 free(con->user);
45 con->user = tmp_user;
141 con->user
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_pair_translate.c354 void rc_pair_translate(struct radeon_compiler *cc, void *user) argument
H A Dradeon_remove_constants.c60 void rc_remove_unused_constants(struct radeon_compiler *c, void *user) argument
62 unsigned **out_remap_table = (unsigned**)user;
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_resource_buffer.h69 * Used for user buffers or for buffers which we know before hand that can
75 * Whether swbuf was created by the user or not.
77 boolean user; member in struct:svga_buffer
94 * Only set for non-user buffers.
121 * Information about uploaded version of user buffers.
127 * We combine multiple user buffers into the same hardware buffer. This
133 * Range of user buffer that is uploaded in @buffer at @offset.
146 * Only set for non-user buffers.
195 * Returns TRUE for user buffers. We may
202 return svga_buffer(buffer)->user;
[all...]
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DUserInfo.java47 /** user field
49 protected String user; field in class:UserInfo
86 if (!this.user.equalsIgnoreCase(other.user)) {
102 * Encode the user information as a string.
111 buffer.append(user).append(COLON).append(password);
113 buffer.append(user);
125 * Gets the user type (which can be set to TELEPHONE_SUBSCRIBER or USER)
126 * @return the type of user.
132 /** get the user fiel
150 setUser(String user) argument
[all...]
/external/smack/asmack-master/static-src/custom/de/measite/smack/
H A DAndroidDebugger.java153 public void userHasLogged(String user) { argument
154 boolean isAnonymous = "".equals(StringUtils.parseName(user));
157 + (isAnonymous ? "" : StringUtils.parseBareAddress(user))
162 title += "/" + StringUtils.parseResource(user);
/external/smack/src/de/measite/smack/
H A DAndroidDebugger.java153 public void userHasLogged(String user) { argument
154 boolean isAnonymous = "".equals(StringUtils.parseName(user));
157 + (isAnonymous ? "" : StringUtils.parseBareAddress(user))
162 title += "/" + StringUtils.parseResource(user);
/external/smack/src/org/jivesoftware/smack/
H A DRosterEntry.java29 * Each user in your roster is represented by a roster entry, which contains the user's
36 private String user; field in class:RosterEntry
46 * @param user the user.
52 RosterEntry(String user, String name, RosterPacket.ItemType type, argument
54 this.user = user;
63 * Returns the JID of the user associated with this entry.
65 * @return the user associate
[all...]
/external/smack/src/org/jivesoftware/smack/debugger/
H A DConsoleDebugger.java167 public void userHasLogged(String user) { argument
168 boolean isAnonymous = "".equals(StringUtils.parseName(user));
171 + (isAnonymous ? "" : StringUtils.parseBareAddress(user))
176 title += "/" + StringUtils.parseResource(user);
/external/smack/src/org/jivesoftware/smackx/
H A DPrivateDataManager.java124 * The user to get and set private data for. In most cases, this value should
128 private String user; field in class:PrivateDataManager
146 * Creates a new private data manager for a specific user (special case). Most
147 * servers only support getting and setting private data for the user that
155 * @param user the XMPP address of the user to get and set private data for.
157 public PrivateDataManager(Connection connection, String user) { argument
162 this.user = user;
192 // Address the packet to the other account if user ha
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DQueueDetails.java87 * Adds a user to the packet.
89 * @param user the user.
91 private void addUser(QueueUser user) { argument
93 users.add(user);
111 QueueUser user = (QueueUser)i.next();
112 int position = user.getQueuePosition();
113 int timeRemaining = user.getEstimatedRemainingTime();
114 Date timestamp = user.getQueueJoinTimestamp();
116 buf.append("<user ji
[all...]
H A DRoomInvitation.java48 * JID of the entity being invited. The entity could be another agent, user , a queue or a workgroup. In
53 * Full JID of the user that sent the invitation.
57 * ID of the session that originated the initial user request.
129 * A user is being invited to a groupchat support session. The user could be another agent
130 * or just a regular XMPP user.
132 user, enum constant in enum:RoomInvitation.Type
H A DRoomTransfer.java48 * JID of the entity being invited. The entity could be another agent, user , a queue or a workgroup. In
53 * Full JID of the user that sent the invitation.
57 * ID of the session that originated the initial user request.
129 * A user is being invited to a groupchat support session. The user could be another agent
130 * or just a regular XMPP user.
132 user, enum constant in enum:RoomTransfer.Type
/external/wpa_supplicant_8/hostapd/src/ap/
H A Deap_user_db.c2 * hostapd / EAP user database
23 static void set_user_methods(struct hostapd_eap_user *user, const char *methods) argument
32 os_memset(&user->methods, 0, sizeof(user->methods));
39 user->methods[num_methods].method =
41 &user->methods[num_methods].vendor);
42 if (user->methods[num_methods].vendor == EAP_VENDOR_IETF &&
43 user->methods[num_methods].method == EAP_TYPE_NONE) {
45 user->ttls_auth |= EAP_TTLS_AUTH_PAP;
49 user
81 struct hostapd_eap_user *user = ctx; local
103 struct hostapd_eap_user *user = ctx; local
137 struct hostapd_eap_user *user = NULL; local
220 struct hostapd_eap_user *user = conf->eap_user; local
[all...]

Completed in 535 milliseconds

1234567891011>>