- Sort Score
- Result 10 results
- Languages All
Results 11 - 16 of 16 for WinError (0.87 sec)
-
src/main/java/jcifs/smb1/smb1/SmbFile.java
do { int n; send(req, resp); if (resp.status != WinError.ERROR_SUCCESS && resp.status != WinError.ERROR_MORE_DATA) { throw new SmbException(resp.status, true); } more = resp.status == WinError.ERROR_MORE_DATA; n = more ? resp.numEntries - 1 : resp.numEntries; for (int i = 0; i < n; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTree.java
} } } void treeDisconnect(final boolean inError) { synchronized (session.transport()) { if (connectionState != 2) { // not-connected return; } connectionState = 3; // disconnecting if (!inError && tid != 0) { try { send(new SmbComTreeDisconnect(), null);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
try { t.treeDisconnect(inError, true); } finally { this.tree = null; this.treeAcquired = false; } } else { this.delegate.disconnect(inError); } } } } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
for (final Enumeration e = trees.elements(); e.hasMoreElements();) { final SmbTree t = (SmbTree) e.nextElement(); t.treeDisconnect(inError); } if (!inError && transport.server.security != SmbConstants.SECURITY_SHARE) { /* * Logoff And X Request / Response */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
} catch (final CIFSException e) { throw new SmbException("Logon share connection failed", e); } } } boolean treeDisconnect(final boolean inError, final boolean inUse) { boolean wasInUse = false; try (SmbSessionImpl sess = getSession(); SmbTransportImpl transport = sess.getTransport()) { synchronized (transport) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
&& tc.getConfig().getDefaultPassword() != null; } boolean logoff(boolean inError, boolean inUse) { boolean wasInUse = false; try (SmbTransportImpl trans = getTransport()) { synchronized (trans) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0)