Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 277 for flen (0.02 sec)

  1. src/main/java/jcifs/smb1/smb1/TransCallNamedPipeResponse.java

        int readSetupWireFormat(final byte[] buffer, final int bufferIndex, final int len) {
            return 0;
        }
    
        @Override
        int readParametersWireFormat(final byte[] buffer, final int bufferIndex, final int len) {
            return 0;
        }
    
        @Override
        int readDataWireFormat(final byte[] buffer, final int bufferIndex, final int len) {
            if (pipe.pipeIn != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                     * one might be able to reduce this.
                     */
    
                    if (len > 0 && src[srcIndex + len - 1] == '\0') {
                        len--;
                    }
                    str = new String(src, srcIndex, len, SmbConstants.OEM_ENCODING);
                }
            } catch (final UnsupportedEncodingException uee) {
                if (LogStream.level > 1) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/TransactNamedPipeInputStream.java

            i = pipe_buf.length - nxt_idx;
            if (len > i) {
                System.arraycopy(b, off, pipe_buf, nxt_idx, i);
                off += i;
                System.arraycopy(b, off, pipe_buf, 0, len - i);
            } else {
                System.arraycopy(b, off, pipe_buf, nxt_idx, len);
            }
            nxt_idx = (nxt_idx + len) % pipe_buf.length;
            used += len;
            return len;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipe.java

         * @param len the length of data to write
         */
        public TransCallNamedPipe(final Configuration config, final String pipeName, final byte[] data, final int off, final int len) {
            super(config, SMB_COM_TRANSACTION, TRANS_CALL_NAMED_PIPE);
            this.name = pipeName;
            this.pipeData = data;
            this.pipeDataOff = off;
            this.pipeDataLen = len;
            this.timeout = 0xFFFFFFFF;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans/TransTransactNamedPipe.java

         * @param len the length of data to send
         */
        public TransTransactNamedPipe(final Configuration config, final int fid, final byte[] data, final int off, final int len) {
            super(config, SMB_COM_TRANSACTION, TRANS_TRANSACT_NAMED_PIPE);
            this.pipeFid = fid;
            this.pipeData = data;
            this.pipeDataOff = off;
            this.pipeDataLen = len;
            this.maxParameterCount = 0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/orig/view/header.jsp

    			<div id="content" class="container">
    				<la:link styleClass="navbar-brand d-inline-flex" href="/">
    					<img src="${fe:url('/images/logo-head.png')}"
    						alt="<la:message key="labels.header_brand_name" />"
    						class="align-items-center" />
    				</la:link>
    				<div
    					class="d-flex col-md-6 col-sm-8 col-7 me-auto p-0"
    					role="search">
    					<div class="input-group">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/header.jsp

    			<div id="content" class="container">
    				<la:link styleClass="navbar-brand d-inline-flex" href="/">
    					<img src="${fe:url('/images/logo-head.png')}"
    						alt="<la:message key="labels.header_brand_name" />"
    						class="align-items-center" />
    				</la:link>
    				<div
    					class="d-flex col-md-6 col-sm-8 col-7 me-auto p-0"
    					role="search">
    					<div class="input-group">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:58:45 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

                len = offset % 2 != 0 ? len + 1 : len;
            }
            return len;
        }
    
        int readStringLength(final byte[] src, final int srcIndex, final int max) {
            int len = 0;
            while (src[srcIndex + len] != (byte) 0x00) {
                if (len++ > max) {
                    throw new RuntimeException("zero termination not found: " + this);
                }
            }
            return len;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java

                byte[] buffer = new byte[200];
                int bufferIndex = testCase[0];
                int len = testCase[1];
    
                // Act
                int result = response.readSetupWireFormat(buffer, bufferIndex, len);
    
                // Assert
                assertEquals(0, result, "Failed for bufferIndex=" + bufferIndex + ", len=" + len);
            }
        }
    
        @Test
        @DisplayName("readParametersWireFormat should return 0")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java

                    path = readString(buffer, start + pathOffset, len, (flags2 & FLAGS2_UNICODE) != 0);
                    if (nodeOffset > 0) {
                        node = readString(buffer, start + nodeOffset, len, (flags2 & FLAGS2_UNICODE) != 0);
                    }
                } else if (version == 1) {
                    node = readString(buffer, bufferIndex, len, (flags2 & FLAGS2_UNICODE) != 0);
                }
    
                return size;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top