Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for Info (0.14 sec)

  1. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java

        // information levels
    
        static final int SMB_INFO_STANDARD                 = 1;
        static final int SMB_INFO_QUERY_EA_SIZE            = 2;
        static final int SMB_INFO_QUERY_EAS_FROM_LIST      = 3;
        static final int SMB_FIND_FILE_DIRECTORY_INFO      = 0x101;
        static final int SMB_FIND_FILE_FULL_DIRECTORY_INFO = 0x102;
        static final int SMB_FILE_NAMES_INFO               = 0x103;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

        // information levels
    
        static final int SMB_INFO_STANDARD                 = 1;
        static final int SMB_INFO_QUERY_EA_SIZE            = 2;
        static final int SMB_INFO_QUERY_EAS_FROM_LIST      = 3;
        static final int SMB_FIND_FILE_DIRECTORY_INFO      = 0x101;
        static final int SMB_FIND_FILE_FULL_DIRECTORY_INFO = 0x102;
        static final int SMB_FILE_NAMES_INFO               = 0x103;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

                }
                BasicFileInformation info = response.getInfo(BasicFileInformation.class);
                this.isExists = true;
                if ( info instanceof FileBasicInfo ) {
                    this.attributes = info.getAttributes() & ATTR_GET_MASK;
                    this.createTime = info.getCreateTime();
                    this.lastModified = info.getLastWriteTime();
                    this.lastAccess = info.getLastAccessTime();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

                this.info = info;
                this.totalentries = totalentries;
            }
    
            public void encode_in(NdrBuffer _dst) throws NdrException {
                _dst.enc_ndr_string(dfs_name);
                _dst.enc_ndr_long(level);
                _dst.enc_ndr_long(prefmaxlen);
                _dst.enc_ndr_referent(info, 1);
                if (info != null) {
                    info.encode(_dst);
    
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 15K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

                break;
            case SMB2_CHANGE_NOTIFY:
                c = "SMB2_CHANGE_NOTIFY";
                break;
            case SMB2_QUERY_INFO:
                c = "SMB2_QUERY_INFO";
                break;
            case SMB2_SET_INFO:
                c = "SMB2_SET_INFO";
                break;
            case SMB2_OPLOCK_BREAK:
                c = "SMB2_OPLOCK_BREAK";
                break;
            default:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Sep 30 10:47:31 GMT 2018
    - 19.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeImpl.java

            Smb2NegotiateRequest negoReq = new Smb2NegotiateRequest(sess.getConfig(), trans.getRequestSecurityMode(nego));
    
            log.debug("Sending VALIDATE_NEGOTIATE_INFO");
            Smb2IoctlRequest req = new Smb2IoctlRequest(sess.getConfig(), Smb2IoctlRequest.FSCTL_VALIDATE_NEGOTIATE_INFO);
            req.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL);
            req.setInputData(
                new ValidateNegotiateInfoRequest(
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SID.java

                            (short)lsarpc.POLICY_INFO_ACCOUNT_DOMAIN,
                            info);
                handle.sendrecv(rpc);
                if (rpc.retval != 0)
                    throw new SmbException(rpc.retval, false);
    
                return new SID(info.sid,
                            SID.SID_TYPE_DOMAIN,
                            (new UnicodeString(info.name, false)).toString(),
                            null,
    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)
  8. src/main/java/jcifs/internal/fscc/SmbInfoAllocation.java

         *
         * @see jcifs.internal.fscc.FileSystemInformation#getFileSystemInformationClass()
         */
        @Override
        public byte getFileSystemInformationClass () {
            return FileSystemInformation.SMB_INFO_ALLOCATION;
        }
    
    
        @Override
        public long getCapacity () {
            return this.alloc * this.sectPerAlloc * this.bytesPerSect;
        }
    
    
        @Override
        public long getFree () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/fscc/FileFsFullSizeInformation.java

         * {@inheritDoc}
         *
         * @see jcifs.internal.fscc.FileSystemInformation#getFileSystemInformationClass()
         */
        @Override
        public byte getFileSystemInformationClass () {
            return FS_FULL_SIZE_INFO;
        }
    
    
        @Override
        public long getCapacity () {
            return this.alloc * this.sectPerAlloc * this.bytesPerSect;
        }
    
    
        @Override
        public long getFree () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/fscc/FileRenameInformation2.java

         * {@inheritDoc}
         *
         * @see jcifs.internal.fscc.FileInformation#getFileInformationLevel()
         */
        @Override
        public byte getFileInformationLevel () {
            return FileInformation.FILE_RENAME_INFO;
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (0)
Back to top