Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Si (0.2 sec)

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

         *
         * 
         * @param src
         * @param si
         */
        public SID ( byte[] src, int si ) {
            this.revision = src[ si++ ];
            this.sub_authority_count = src[ si++ ];
            this.identifier_authority = new byte[6];
            System.arraycopy(src, si, this.identifier_authority, 0, 6);
            si += 6;
            if ( this.sub_authority_count > 100 )
    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

            ArrayList list = new ArrayList(sids.length);
            int si;
    
    synchronized (sid_cache) {
            for (si = 0; si < length; si++) {
                SID sid = (SID)sid_cache.get(sids[offset + si]);
                if (sid != null) {
                    sids[offset + si].type = sid.type;
                    sids[offset + si].domainName = sid.domainName;
                    sids[offset + si].acctName = sid.acctName;
                } else {
    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