Home
last modified time | relevance | path

Searched refs:autoClose (Results 1 – 25 of 812) sorted by relevance

12345678910>>...33

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Linq/SqlClient/
H A DSqlConnectionManager.cs20 private bool autoClose; field in System.Data.Linq.SqlClient.SqlConnectionManager
44 this.autoClose = true; in UseConnection()
65 bool saveAutoClose = this.autoClose; in BootUser()
66 this.autoClose = false; in BootUser()
72 this.autoClose = saveAutoClose; in BootUser()
85 if (this.autoClose) { in DisposeConnection()
104 get { return this.autoClose; }
105 set { this.autoClose = value; }
130 …if (this.users.Count == 0 && this.autoClose && this.transaction == null && System.Transactions.Tra… in ReleaseConnection()
140 this.autoClose = false; in CloseConnection()
[all …]
/dports/archivers/pear-File_Archive/File_Archive-1.5.5/File/Archive/Writer/
H A DArchive.php52 var $autoClose; variable in File_Archive_Writer_Archive
68 * @param bool $autoClose Indicate if the inner writer must be closed when
72 $stat = array(), $autoClose = true) argument
75 $this->autoClose = $autoClose;
119 if ($this->autoClose) {
H A DBzip2.php53 var $autoClose; variable in File_Archive_Writer_Bzip2
63 * @param bool $autoClose Indicate if the inner writer must be closed when
67 $stat = array(), $autoClose = true) argument
70 $this->autoClose = $autoClose;
133 if ($this->autoClose) {
H A DGzip.php45 var $autoClose; variable in File_Archive_Writer_Gzip
55 * @param bool $autoClose Indicate if the inner writer must be closed when
59 $stat = array(), $autoClose = true) argument
62 $this->autoClose = $autoClose;
125 if ($this->autoClose) {
/dports/games/openspades/openspades-0.1.3/Sources/Core/
H A DAudioStream.cpp36 …using CodecInfo = std::tuple<std::string, IAudioStream *(*)(IStream *stream, bool autoClose), std:…
38 CodecInfo {"WAV Decoder", [] (IStream *stream, bool autoClose) -> IAudioStream * { in __anon5a6097bf0202()
39 return new WavAudioStream(stream, autoClose); in __anon5a6097bf0202()
41 CodecInfo {"Opus Decoder", [] (IStream *stream, bool autoClose) -> IAudioStream * { in __anon5a6097bf0302()
42 return new OpusAudioStream(stream, autoClose); in __anon5a6097bf0302()
/dports/java/bouncycastle15/crypto-169/tls/src/main/jdk1.9/org/bouncycastle/jsse/provider/
H A DProvSSLSocketWrap_9.java10 …ted ProvSSLSocketWrap_9(ContextData contextData, Socket s, InputStream consumed, boolean autoClose) in ProvSSLSocketWrap_9() argument
13 super(contextData, s, consumed, autoClose); in ProvSSLSocketWrap_9()
16 …ed ProvSSLSocketWrap_9(ContextData contextData, Socket s, String host, int port, boolean autoClose) in ProvSSLSocketWrap_9() argument
19 super(contextData, s, host, port, autoClose); in ProvSSLSocketWrap_9()
/dports/java/bouncycastle15/crypto-169/tls/src/main/java/org/bouncycastle/jsse/provider/
H A DProvSSLSocketWrap_8.java14 …ted ProvSSLSocketWrap_8(ContextData contextData, Socket s, InputStream consumed, boolean autoClose) in ProvSSLSocketWrap_8() argument
17 super(contextData, s, consumed, autoClose); in ProvSSLSocketWrap_8()
20 …ed ProvSSLSocketWrap_8(ContextData contextData, Socket s, String host, int port, boolean autoClose) in ProvSSLSocketWrap_8() argument
23 super(contextData, s, host, port, autoClose); in ProvSSLSocketWrap_8()
H A DProvSSLSocketFactory.java56 public Socket createSocket(Socket s, InputStream consumed, boolean autoClose) throws IOException in createSocket() argument
58 return SSLSocketUtil.create(contextData, s, consumed, autoClose); in createSocket()
62 … public Socket createSocket(Socket s, String host, int port, boolean autoClose) throws IOException in createSocket() argument
64 return SSLSocketUtil.create(contextData, s, host, port, autoClose); in createSocket()
/dports/archivers/pear-File_Archive/File_Archive-1.5.5/File/Archive/
H A DReader.php281 * @param bool $autoClose If true, close $writer at the end of the function.
286 function extract(&$writer, $autoClose = true, $bufferSize = 0) argument
314 if ($autoClose) {
327 * @param bool $autoClose If true, close $writer at the end of the function
333 $autoClose = true, $bufferSize = 0) argument
349 if ($autoClose) {
/dports/java/bouncycastle15/crypto-169/tls/src/main/jdk1.5/org/bouncycastle/jsse/provider/
H A DSSLSocketUtil.java85 …rovSSLSocketWrap create(ContextData contextData, Socket s, InputStream consumed, boolean autoClose) in create() argument
89 ? new ProvSSLSocketWrap_8(contextData, s, consumed, autoClose) in create()
90 : new ProvSSLSocketWrap(contextData, s, consumed, autoClose); in create()
93 …ovSSLSocketWrap create(ContextData contextData, Socket s, String host, int port, boolean autoClose) in create() argument
97 ? new ProvSSLSocketWrap_8(contextData, s, host, port, autoClose) in create()
98 : new ProvSSLSocketWrap(contextData, s, host, port, autoClose); in create()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/sun/security/ssl/
H A DSSLSocketFactoryImpl.java109 boolean autoClose) throws IOException { in createSocket() argument
110 return new SSLSocketImpl(context, s, host, port, autoClose); in createSocket()
115 boolean autoClose) throws IOException { in createSocket() argument
121 return new SSLSocketImpl(context, s, consumed, autoClose); in createSocket()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/sun/security/ssl/
H A DSSLSocketFactoryImpl.java109 boolean autoClose) throws IOException { in createSocket() argument
110 return new SSLSocketImpl(context, s, host, port, autoClose); in createSocket()
115 boolean autoClose) throws IOException { in createSocket() argument
121 return new SSLSocketImpl(context, s, consumed, autoClose); in createSocket()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/sun/security/ssl/
H A DSSLSocketFactoryImpl.java109 boolean autoClose) throws IOException { in createSocket() argument
110 return new SSLSocketImpl(context, s, host, port, autoClose); in createSocket()
115 boolean autoClose) throws IOException { in createSocket() argument
121 return new SSLSocketImpl(context, s, consumed, autoClose); in createSocket()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/security/ssl/
H A DSSLSocketFactoryImpl.java109 boolean autoClose) throws IOException { in createSocket() argument
110 return new SSLSocketImpl(context, s, host, port, autoClose); in createSocket()
115 boolean autoClose) throws IOException { in createSocket() argument
121 return new SSLSocketImpl(context, s, consumed, autoClose); in createSocket()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/sun/security/ssl/
H A DSSLSocketFactoryImpl.java109 boolean autoClose) throws IOException { in createSocket() argument
110 return new SSLSocketImpl(context, s, host, port, autoClose); in createSocket()
115 boolean autoClose) throws IOException { in createSocket() argument
121 return new SSLSocketImpl(context, s, consumed, autoClose); in createSocket()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/sun/security/ssl/
H A DSSLSocketFactoryImpl.java109 boolean autoClose) throws IOException { in createSocket() argument
110 return new SSLSocketImpl(context, s, host, port, autoClose); in createSocket()
115 boolean autoClose) throws IOException { in createSocket() argument
121 return new SSLSocketImpl(context, s, consumed, autoClose); in createSocket()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/sun/security/ssl/
H A DSSLSocketFactoryImpl.java109 boolean autoClose) throws IOException { in createSocket() argument
110 return new SSLSocketImpl(context, s, host, port, autoClose); in createSocket()
115 boolean autoClose) throws IOException { in createSocket() argument
121 return new SSLSocketImpl(context, s, consumed, autoClose); in createSocket()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/sun/security/ssl/
H A DSSLSocketFactoryImpl.java109 boolean autoClose) throws IOException { in createSocket() argument
110 return new SSLSocketImpl(context, s, host, port, autoClose); in createSocket()
115 boolean autoClose) throws IOException { in createSocket() argument
121 return new SSLSocketImpl(context, s, consumed, autoClose); in createSocket()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/share/classes/sun/security/ssl/
H A DSSLSocketFactoryImpl.java109 boolean autoClose) throws IOException { in createSocket() argument
110 return new SSLSocketImpl(context, s, host, port, autoClose); in createSocket()
115 boolean autoClose) throws IOException { in createSocket() argument
121 return new SSLSocketImpl(context, s, consumed, autoClose); in createSocket()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/security/ssl/
H A DSSLSocketFactoryImpl.java109 boolean autoClose) throws IOException { in createSocket() argument
110 return new SSLSocketImpl(context, s, host, port, autoClose); in createSocket()
115 boolean autoClose) throws IOException { in createSocket() argument
121 return new SSLSocketImpl(context, s, consumed, autoClose); in createSocket()
/dports/java/bouncycastle15/crypto-169/tls/src/main/java/org/bouncycastle/jsse/util/
H A DCustomSSLSocketFactory.java58 public Socket createSocket(Socket s, InputStream consumed, boolean autoClose) throws IOException in createSocket() argument
60 return configureSocket(delegate.createSocket(s, consumed, autoClose)); in createSocket()
64 … public Socket createSocket(Socket s, String host, int port, boolean autoClose) throws IOException in createSocket() argument
66 return configureSocket(delegate.createSocket(s, host, port, autoClose)); in createSocket()
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/apache/commons/httpclient/protocol/
H A DSecureProtocolSocketFactory.java81 boolean autoClose in createSocket() argument
88 boolean autoClose, in createSocket() argument
91 return createSocket(socket, host, port, autoClose); in createSocket()
/dports/converters/p5-LaTeXML/LaTeXML-0.8.6/t/namespace/
H A Dns1.latexml16 Tag('song', autoOpen => 1, autoClose => 1);
17 Tag('verse', autoOpen => 1, autoClose => 1);
18 Tag('line', autoOpen => 1, autoClose => 1);
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DStreamSerializer.java65 final OutputStream[] autoClose = new OutputStream[1]; in StreamSerializer() local
78 autoClose[0] = fos; in StreamSerializer()
90 if(autoClose[0]!=null) { in StreamSerializer()
92 autoClose[0].close(); in StreamSerializer()
96 autoClose[0] = null; in StreamSerializer()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DStreamSerializer.java65 final OutputStream[] autoClose = new OutputStream[1]; in StreamSerializer() local
78 autoClose[0] = fos; in StreamSerializer()
90 if(autoClose[0]!=null) { in StreamSerializer()
92 autoClose[0].close(); in StreamSerializer()
96 autoClose[0] = null; in StreamSerializer()

12345678910>>...33