Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for FreeSid (0.14 sec)

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

    //sys	isWellKnownSid(sid *SID, sidType WELL_KNOWN_SID_TYPE) (isWellKnown bool) = advapi32.IsWellKnownSid
    //sys	FreeSid(sid *SID) (err error) [failretval!=0] = advapi32.FreeSid
    //sys	EqualSid(sid1 *SID, sid2 *SID) (isEqual bool) = advapi32.EqualSid
    //sys	getSidIdentifierAuthority(sid *SID) (authority *SidIdentifierAuthority) = advapi32.GetSidIdentifierAuthority
    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/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procEqualSid                                             = modadvapi32.NewProc("EqualSid")
    	procFreeSid                                              = modadvapi32.NewProc("FreeSid")
    	procGetLengthSid                                         = modadvapi32.NewProc("GetLengthSid")
    	procGetNamedSecurityInfoW                                = modadvapi32.NewProc("GetNamedSecurityInfoW")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        }
    
    
        /**
         * @return the treeId
         */
        public final int getTreeId () {
            return this.treeId;
        }
    
    
        /**
         * @param treeId
         *            the treeId to set
         */
        public final void setTreeId ( int treeId ) {
            this.treeId = treeId;
            if ( this.next != null ) {
                this.next.setTreeId(treeId);
            }
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/util/SMBUtil.java

            (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, // Reserved / AsyncId
            (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, // TreeId / AsyncId
            (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, // SessionId
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTreeImpl.java

         */
        private void treeConnected ( SmbTransportImpl transport, SmbSessionImpl sess, TreeConnectResponse response ) throws CIFSException {
            if ( !response.isValidTid() ) {
                throw new SmbException("TreeID is invalid");
            }
            this.tid = response.getTid();
            String rsvc = response.getService();
            if ( rsvc == null && !transport.isSMB2() ) {
                throw new SmbException("Service is NULL");
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
Back to top