Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for desiredAccess (0.06 sec)

  1. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

            this.smbCreateFlags = smbCreateFlags;
        }
    
        /**
         * Set the desired access mask for the file
         * @param desiredAccess the desiredAccess to set
         */
        public void setDesiredAccess(final int desiredAccess) {
            this.desiredAccess = desiredAccess;
        }
    
        /**
         * Set the file attributes for the created file
         * @param fileAttributes the fileAttributes to set
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

            // Check default desired access (0x00120089) at offset 24
            int desiredAccess = (buffer[24] & 0xFF) | ((buffer[25] & 0xFF) << 8) | ((buffer[26] & 0xFF) << 16) | ((buffer[27] & 0xFF) << 24);
            assertEquals(0x00120089, desiredAccess);
    
            // Check default share access (READ | WRITE) at offset 32
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

            public LsarOpenPolicy2(final String system_name, final LsarObjectAttributes object_attributes, final int desired_access,
                    final rpc.policy_handle policy_handle) {
                this.system_name = system_name;
                this.object_attributes = object_attributes;
                this.desired_access = desired_access;
                this.policy_handle = policy_handle;
            }
    
            @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

            public LsarOpenPolicy2(final String system_name, final LsarObjectAttributes object_attributes, final int desired_access,
                    final rpc.policy_handle policy_handle) {
                this.system_name = system_name;
                this.object_attributes = object_attributes;
                this.desired_access = desired_access;
                this.policy_handle = policy_handle;
            }
    
            @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 42.5K bytes
    - Viewed (0)
Back to top