Searched defs:user (Results 26 - 50 of 439) sorted by relevance

1234567891011>>

/external/chromium_org/cloud_print/service/win/
H A Dservice_controller.h35 HRESULT InstallCheckService(const base::string16& user,
40 HRESULT InstallConnectorService(const base::string16& user,
55 const base::string16& user() const { return user_; } function in class:ServiceController
61 HRESULT InstallService(const base::string16& user,
/external/chromium_org/extensions/browser/api/system_cpu/
H A Dcpu_info_provider_linux.cc50 uint64 user = 0, nice = 0, sys = 0, idle = 0; local
56 &user,
66 infos->at(pindex)->usage.user = static_cast<double>(user + nice);
69 static_cast<double>(sys + user + nice + idle);
H A Dcpu_info_provider_win.cc62 user = static_cast<double>(processor_info[i].UserTime.QuadPart), local
68 infos->at(i)->usage.user = user;
70 infos->at(i)->usage.total = kernel + user;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dsystemhost.py33 from webkitpy.common.system import environment, executive, filesystem, platforminfo, user, workspace namespace
41 self.user = user.User()
/external/chromium_org/third_party/libxml/src/include/libxml/
H A Duri.h38 char *user; /* the user part */ member in struct:_xmlURI
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow_swizzles.c90 void rc_dataflow_swizzles(struct radeon_compiler * c, void *user) argument
H A Dradeon_pair_dead_sources.c41 void rc_pair_remove_dead_sources(struct radeon_compiler * c, void *user) argument
H A Dradeon_rename_regs.c47 void rc_rename_regs(struct radeon_compiler *c, void *user) argument
/external/libsepol/tests/
H A Dtest-expander-users.c33 user_datum_t *user; local
40 user = (user_datum_t *) hashtab_search(p->p_users.table, user_name);
41 if (!user) {
43 CU_FAIL("user not found");
48 ebitmap_for_each_bit(&user->roles.roles, tnode, i) {
62 printf("role %s associated with user %s %d times\n", role_names[j], user_name, found[j]);
63 CU_FAIL("user mapping failure\n");
/external/libxml2/include/libxml/
H A Duri.h38 char *user; /* the user part */ member in struct:_xmlURI
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow_swizzles.c90 void rc_dataflow_swizzles(struct radeon_compiler * c, void *user) argument
H A Dradeon_pair_dead_sources.c41 void rc_pair_remove_dead_sources(struct radeon_compiler * c, void *user) argument
H A Dradeon_rename_regs.c47 void rc_rename_regs(struct radeon_compiler *c, void *user) argument
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DAddressFactoryImpl.java109 *@param user -- the user
112 public javax.sip.address.SipURI createSipURI(String user, String host) argument
118 if (user != null) {
119 uriString.append(user);
/external/nist-sip/java/javax/sip/address/
H A DAddressFactory.java12 SipURI createSipURI(String user, String host) throws ParseException; argument
/external/ppp/pppd/plugins/
H A Dpassprompt.c28 static int promptpass(char *user, char *passwd) argument
60 argv[1] = user;
H A Dpasswordfd.c33 static int pwfd_passwd (char *user, char *passwd) argument
/external/smack/src/org/apache/qpid/management/common/sasl/
H A DUserPasswordCallbackHandler.java31 private String user; field in class:UserPasswordCallbackHandler
34 public UserPasswordCallbackHandler(String user, String password) argument
36 this.user = user;
47 ncb.setName(user);
H A DUsernameHashedPasswordCallbackHandler.java36 private String user; field in class:UsernameHashedPasswordCallbackHandler
39 public UsernameHashedPasswordCallbackHandler(String user, String password) throws Exception argument
41 this.user = user;
52 ncb.setName(user);
/external/smack/src/org/jivesoftware/smack/debugger/
H A DSmackDebugger.java39 * Called when a user has logged in to the server. The user could be an anonymous user, this
40 * means that the user would be of the form host/resource instead of the form
41 * user@host/resource.
43 * @param user the user@host/resource that has just logged in
45 public abstract void userHasLogged(String user); argument
/external/smack/src/org/jivesoftware/smackx/
H A DOfflineMessageHeader.java29 * Each offline message is identified by the target user of the offline message and a unique stamp.
36 * Bare JID of the user that was offline when the message was sent.
38 private String user; field in class:OfflineMessageHeader
40 * Full JID of the user that sent the message.
52 user = item.getEntityID();
58 * Returns the bare JID of the user that was offline when the message was sent.
60 * @return the bare JID of the user that was offline when the message was sent.
63 return user;
67 * Returns the full JID of the user that sent the message.
69 * @return the full JID of the user tha
[all...]
H A DRemoteRosterEntry.java36 private String user; field in class:RemoteRosterEntry
43 * @param user the user.
44 * @param name the user's name.
48 public RemoteRosterEntry(String user, String name, String [] groups) { argument
49 this.user = user;
57 * Returns the user.
59 * @return the user.
62 return user;
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/user/
H A DQueueListener.java20 package org.jivesoftware.smackx.workgroup.user;
31 * The user joined the workgroup queue.
36 * The user departed the workgroup queue.
41 * The user's queue position has been updated to a new value.
43 * @param currentPosition the user's current position in the queue.
48 * The user's estimated remaining wait time in the queue has been updated.
51 * the user is routed to the agent.
/external/wpa_supplicant_8/hs20/server/www/
H A Dspp.php23 unset($user);
41 $user = $data['username']; variable
42 if (strlen($user) < 1) {
54 "WHERE identity='$user' AND realm='$realm'")->fetch();
57 "WHERE osu_user='$user' AND realm='$realm'")->fetch();
62 error_log("spp.php - Authentication failed - user '$user' not found");
70 $A1 = md5($user . ':' . $realm . ':' . $pw);
81 $user = "cert-" . $_SERVER["SSL_CLIENT_M_SERIAL"]; variable
93 if (isset($user)
[all...]
/external/chromium_org/android_webview/native/
H A Daw_http_auth_handler.cc41 jstring user,
45 login_delegate_->Proceed(ConvertJavaStringToUTF16(env, user),
39 Proceed(JNIEnv* env, jobject obj, jstring user, jstring password) argument

Completed in 378 milliseconds

1234567891011>>