Searched refs:user (Results 1 - 10 of 10) sorted by relevance

/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/
H A DPrincipalImpl.java27 private String user; field in class:PrincipalImpl
30 user = s;
36 return user.equals(principalimpl.toString());
43 return user;
47 return user.hashCode();
51 return user;
H A DAclEntryImpl.java30 private Principal user; field in class:AclEntryImpl
35 user = null;
38 user = principal;
42 user = null;
48 if(user != null) {
51 user = principal;
91 if(user instanceof Group)
95 stringbuffer.append((new StringBuilder()).append(user).append("=").toString());
109 AclEntryImpl aclentryimpl = new AclEntryImpl(user);
116 return user;
[all...]
/dalvik/libcore/security/src/main/java/java/security/acl/
H A DGroup.java33 * @param user
37 boolean addMember(Principal user); argument
42 * @param user
46 boolean removeMember(Principal user); argument
H A DAclEntry.java36 * @param user
41 boolean setPrincipal(Principal user); argument
H A DAcl.java129 * @param user
133 Enumeration<Permission> getPermissions(Principal user); argument
/dalvik/dx/src/com/android/dx/dex/code/
H A DSwitchData.java35 private final CodeAddress user; field in class:SwitchData
54 * @param user {@code non-null;} address representing the instruction that
60 public SwitchData(SourcePosition position, CodeAddress user, argument
64 if (user == null) {
65 throw new NullPointerException("user == null");
86 this.user = user;
102 int baseAddress = user.getAddress();
148 return new SwitchData(getPosition(), user, cases, targets);
179 int baseAddress = user
[all...]
H A DArrayData.java35 private final CodeAddress user; field in class:ArrayData
54 * @param user {@code non-null;} address representing the instruction that
58 public ArrayData(SourcePosition position, CodeAddress user, argument
63 if (user == null) {
64 throw new NullPointerException("user == null");
94 this.user = user;
160 return new ArrayData(getPosition(), user, values, arrayType);
182 int baseAddress = user.getAddress();
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTestHelper_Driver4.java70 static String userProperty = "user";
82 * Check for user and password, except for datasource =
83 * data1 which is set up not to require a user/password
92 String user = (String) info.get(userProperty);
94 if (user == null || password == null) {
98 if (!user.equals(validuser)
/dalvik/libcore/sql/src/main/java/java/sql/
H A DDriverManager.java165 * Normally, at least the properties {@code "user"} and {@code
167 * the user ID and its corresponding password to get access to
207 * @param user
208 * a user ID used to login to the database.
210 * a password for the user ID to login to the database.
217 public static Connection getConnection(String url, String user, argument
220 if (null != user) {
221 theProperties.setProperty("user", user); //$NON-NLS-1$
/dalvik/vm/
H A DAndroid.mk46 LOCAL_MODULE_TAGS := user

Completed in 207 milliseconds