Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for numEntries (0.38 sec)

  1. src/test/java/jcifs/internal/smb1/net/NetShareEnumResponseTest.java

            SMBUtil.writeInt2(0, buffer, bufferIndex);
            bufferIndex += 2;
            // converter (2 bytes)
            SMBUtil.writeInt2(100, buffer, bufferIndex);
            bufferIndex += 2;
            // numEntries (2 bytes)
            SMBUtil.writeInt2(3, buffer, bufferIndex);
            bufferIndex += 2;
            // totalAvailableEntries (2 bytes)
            SMBUtil.writeInt2(5, buffer, bufferIndex);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java

            SMBUtil.writeInt2(0, buffer, bufferIndex);
            bufferIndex += 2;
            // converter (2 bytes)
            SMBUtil.writeInt2(100, buffer, bufferIndex);
            bufferIndex += 2;
            // numEntries (2 bytes)
            SMBUtil.writeInt2(3, buffer, bufferIndex);
            bufferIndex += 2;
            // totalAvailableEntries (2 bytes)
            SMBUtil.writeInt2(5, buffer, bufferIndex);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    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++) {
                    final FileEntry e = resp.results[i];
                    final String name = e.getName();
                    if (fnf != null && !fnf.accept(this, name)) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/samr.java

                    final SamrSamArray sam, final int num_entries) {
                this.domain_handle = domain_handle;
                this.resume_handle = resume_handle;
                this.acct_flags = acct_flags;
                this.sam = sam;
                this.num_entries = num_entries;
            }
    
            @Override
            public void encode_in(final NdrBuffer _dst) throws NdrException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

                    final SamrSamArray sam, final int num_entries) {
                this.domain_handle = domain_handle;
                this.resume_handle = resume_handle;
                this.acct_flags = acct_flags;
                this.sam = sam;
                this.num_entries = num_entries;
            }
    
            @Override
            public void encode_in(final NdrBuffer _dst) throws NdrException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java

                assertEquals(1, message.resume_handle);
                assertEquals(2, message.acct_flags);
                assertNotNull(message.sam);
                assertEquals(3, message.num_entries);
            }
    
            @Test
            @DisplayName("Should encode input correctly")
            void testEncodeIn() throws NdrException {
                // Given: Enumerate aliases message
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl

    	[op(0x0f)]
    	int SamrEnumerateAliasesInDomain([in] policy_handle *domain_handle,
    			[in,out] uint32_t *resume_handle,
    			[in] uint32_t acct_flags,
    			[out,unique] SamrSamArray *sam,
    			[out] uint32_t num_entries);
    
    	[op(0x1b)]
    	int SamrOpenAlias([in] policy_handle *domain_handle,
    			[in] uint32_t access_mask,
    			[in] uint32_t rid,
    			[out] policy_handle *alias_handle);
    
    	[op(0x21)]
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/dcerpc/msrpc/samrTest.java

                // Then: Should create sam instance
                assertNotNull(message.sam);
                assertEquals(10, message.resume_handle);
                assertEquals(0, message.num_entries); // num_entries comes from the 5th dec_ndr_long call
                assertEquals(0, message.retval);
            }
    
            @Test
            @DisplayName("Should handle zero sam pointer correctly")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/msrpc/samr.idl

    	[op(0x0f)]
    	int SamrEnumerateAliasesInDomain([in] policy_handle *domain_handle,
    			[in,out] uint32_t *resume_handle,
    			[in] uint32_t acct_flags,
    			[out,unique] SamrSamArray *sam,
    			[out] uint32_t num_entries);
    
    	[op(0x1b)]
    	int SamrOpenAlias([in] policy_handle *domain_handle,
    			[in] uint32_t access_mask,
    			[in] uint32_t rid,
    			[out] policy_handle *alias_handle);
    
    	[op(0x21)]
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  10. okhttp-logging-interceptor/api/logging-interceptor.api

    	public static final field HEADERS Lokhttp3/logging/HttpLoggingInterceptor$Level;
    	public static final field NONE Lokhttp3/logging/HttpLoggingInterceptor$Level;
    	public static fun getEntries ()Lkotlin/enums/EnumEntries;
    	public static fun valueOf (Ljava/lang/String;)Lokhttp3/logging/HttpLoggingInterceptor$Level;
    	public static fun values ()[Lokhttp3/logging/HttpLoggingInterceptor$Level;
    }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top