Searched refs:logfile (Results 1 - 15 of 15) sorted by relevance

/openjdk10/jdk/src/jdk.accessibility/windows/native/toolscommon/
H A DAccessInfo.h39 * displays a message in a dialog and writes the message to a logfile
41 void displayAndLog(HWND hDlg, int nIDDlgItem, FILE *logfile, char *msg, ...);
44 * writes a text string to a logfile
46 void logString(FILE *logfile, char *msg, ...);
H A DAccessInfo.cpp58 * displays a message in a dialog and writes the message to a logfile
60 void displayAndLog(HWND hDlg, int nIDDlgItem, FILE *logfile, char *msg, ...) { argument
74 fprintf(logfile, "\n****************************************\n");
75 fprintf(logfile, "%s\n", getTimeAndDate());
76 fprintf(logfile, "%s\n", tmpbuf);
77 fflush(logfile);
86 * writes a text string to a logfile
88 void logString(FILE *logfile, char *msg, ...) { argument
90 if (logfile == NULL || msg == NULL) {
100 fprintf(logfile, tmpbu
[all...]
/openjdk10/jdk/test/com/sun/net/httpserver/
H A DSimpleFileServer.java60 String logfile = args[2];
66 c.getFilters().add (new LogFilter (new File (logfile)));
68 c.getFilters().add (new LogFilter (new File (logfile)));
69 c1.getFilters().add (new LogFilter (new File (logfile)));
H A DTest14.java84 File logfile = new File (
89 ctx.getFilters().add (new LogFilter(logfile));
/openjdk10/hotspot/src/share/vm/runtime/
H A Dtimer.cpp119 outputStream *logfile) :
125 _logfile(logfile),
128 if (logfile != NULL) {
129 _logfile = logfile;
117 TraceCPUTime(bool doit, bool print_cr, outputStream *logfile) argument
H A Dtimer.hpp88 outputStream *logfile = NULL);
/openjdk10/jdk/src/java.desktop/windows/native/libawt/windows/
H A Dawt_new.cpp45 static FILE *logfile; variable
56 logfile = fopen("java.awt.outofmem.txt", "w");
57 DASSERT(logfile);
207 fprintf(logfile, "%s, %d\n", file, line);
208 fflush(logfile);
/openjdk10/hotspot/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/
H A DCompileTheWorld.java51 String logfile = Utils.LOG_FILE;
53 if (logfile != null) {
55 os = new PrintStream(Files.newOutputStream(Paths.get(logfile)));
/openjdk10/jdk/src/java.base/unix/classes/sun/net/sdp/
H A DSdpProvider.java77 String logfile = props.getProperty("com.sun.sdp.debug");
78 if (logfile != null) {
80 if (logfile.length() > 0) {
82 out = new PrintStream(logfile);
/openjdk10/jdk/src/jdk.pack/share/native/unpack200/
H A Dmain.cpp292 char* logfile = null; local
306 case 'l': logfile = *argp++; break;
332 if (logfile != null) {
333 u.set_option(UNPACK_LOG_FILE, logfile);
/openjdk10/jdk/src/java.management/share/classes/javax/management/modelmbean/
H A DRequiredModelMBean.java2176 String logfile = (String) ntfyDesc.getFieldValue("logfile");
2177 if (logfile == null) {
2179 logfile = (String)mmbDesc.getFieldValue("logfile");
2181 if (logfile != null) {
2183 writeToLog(logfile,"LogMsg: " +
2525 String logging, logfile;
2536 logfile = (String) ntfyDesc.getFieldValue("logfile");
[all...]
/openjdk10/jdk/src/jdk.accessibility/windows/native/jaccesswalker/
H A Djaccesswalker.cpp32 FILE *logfile; variable
53 if (logfile == null) {
54 logfile = fopen(JACCESSWALKER_LOG, "w"); // overwrite existing log file
55 logString(logfile, "Starting jaccesswalker.exe %s\n", getTimeAndDate());
639 displayAndLog(apiWindow, cAccessInfoText, logfile, buffer);
/openjdk10/jdk/src/jdk.jdwp.agent/share/native/libjdwp/
H A DdebugInit.c80 static char *logfile = NULL; /* Name of logfile (if logging) */ variable
910 "logfile=filename name of log file none\n"
1017 logfile = DEFAULT_LOGFILE;
1183 } else if (strcmp(buf, "logfile") == 0) {
1188 logfile = current;
1238 if ( logfile!=NULL ) {
1239 setup_logging(logfile, logflags);
/openjdk10/make/
H A DInitSupport.gmk482 $(foreach logfile, $(sort $(wildcard $(MAKESUPPORT_OUTPUTDIR)/failure-logs/*.log)), \
483 $(PRINTF) "* For target $(notdir $(basename $(logfile))):\n" $(NEWLINE) \
484 ($(GREP) -v -e "^Note: including file:" < $(logfile) || true) | $(HEAD) -n 12 $(NEWLINE) \
485 if test `$(WC) -l < $(logfile)` -gt 12; then \
/openjdk10/jdk/src/jdk.accessibility/windows/native/jaccessinspector/
H A Djaccessinspector.cpp97 FILE *logfile = NULL; variable
165 if (logfile == null) {
166 logfile = fopen(JACCESSINSPECTOR_LOG, "w"); // overwrite existing log file
167 logString(logfile, "Starting jaccessinspector.exe %s\n", getTimeAndDate());
185 displayAndLog(theDialogWindow, cjaccessinspectorText, logfile, (char *)buffer);
200 displayAndLog(theDialogWindow, cjaccessinspectorText, logfile, (char *)buffer);
217 displayAndLog(theDialogWindow, cjaccessinspectorText, logfile, (char *)buffer);
295 displayAndLog(theDialogWindow, cjaccessinspectorText, logfile, (char *)s);

Completed in 216 milliseconds