Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for alloc_hint (0.04 sec)

  1. src/test/java/jcifs/dcerpc/DcerpcMessageTest.java

                        .thenReturn(0); // flags
                when(mockBuffer.dec_ndr_long()).thenReturn(0x00000010) // Data representation
                        .thenReturn(1) // call_id
                        .thenReturn(100) // alloc_hint
                        .thenReturn(0); // From TestDcerpcMessage.decode_out
                when(mockBuffer.dec_ndr_short()).thenReturn(100) // length
                        .thenReturn(0) // auth_value length
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

                        n = max_xmit - 24;
                    } else {
                        msg.flags |= DCERPC_LAST_FRAG;
                        isDirect = false;
                        msg.alloc_hint = n;
                    }
    
                    msg.length = 24 + n;
    
                    if (off > 0) {
                        msg.flags &= ~DCERPC_FIRST_FRAG;
                    }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/DcerpcHandle.java

                    msg.flags &= ~DCERPC_LAST_FRAG;
                    fragSize = this.max_xmit - 24;
                } else {
                    msg.flags |= DCERPC_LAST_FRAG;
                    msg.alloc_hint = fragSize;
                }
    
                msg.length = 24 + fragSize;
    
                if (off > 0) {
                    msg.flags &= ~DCERPC_FIRST_FRAG;
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.9K bytes
    - Viewed (0)
Back to top