Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DACL (0.07 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	setSecurityDescriptorRMControl(sd, &rmControl)
    }
    
    // DACL returns the security descriptor DACL and whether it was defaulted. The dacl return value may be nil
    // if a DACL exists but is an "empty DACL", meaning fully permissive. If the DACL does not exist, err returns
    // ERROR_OBJECT_NOT_FOUND.
    func (sd *SECURITY_DESCRIPTOR) DACL() (dacl *ACL, defaulted bool, err error) {
    	var present bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResource.java

    
        /**
         * Return an array of Access Control Entry (ACE) objects representing
         * the security descriptor associated with this file or directory.
         * If no DACL is present, null is returned. If the DACL is empty, an array with 0 elements is returned.
         * 
         * @param resolveSids
         *            Attempt to resolve the SIDs within each ACE form
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	var _p0 *uint16
    	_p0, ret = syscall.UTF16PtrFromString(objectName)
    	if ret != nil {
    		return
    	}
    	return _getNamedSecurityInfo(_p0, objectType, securityInformation, owner, group, dacl, sacl, sd)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

                }
            }
        }
    /**
     * Return an array of Access Control Entry (ACE) objects representing
     * the security descriptor associated with this file or directory.
     * If no DACL is present, null is returned. If the DACL is empty, an array with 0 elements is returned.
     * @param resolveSids Attempt to resolve the SIDs within each ACE form
     * their numeric representation to their corresponding account names.
     */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top