Searched refs:con (Results 1 - 25 of 108) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/javax/sql/
H A DConnectionEvent.java52 * @param con the pooled connection that is the source of the event
53 * @throws IllegalArgumentException if <code>con</code> is null.
55 public ConnectionEvent(PooledConnection con) { argument
56 super(con);
64 * @param con the pooled connection that is the source of the event
66 * @throws IllegalArgumentException if <code>con</code> is null.
68 public ConnectionEvent(PooledConnection con, SQLException ex) { argument
69 super(con);
H A DStatementEvent.java53 * @param con The <code>PooledConnection</code> that the closed or invalid
57 * @throws IllegalArgumentException if <code>con</code> is null.
61 public StatementEvent(PooledConnection con, argument
64 super(con);
74 * @param con The <code>PooledConnection</code> that the closed or invalid <code>PreparedStatement</code>
80 * @throws IllegalArgumentException if <code>con</code> is null.
84 public StatementEvent(PooledConnection con, argument
88 super(con);
/openjdk7/jdk/test/java/net/ProxySelector/
H A DNullSelector.java36 URLConnection con = url.openConnection();
37 con.setConnectTimeout(500);
40 con.connect();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DHttpAdapter.java296 * @param con
303 private Packet decodePacket(@NotNull WSHTTPConnection con, @NotNull Codec codec) throws IOException { argument
304 String ct = con.getRequestHeader("Content-Type");
305 InputStream in = con.getInput();
307 packet.soapAction = fixQuotesAroundSoapAction(con.getRequestHeader("SOAPAction"));
308 packet.wasTransportSecure = con.isSecure();
309 packet.acceptableMimeTypes = con.getRequestHeader("Accept");
310 packet.addSatellite(con);
311 packet.transportBackChannel = new Oneway(con);
312 packet.webServiceContextDelegate = con
346 encodePacket(@otNull Packet packet, @NotNull WSHTTPConnection con, @NotNull Codec codec) argument
415 addStickyCookie(WSHTTPConnection con) argument
431 addReplicaCookie(WSHTTPConnection con, Packet packet) argument
444 invokeAsync(final WSHTTPConnection con) argument
448 invokeAsync(final WSHTTPConnection con, final CompletionCallback callback) argument
517 handleAsync(WSHTTPConnection con) argument
521 encodePacket(WSHTTPConnection con, @NotNull Packet packet, @NotNull Codec codec) argument
525 getAcceptableMimeTypes(WSHTTPConnection con) argument
529 getTransportBackChannel(WSHTTPConnection con) argument
534 getPropertySet(WSHTTPConnection con) argument
538 getWebServiceContextDelegate(WSHTTPConnection con) argument
544 WSHTTPConnection con; field in class:HttpAdapter.Oneway
547 Oneway(WSHTTPConnection con) argument
571 handle(WSHTTPConnection con) argument
636 publishWSDL(@otNull WSHTTPConnection con) argument
670 private final WSHTTPConnection con; field in class:HttpAdapter.Http10OutputStream
672 Http10OutputStream(WSHTTPConnection con) argument
686 writeNotFoundErrorPage(WSHTTPConnection con, String message) argument
702 writeInternalServerError(WSHTTPConnection con) argument
736 writeWebServicesHtmlPage(WSHTTPConnection con) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DRegularExpression.java714 Context con = null;
716 con = this.context.inuse ? new Context() : this.context;
717 con.reset(target, start, end, this.numberOfClosures);
728 con.match = match;
731 int matchEnd = this. match(con, this.operations, con.start, 1, this.options);
733 if (matchEnd == con.limit) {
734 if (con.match != null) {
735 con.match.setBeginning(0, con
1045 match(Context con, Op op, int offset, int dx, int opts) argument
1444 matchAnchor(ExpressionTarget target, Op op, Context con, int offset, int opts) argument
[all...]
/openjdk7/jdk/test/sun/net/www/protocol/jar/
H A DB4756443.java49 URLConnection con = u.openConnection ();
50 con.setUseCaches (false);
51 con.connect ();
52 long l = con.getLastModified ();
/openjdk7/langtools/test/tools/javac/generics/wildcards/
H A DBoundBug.java39 B<? super T> con = null; //ok
48 B<? super C> con = null; //ok
/openjdk7/langtools/test/tools/javac/generics/wildcards/pos/
H A DInstanceOf.java44 I1<? super T> con = null;
48 b = con instanceof I3; // <<pass>>
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRMaskImage.java51 XRBackend con; field in class:XRMaskImage
55 this.con = xrMgr.getBackend();
81 con.setPictureTransform(blitMaskPicture, maskTX);
88 con.renderRectangle(blitMaskPicture, XRUtils.PictOpClear, XRColor.NO_ALPHA, 0, 0, lastMaskWidth, lastMaskHeight);
91 con.renderRectangle(blitMaskPicture, XRUtils.PictOpSrc, xrMgr.getAlphaColor(), 0, 0, maskWidth, maskHeight);
101 int newPM = con.createPixmap(parentDrawable, 8, width, height);
102 int newPict = con.createPicture(newPM, XRUtils.PictStandardA8);
106 con.freePixmap(blitMaskPixmap);
107 con.freePicture(blitMaskPicture);
113 con
[all...]
H A DXRCompositeManager.java69 XRBackend con; field in class:XRCompositeManager
83 con = new XRBackendNative();
84 // con = XRBackendJava.getInstance();
103 int solidPixmap = con.createPixmap(parentXid, 32, 1, 1);
104 int solidSrcPictXID = con.createPicture(solidPixmap,
106 con.setPictureRepeat(solidSrcPictXID, XRUtils.RepeatNormal);
107 con.renderRectangle(solidSrcPictXID, XRUtils.PictOpSrc,
109 solidSrcPict = new XRSurfaceData.XRInternalSurfaceData(con,
113 int extraAlphaMask = con.createPixmap(parentXid, 8, 1, 1);
114 alphaMaskPict = con
[all...]
H A DMaskTileManager.java52 XRBackend con; field in class:MaskTileManager
65 this.con = xrMgr.getBackend();
67 maskPixmap = con.createPixmap(parentXid, 8, MASK_SIZE, MASK_SIZE);
68 maskPicture = con.createPicture(maskPixmap, XRUtils.PictStandardA8);
69 con.renderRectangle(maskPicture, XRUtils.PictOpClear,
72 maskGC = con.createGC(maskPixmap);
73 con.setGCExposures(maskGC, false);
75 lineMaskPixmap = con.createPixmap(parentXid, 8, MASK_SIZE, MASK_SIZE);
77 con.createPicture(lineMaskPixmap, XRUtils.PictStandardA8);
78 con
[all...]
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DSetIfModifiedSince.java86 HttpURLConnection con;
91 con = (HttpURLConnection)url.openConnection();
93 con.setIfModifiedSince(date.getTime());
94 con.connect();
95 int ret = con.getResponseCode();
H A DHttpInputStream.java77 HttpURLConnection con;
81 con = (HttpURLConnection)url.openConnection();
83 int ret = con.getResponseCode();
85 InputStream is = con.getInputStream();
/openjdk7/jdk/test/java/net/URL/
H A DOpenConnection.java39 URLConnection con = u.openConnection(Proxy.NO_PROXY);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/client/
H A DHttpTransportPipe.java131 HttpClientTransport con;
153 con = new HttpClientTransport(request,reqHeaders);
154 request.addSatellite(new HttpResponseProperties(con));
174 buf.writeTo(con.getOutput());
189 OutputStream out = con.getOutput();
194 OutputStream os = con.getOutput();
201 con.closeOutput();
203 return createResponsePacket(request, con);
211 private Packet createResponsePacket(Packet request, HttpClientTransport con) throws IOException { argument
212 con
267 checkStatusCode(InputStream in, HttpClientTransport con) argument
325 recordCookies(Packet context, HttpClientTransport con) argument
[all...]
H A DHttpResponseProperties.java45 public HttpResponseProperties(@NotNull HttpClientTransport con) { argument
46 this.deferedCon = con;
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DOCSP.java229 HttpURLConnection con = (HttpURLConnection)url.openConnection();
230 con.setConnectTimeout(CONNECT_TIMEOUT);
231 con.setReadTimeout(CONNECT_TIMEOUT);
232 con.setDoOutput(true);
233 con.setDoInput(true);
234 con.setRequestMethod("POST");
235 con.setRequestProperty
237 con.setRequestProperty
239 out = con.getOutputStream();
244 con
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DCachedRowSetReader.java132 Connection con = null;
157 con = this.connect(caller);
160 if (con == null || crs.getCommand() == null)
164 con.setTransactionIsolation(crs.getTransactionIsolation());
169 PreparedStatement pstmt = con.prepareStatement(crs.getCommand());
205 pstmt = con.prepareStatement(crs.getCommand(),ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
230 con.commit();
236 con.close();
244 if (con != null && getCloseConnection() == true) {
246 if (!con
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DThrowsTagImpl.java81 ClassDocImpl con = (ClassDocImpl)emd.containingClass();
82 exceptionClass = (ClassDocImpl)con.findClass(exceptionName);
/openjdk7/hotspot/src/share/vm/opto/
H A Dmultnode.hpp65 ProjNode( Node *src, uint con, bool io_use = false ) argument
66 : Node( src ), _con(con), _is_io_use(io_use)
70 if (con != TypeFunc::Memory || src->is_Start())
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6373555.java103 HttpURLConnection con = (HttpURLConnection)url.openConnection();
104 con.setDoOutput(true);
105 con.setDoInput(true);
106 con.setRequestMethod("POST");
107 con.setRequestProperty(
110 OutputStream out = con.getOutputStream();
113 InputStream in = con.getInputStream();
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DXRGlyphCache.java41 XRBackend con; field in class:XRGlyphCache
60 this.con = maskBuf.getBackend();
63 grayGlyphSet = con.XRenderCreateGlyphSet(XRUtils.PictStandardA8);
64 lcdGlyphSet = con.XRenderCreateGlyphSet(XRUtils.PictStandardARGB32);
161 con.XRenderAddGlyphs(grayGlyphSet, gl, grayGlyphList, generateGlyphImageStream(grayGlyphList));
164 con.XRenderAddGlyphs(lcdGlyphSet, gl, lcdGlyphList, generateGlyphImageStream(lcdGlyphList));
174 con.XRenderAddGlyphs(grayGlyphSet, gl, tmpList, generateGlyphImageStream(tmpList));
176 con.XRenderAddGlyphs(lcdGlyphSet, gl, tmpList, generateGlyphImageStream(tmpList));
295 con.XRenderFreeGlyphs(grayGlyphSet, removedGrayscaleGlyphs.getSizedArray());
299 con
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/tools/
H A DParallelWorldClassLoader.java113 URLConnection con = null;
116 con = u.openConnection();
117 is = con.getInputStream();
147 if (con != null && con instanceof JarURLConnection) {
148 jars.add(((JarURLConnection) con).getJarFile());
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWGlobalCursorManager.java51 protected native Component findComponentAt(Container con, int x, int y); argument
/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestC2.java534 Constructor<C2> con = cls.getDeclaredConstructor(params1);
536 Type[] pt_con = con.getGenericParameterTypes();
554 Type[] et_con = con.getGenericExceptionTypes();
559 TypeVariable[] tv_con = con.getTypeParameters();
567 con = cls.getDeclaredConstructor(params2);
569 pt_con = con.getGenericParameterTypes();
587 et_con = con.getGenericExceptionTypes();
592 tv_con = con.getTypeParameters();
602 con = cls.getDeclaredConstructor(params3);
604 pt_con = con
[all...]

Completed in 139 milliseconds

12345