Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for init (0.16 sec)

  1. src/main/java/jcifs/smb/SID.java

            this.identifier_authority = new byte[6];
            for ( int i = 5; id > 0; i-- ) {
                this.identifier_authority[ i ] = (byte) ( id % 256 );
                id >>= 8;
            }
    
            this.sub_authority_count = (byte) st.countTokens();
            if ( this.sub_authority_count > 0 ) {
                this.sub_authority = new int[this.sub_authority_count];
                for ( int i = 0; i < this.sub_authority_count; i++ )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SID.java

        public static final int SID_TYPE_USE_NONE = lsarpc.SID_NAME_USE_NONE;
        public static final int SID_TYPE_USER    = lsarpc.SID_NAME_USER;
        public static final int SID_TYPE_DOM_GRP = lsarpc.SID_NAME_DOM_GRP;
        public static final int SID_TYPE_DOMAIN  = lsarpc.SID_NAME_DOMAIN;
        public static final int SID_TYPE_ALIAS   = lsarpc.SID_NAME_ALIAS;
        public static final int SID_TYPE_WKN_GRP = lsarpc.SID_NAME_WKN_GRP;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
Back to top