Searched defs:nLength (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/sample/vm/jvm-clr/
H A Dinvoker.cpp147 int nLength = strlen(szApplication)+1; local
149 WCHAR* wszApplication = new WCHAR[nLength];
151 mbstowcs(wszApplication, szApplication, nLength);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_FileDialog.cpp198 UINT nLength = CommDlg_OpenSave_GetSpec(parent, NULL, 0) + local
201 if (lpofn->nMaxFile < nLength)
204 LPTSTR newBuffer = new TCHAR[nLength];
207 memset(newBuffer, 0, nLength * sizeof(TCHAR));
210 lpofn->nMaxFile = nLength;
H A DShellFolder2.cpp721 int nLength = env->GetStringLength(jname); local
722 jchar* wszPath = new jchar[nLength + 1];
724 wcsncpy(reinterpret_cast<LPWSTR>(wszPath), reinterpret_cast<LPCWSTR>(strPath), nLength); local
725 wszPath[nLength] = 0;
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsNativeDispatcher.java537 * DWORD nLength,
544 int nLength) throws WindowsException
549 pSecurityDescriptor, nLength);
557 int nLength) throws WindowsException;
541 GetFileSecurity(String path, int requestedInformation, long pSecurityDescriptor, int nLength) argument
554 GetFileSecurity0(long lpFileName, int requestedInformation, long pSecurityDescriptor, int nLength) argument
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DWindowsNativeDispatcher.c236 securityAttributes.nLength = sizeof(SECURITY_ATTRIBUTES);
305 securityAttributes.nLength = sizeof(SECURITY_ATTRIBUTES);
691 jlong pathAddress, jint requestedInformation, jlong descAddress, jint nLength)
700 (DWORD)nLength,
711 return (jint)nLength;
690 Java_sun_nio_fs_WindowsNativeDispatcher_GetFileSecurity0(JNIEnv* env, jclass this, jlong pathAddress, jint requestedInformation, jlong descAddress, jint nLength) argument

Completed in 427 milliseconds