Searched defs:debug (Results 101 - 125 of 483) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DByteBufferPoolImpl.java45 private boolean debug; field in class:ByteBufferPoolImpl
54 debug = theORB.transportDebugFlag;
144 // use with debug to determine if byteBuffer is already
149 if (debug)
167 // if debug = true and refInPool = true, see logic above.
168 if (refInPool == false || debug == false)
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetProvider.java50 * {@code javax.sql.rowset.RowSetFactory.debug} to any value but {@code false}.
58 private static final String ROWSET_DEBUG_PROPERTY = "javax.sql.rowset.RowSetProvider.debug";
62 * Internal debug flag.
64 private static boolean debug = true; field in class:RowSetProvider
68 // Check to see if the debug property is set
70 // Allow simply setting the prop to turn on debug
71 debug = val != null && !"false".equals(val);
186 if (debug) {
294 if (debug) {
303 * -Djavax.sql.rowset.RowSetFactory.debug i
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DSecureClassLoader.java55 private static final Debug debug = Debug.getInstance("scl"); field in class:SecureClassLoader
209 if (debug != null) {
210 debug.println(" getPermissions "+ pd);
211 debug.println("");
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DEventQueue.java49 final static private boolean debug = false; field in class:EventQueue
172 if (debug) System.err.println("EventQueue stopping");
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DLineBreakpointSpec.java35 package com.sun.tools.example.debug.bdi;
H A DPatternReferenceTypeSpec.java35 package com.sun.tools.example.debug.bdi;
H A DSession.java35 package com.sun.tools.example.debug.bdi;
H A DUtils.java35 package com.sun.tools.example.debug.bdi; //### does it belong here?
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/event/
H A DJDIAdapter.java35 package com.sun.tools.example.debug.event;
H A DJDIListener.java35 package com.sun.tools.example.debug.event;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DParseException.java36 package com.sun.tools.example.debug.expr;
H A DToken.java36 package com.sun.tools.example.debug.expr;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DMonitorListModel.java35 package com.sun.tools.example.debug.gui;
H A DSearchPath.java35 package com.sun.tools.example.debug.gui;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadGroupIterator.java35 package com.sun.tools.example.debug.tty;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/apt/
H A DErrorReceiverImpl.java39 private final boolean debug; field in class:ErrorReceiverImpl
41 public ErrorReceiverImpl(Messager messager, boolean debug) { argument
43 this.debug = debug;
82 if(debug) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DErrorReceiver.java114 * unless some specific debug option is turned on.
119 * Reports a debug message to users.
123 public final void debug( String msg ) { method in class:ErrorReceiver
127 public abstract void debug(SAXParseException exception); method in class:ErrorReceiver
H A DErrorReceiverFilter.java67 public void debug(SAXParseException exception) { method in class:ErrorReceiverFilter
H A DWsimportListener.java76 public void debug(SAXParseException exception){} method in class:WsimportListener
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DErrorReceiver.java115 * unless some specific debug option is turned on.
120 * Reports a debug message to users.
124 public final void debug( String msg ) { method in class:ErrorReceiver
/openjdk7/jdk/test/java/net/MulticastSocket/
H A DSetOutgoingIf.java92 debug("Using: " + nic);
122 debug("Adding " + groups + " groups for " + netIf.nic().getName());
145 debug("Joining " + group + " on " + nic.getName());
150 debug("received packet on " + packet.getAddress());
172 private static boolean debug = true; field in class:SetOutgoingIf
174 static void debug(String message) { method in class:SetOutgoingIf
175 if (debug)
/openjdk7/jdk/test/java/net/Socket/
H A DSocksConnectTimeout.java43 static final boolean debug = true; field in class:SocksConnectTimeout
79 debug("Passed: Received: " + socketTimeout);
106 static void debug(String message) { method in class:SocksConnectTimeout
107 if (debug)
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/AppInputStream/
H A DReadBlocksClose.java72 static boolean debug = false; field in class:ReadBlocksClose
195 if (debug)
196 System.setProperty("javax.net.debug", "all");
H A DReadHandshake.java73 static boolean debug = false; field in class:ReadHandshake
225 if (debug)
226 System.setProperty("javax.net.debug", "all");
H A DReadZeroBytes.java71 static boolean debug = false; field in class:ReadZeroBytes
167 if (debug)
168 System.setProperty("javax.net.debug", "all");

Completed in 77 milliseconds

1234567891011>>