Searched defs:buffer (Results 351 - 352 of 352) sorted by relevance

<<1112131415

/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp163 bool os::getenv(const char* name, char* buffer, int len) { argument
164 int result = GetEnvironmentVariable(name, buffer, len);
922 void os::check_or_create_dump(void* exceptionRecord, void* contextRecord, char* buffer, size_t bufferSize) { argument
971 jio_snprintf(buffer, bufferSize, "%s\\hs_err_pid%u.mdmp",cwd, current_process_id());
972 dumpFile = CreateFile(buffer, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
996 VMError::report_coredump_status(buffer, true);
1152 void os::dll_build_name(char *buffer, size_t buflen, argument
1157 // Quietly truncates on buffer overflow. Should be an error.
1159 *buffer = '\0';
1164 jio_snprintf(buffer, bufle
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.cpp2194 char* buffer = new char[size]; // safe because sizeof(char)==1 local
2195 memset(buffer, 0, size);
2196 LPRGNDATA rgndata = (LPRGNDATA)buffer;
2202 delete [] buffer;
2210 RECT* r = (RECT*)(buffer + rgndata->rdh.dwSize);
2231 delete [] buffer;

Completed in 59 milliseconds

<<1112131415