Searched refs:user (Results 51 - 72 of 72) sorted by relevance

123

/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystem.java231 .unmodifiableSet(new HashSet<String>(Arrays.asList("basic", "dos", "acl", "owner", "user")));
276 UserPrincipal user = WindowsUserPrincipals.lookup(group);
277 if (!(user instanceof GroupPrincipal))
279 return (GroupPrincipal)user;
/openjdk7/jdk/src/share/sample/nio/file/
H A DAclEdit.java101 * [user|group:]<username|groupname>:<perms>[:flags]:<allow|deny>
115 // optional first component can indicate user or group type
117 if (result[index].equalsIgnoreCase("user") ||
125 // user and permissions required
144 UserPrincipal user = null;
146 user = (isGroup) ?
151 ((isGroup) ? "group" : "user"),
167 .setPrincipal(user)
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DSolarisAclFileAttributeView.java103 UnixUserPrincipals.User user = (UnixUserPrincipals.User)who;
105 if (user.isSpecial()) {
116 if (user instanceof UnixUserPrincipals.Group) {
117 uid = user.gid();
120 uid = user.uid();
/openjdk7/hotspot/agent/src/os/bsd/
H A Dps_proc.c34 #include <sys/user.h>
113 // "user" should be a pointer to a reg
114 static bool process_get_lwp_regs(struct ps_prochandle* ph, pid_t pid, struct reg *user) { argument
117 if (ptrace(PT_GETREGS, pid, (caddr_t) user, 0) < 0) {
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapPoolManager.java296 String authMech, Control[] ctls, String protocol, String user,
318 ctls, trace, socketFactory, user, passwd);
322 // Add user/passwd/realm/authzid/qop/strength/maxbuf/mutual/policy*
324 ctls, trace, socketFactory, user, passwd, env);
294 getLdapClient(String host, int port, String socketFactory, int connTimeout, int readTimeout, OutputStream trace, int version, String authMech, Control[] ctls, String protocol, String user, Object passwd, Hashtable env) argument
H A DLdapCtx.java136 // schema operational and user attributes
1813 // check for presence of "*" (user attributes wildcard)
2660 String user = null; // authenticating user
2661 Object passwd = null; // password for authenticating user
2670 user = (String)envprops.get(Context.SECURITY_PRINCIPAL);
2688 authMechanism = (user == null) ? "none" : "simple";
2716 user,
2741 user, passwd, ldapVersion, authMechanism, bindCtls, envprops);
H A DLdapClient.java1595 String user, Object passwd, Hashtable env) throws NamingException {
1602 trace, version, authMechanism, ctls, protocol, user,
1592 getInstance(boolean usePool, String hostname, int port, String factory, int connectTimeout, int readTimeout, OutputStream trace, int version, String authMechanism, Control[] ctls, String protocol, String user, Object passwd, Hashtable env) argument
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMimeTable.java59 System.getProperty("user.mailcap"),
60 System.getProperty("user.home") + "/.mailcap",
234 // First try to load the user-specific table, if it exists
236 System.getProperty("content.types.user.table");
240 // No user-table, try to load the default built-in table.
249 // No user table, try to load the default built-in table.
389 filename = System.getProperty("user.home" +
417 String user = System.getProperty("user.name");
418 if (user !
[all...]
/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DMLetParser.java268 String userDir = System.getProperty("user.dir");
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_proc.c112 // "user" should be a pointer to a user_regs_struct
113 static bool process_get_lwp_regs(struct ps_prochandle* ph, pid_t pid, struct user_regs_struct *user) { argument
134 if (ptrace_getregs(PTRACE_GETREGS_REQ, pid, user, NULL) < 0) {
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DJDBCAdapter.java70 String user, String passwd) {
75 connection = DriverManager.getConnection(url, user, passwd);
69 JDBCAdapter(String url, String driverName, String user, String passwd) argument
/openjdk7/jdk/src/share/classes/sun/net/ftp/
H A DFtpClient.java265 * Attempts to log on the server with the specified user name and password.
267 * @param user The user name
268 * @param password The password for that user
273 public abstract FtpClient login(String user, char[] password) throws FtpProtocolException, IOException; argument
276 * Attempts to log on the server with the specified user name, password and
279 * @param user The user name
280 * @param password The password for that user.
281 * @param account The account name for that user
286 login(String user, char[] password, String account) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/net/ftp/impl/
H A DFtpClient.java103 // 6 - user, 7 - group
225 // 5 - permissions, 6 - user, 7 - group
1022 private void tryLogin(String user, char[] password) throws sun.net.ftp.FtpProtocolException, IOException { argument
1023 issueCommandCheck("USER " + user);
1036 * Attempts to log on the server with the specified user name and password.
1038 * @param user The user name
1039 * @param password The password for that user
1043 public sun.net.ftp.FtpClient login(String user, char[] password) throws sun.net.ftp.FtpProtocolException, IOException { argument
1047 if (user
1081 login(String user, char[] password, String account) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/client/
H A DHttpTransportPipe.java337 String user = (String) context.invocationProperties.get(BindingProvider.USERNAME_PROPERTY);
338 if (user != null) {
341 StringBuffer buf = new StringBuffer(user);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/client/p2p/
H A DHttpSOAPConnection.java602 String user;
604 if (userInfo != null) { // get the user and password
608 user = ParseUtil.decode(userInfo);
611 user = ParseUtil.decode(userInfo.substring(0, delimiter++));
615 String plain = user + ":";
619 // concatenate user name and password bytes and encode them
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DKDC.java112 * started and before a user requests info on this principal.
317 * @param user the principal's name. For a service principal, use the
321 public void addPrincipal(String user, char[] pass) { argument
322 if (user.indexOf('@') < 0) {
323 user = user + "@" + realm;
325 passwords.put(user, pass);
330 * @param user the principal's name. For a service principal, use the
333 public void addPrincipalRandKey(String user) { argument
334 addPrincipal(user, randomPasswor
[all...]
/openjdk7/jdk/src/solaris/classes/java/util/prefs/
H A DFileSystemPreferences.java79 * Directory for user preferences.
89 * The user root.
106 System.getProperty("user.home")), ".java/.userPrefs");
116 getLogger().info("Created user preferences directory.");
119 getLogger().warning("Couldn't create user preferences" +
123 String USER_NAME = System.getProperty("user.name");
124 userLockFile = new File (userRootDir,".user.lock." + USER_NAME);
131 // Only user can read/write userRootModFile.
217 * Unix user write/read permission
229 * The lock file for the user tre
483 FileSystemPreferences(boolean user) argument
[all...]
/openjdk7/jdk/test/java/net/Socks/
H A DSocksServer.java508 public void addUser(String user, String passwd) { argument
509 users.put(user, passwd);
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DScanManager.java1013 // in the user directory.
1014 final String user = System.getProperty("user.home");
1015 final String defconf = user+File.separator+"jmx-scandir.xml";
1035 * assuming that the user will later create/update a configuration and
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFontPanel.java367 /// character range or user text data used (no file text data)
389 int contrast, String user[] ) {
398 setTextToDraw( text, range, user, null );
577 // we need to convert back to user space to be able to
578 // calculate the shift as baseX is in user space.
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/
H A DCorbaMessageMediatorImpl.java448 // Since we dont have the actual user exception
1933 // If user code throws a non-SystemException report it generically.
2169 CorbaMessageMediator messageMediator, ServiceContexts svc,boolean user)
2177 user ? ReplyMessage.USER_EXCEPTION :
2168 createResponseHelper( CorbaMessageMediator messageMediator, ServiceContexts svc,boolean user) argument
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetImpl.java328 * @param user - the database user on whose behalf the connection
330 * @param password - the user's password
335 public JdbcRowSetImpl(String url, String user, String password) throws SQLException { argument
353 setUsername(user);
537 * data source name, user name, and password must be set. If the
539 * URL, user name, and password must be set. In either case, the
659 // user, passwd can be null
1636 * data of SQL user-defined types. When a column contains
1669 * data of SQL user
[all...]

Completed in 111 milliseconds

123