Searched refs:pwd (Results 1 - 25 of 29) sorted by relevance

12

/openjdk7/jdk/src/solaris/native/com/sun/security/auth/module/
H A DSolaris.c29 #include <pwd.h>
33 #include <pwd.h>
40 struct passwd pwd; local
51 if (getpwuid_r(getuid(), &pwd, pwd_buf, sizeof(pwd_buf)) != NULL &&
67 jstr = (*env)->NewStringUTF(env, pwd.pw_name);
83 (*env)->SetLongField(env, obj, fid, pwd.pw_uid);
98 (*env)->SetLongField(env, obj, fid, pwd.pw_gid);
H A DUnix.c33 #include <pwd.h>
45 struct passwd *pwd; local
57 if (getpwuid_r(getuid(), &resbuf, pwd_buf, sizeof(pwd_buf), &pwd) == 0 &&
58 pwd != NULL &&
74 jstr = (*env)->NewStringUTF(env, pwd->pw_name);
90 (*env)->SetLongField(env, obj, fid, pwd->pw_uid);
105 (*env)->SetLongField(env, obj, fid, pwd->pw_gid);
/openjdk7/jdk/test/sun/net/www/ftptest/
H A DFtpFileSystemHandler.java47 public String pwd(); method in interface:FtpFileSystemHandler
H A DFtpCommandHandler.java523 String s = fsh.pwd();
/openjdk7/jdk/test/java/util/logging/
H A DClassLoaderLeakTest.java81 URL pwd = null;
84 pwd = new File(System.getProperty("test.classes",".")).toURL();
88 URL[] urls = new URL[] { pwd };
/openjdk7/jdk/test/sun/awt/font/
H A DClassLoaderLeakTest.java61 URL pwd = null;
64 pwd = new File(System.getProperty("test.classes", ".")).toURL();
68 System.out.println("PWD: " + pwd);
69 URL[] urls = new URL[]{pwd};
/openjdk7/jdk/test/javax/imageio/plugins/jpeg/
H A DConcurrentWritingTest.java46 static File pwd = new File("."); field in class:ConcurrentWritingTest
74 File f = File.createTempFile("writer_", ".jpg", pwd);
H A DWritingInterruptionTest.java48 static File pwd = new File("."); field in class:WritingInterruptionTest
129 File f = File.createTempFile("writer_", ".jpg", pwd);
/openjdk7/jdk/test/sun/net/ftp/
H A DB6427768.java69 public String pwd() { method in class:B6427768.MyFileSystemHandler
H A DFtpURL.java412 String pwd() { method in class:FtpURL.FtpServer
471 if (!("/etc".equals(server.pwd())))
498 if (! "/usr".equals(server.pwd()))
499 throw new RuntimeException("Incorrect pwd received");
H A DFtpGetContent.java414 String pwd() { method in class:FtpGetContent.FtpServer
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_c_ImageCopy.c248 mlib_u32 *pws, *pwd; local
251 pwd = (mlib_u32 *) da;
256 pwd[i] = pws[i];
263 mlib_u32 *pws, *pwd, src0, src1; local
266 pwd = (mlib_u32 *) da;
279 pwd[i] = (src0 >> lshift) | (src1 << rshift);
281 pwd[i] = (src0 << lshift) | (src1 >> rshift);
290 mlib_u64 *pws, *pwd, src0, src1;
293 pwd = (mlib_u64 *) da;
305 pwd[
[all...]
/openjdk7/jdk/test/javax/imageio/plugins/gif/
H A DGifTransparencyTest.java42 File pwd = new File(".");
44 File f = File.createTempFile("transparency_test_", ".gif", pwd);
/openjdk7/jdk/test/javax/imageio/plugins/png/
H A DGrayPngTest.java130 static File pwd = new File("."); field in class:GrayPngTest
180 trans_index + "tp_", ".png", pwd);
H A DPngOutputTypeTest.java244 File pwd = new File(".");
245 File out = File.createTempFile("rgba_", ".png", pwd);
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DJndiLoginModule.java327 // attempt the authentication by prompting for the username and pwd
551 Attribute pwd = attributes.get(USER_PWD);
552 String encryptedPwd = new String((byte[])pwd.get(), "UTF8");
/openjdk7/jdk/src/solaris/native/java/lang/
H A Djava_props_md.c30 #include <pwd.h>
/openjdk7/jdk/src/share/classes/com/sun/tools/script/shell/
H A Dinit.js335 function pwd() { function
575 * @param dir directory from which to list the files. optional, default to pwd
/openjdk7/hotspot/src/os/bsd/vm/
H A DperfMemory_bsd.cpp44 # include <pwd.h>
/openjdk7/hotspot/src/os/linux/vm/
H A DperfMemory_linux.cpp44 # include <pwd.h>
/openjdk7/hotspot/src/os/solaris/vm/
H A DperfMemory_solaris.cpp44 # include <pwd.h>
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dos_bsd_x86.cpp73 # include <pwd.h>
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.cpp73 # include <pwd.h>
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dos_solaris_sparc.cpp75 # include <pwd.h>
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dos_solaris_x86.cpp76 # include <pwd.h>

Completed in 477 milliseconds

12