Searched defs:pIDL (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/awt/shell/
H A DWin32ShellFolderManager2.java72 long pIDL;
74 pIDL = parent.parseDisplayName(file.getCanonicalPath());
76 pIDL = 0;
78 if (pIDL == 0) {
84 return createShellFolderFromRelativePIDL(parent, pIDL);
86 Win32ShellFolder2.releasePIDL(pIDL);
90 static Win32ShellFolder2 createShellFolderFromRelativePIDL(Win32ShellFolder2 parent, long pIDL) argument
92 // Walk down this relative pIDL, creating new nodes for each of the entries
93 while (pIDL != 0) {
94 long curPIDL = Win32ShellFolder2.copyFirstPIDLEntry(pIDL);
[all...]
H A DWin32ShellFolder2.java248 long pIDL = disposer.relativePIDL;
250 while (pIDL != 0) {
252 long childPIDL = copyFirstPIDLEntry(pIDL);
256 pIDL = getNextPIDLEntry(pIDL);
257 if (pIDL != 0) {
372 static native long getNextPIDLEntry(long pIDL); argument
379 static native long copyFirstPIDLEntry(long pIDL); argument
382 private static native long combinePIDLs(long ppIDL, long pIDL); argument
386 static native void releasePIDL(long pIDL); argument
565 getAttributes0(long pParentIShellFolder, long pIDL, int attrsMask) argument
659 bindToObject(long parentIShellFolder, long pIDL) argument
862 getFolderType(long pIDL) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A DShellFolder2.cpp356 LPITEMIDLIST pIDL = (LPITEMIDLIST)jpIDL; local
358 // Check for valid pIDL.
359 if(pIDL == NULL)
363 int cb = pIDL->mkid.cb;
370 pIDL = (LPITEMIDLIST)(((LPBYTE)pIDL) + cb);
373 return (pIDL->mkid.cb == 0) ? 0 : (jlong)pIDL;
385 LPITEMIDLIST pIDL = (LPITEMIDLIST)jpIDL; local
386 if (pIDL
412 pidlLength(LPITEMIDLIST pIDL) argument
457 Java_sun_awt_shell_Win32ShellFolder2_releasePIDL(JNIEnv* env, jclass cls, jlong pIDL) argument
508 LPCITEMIDLIST pIDL = (LPCITEMIDLIST)jpIDL; local
720 LPITEMIDLIST pIDL; local
770 Java_sun_awt_shell_Win32ShellFolder2_getFolderType(JNIEnv* env, jclass cls, jlong pIDL) argument
[all...]

Completed in 36 milliseconds