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

1234567891011>>

/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...]
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/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/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/pdfium/public/
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/jetty/src/java/org/eclipse/jetty/security/
H A DLoginService.java42 /** Login a user.
43 * @param username The user name
50 /** Validate a user identity.
53 * @param user The user to validate
54 * @return true if authentication has not been revoked for the user.
56 boolean validate(UserIdentity user); argument
70 void logout(UserIdentity user); argument
H A DDefaultIdentityService.java51 public Object associate(UserIdentity user) argument
62 public Object setRunAs(UserIdentity user, RunAsToken token) argument
/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/openssh/
H A Dauth-shadow.c91 const char *user = ctxt->pw->pw_name; local
96 if ((spw = getspnam((char *)user)) == NULL) {
97 error("Could not get shadow information for %.100s", user);
109 pr = getprpwnam((char *)user);
125 logit("User %.100s password has expired (root forced)", user);
130 logit("User %.100s password has expired (password aged)", user);
H A Dgroupaccess.c46 * Initialize group access list for user with primary (base) and
50 ga_init(const char *user, gid_t base) argument
71 if (getgrouplist(user, base, groups_bygid, &ngroups) == -1)
82 * Return 1 if one of user's groups is contained in groups.
98 * Return 1 if one of user's groups matches group_pattern list.
/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/selinux/libselinux/src/
H A Dcompute_user.c13 const char *user, char *** con)
27 snprintf(path, sizeof path, "%s/user", selinux_mnt);
38 snprintf(buf, size, "%s %s", scon, user);
83 const char *user, char *** con)
91 ret = security_compute_user_raw(rscon, user, con);
12 security_compute_user_raw(const char * scon, const char *user, char *** con) argument
/external/selinux/libselinux/utils/
H A Dgetconlist.c14 fprintf(stderr, "usage: %s [-l level] user [context]\n", name);
23 char *user = NULL, *level = NULL; local
46 user = argv[optind];
60 get_ordered_context_list_with_level(user, level,
63 ret = get_ordered_context_list(user, cur_context, &list);
/external/selinux/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/clang/test/CodeGenCXX/
H A Dsections.cpp39 int *user() { return &referenced; } function
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DArrayData.java36 private final CodeAddress user; field in class:ArrayData
55 * @param user {@code non-null;} address representing the instruction that
59 public ArrayData(SourcePosition position, CodeAddress user, argument
64 if (user == null) {
65 throw new NullPointerException("user == null");
95 this.user = user;
161 return new ArrayData(getPosition(), user, values, arrayType);
183 int baseAddress = user.getAddress();

Completed in 754 milliseconds

1234567891011>>