Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for func (0.14 sec)

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

            }
    
            try {
                pipe = (SmbNamedPipe)file;
                file.open(SmbFile.O_EXCL, pipe.pipeType & 0xFF0000, SmbFile.ATTR_NORMAL, 0 );
        
                req = new TransPeekNamedPipe( file.unc, file.fid );
                resp = new TransPeekNamedPipeResponse( pipe );
        
                pipe.send( req, resp );
                if( resp.status == TransPeekNamedPipeResponse.STATUS_DISCONNECTED ||
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResourceLocator.java

         * the original.
         *
         * @return The canonicalized URL of this SMB resource.
         */
        String getCanonicalURL ();
    
    
        /**
         * @return The canonicalized UNC path of this SMB resource (relative to it's share)
         */
        String getUNCPath ();
    
    
        /**
         * @return The canonicalized URL path (relative to the server/domain)
         */
        String getURLPath ();
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeImpl.java

                        if ( log.isDebugEnabled() ) {
                            log.debug("treeConnect: unc=" + unc + ",service=" + svc);
                        }
    
                        if ( transport.isSMB2() ) {
                            Smb2TreeConnectRequest req = new Smb2TreeConnectRequest(sess.getConfig(), unc);
                            if ( andx != null ) {
                                req.chain((ServerMessageBlock2) andx);
    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)
  4. src/main/java/jcifs/smb/SmbFile.java

         */
    
        public String getPath () {
            return this.fileLocator.getPath();
        }
    
    
        /**
         * Returns the Windows UNC style path with backslashes instead of forward slashes.
         *
         * @return The UNC path.
         */
        public String getCanonicalUncPath () {
            return this.fileLocator.getCanonicalURL();
        }
    
    
        /**
    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)
  5. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

                log.debug("Remaining '" + dunc + "'");
            }
    
            if ( dunc.equals("") || dunc.equals("\\") ) {
                dunc = "\\";
                this.type = SmbConstants.TYPE_SHARE;
            }
            if ( !dr.getPath().isEmpty() ) {
                dunc = "\\" + dr.getPath() + dunc;
            }
    
            if ( dunc.charAt(0) != '\\' ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFileHandleImpl.java

        public SmbFileHandleImpl ( Configuration cfg, byte[] fid, SmbTreeHandleImpl tree, String unc, int flags, int access, int attrs, int options,
                long initialSize ) {
            this.cfg = cfg;
            this.fileId = fid;
            this.initialSize = initialSize;
            this.fid = 0;
            this.unc = unc;
            this.flags = flags;
            this.access = access;
            this.attrs = attrs;
            this.options = options;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTreeConnection.java

                            }
                            String dunc = loc.handleDFSReferral(dr, rpath);
                            if ( request != null ) {
                                request.setPath(dunc);
                            }
                            return loc;
                        }
    
                        // fallthrough to normal handling
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbResourceLocatorInternal.java

         */
        boolean overlaps ( SmbResourceLocator other ) throws CIFSException;
    
    
        /**
         * Internal: for testing only
         * 
         * @param dr
         * @param reqPath
         * @return resolved unc path
         */
        String handleDFSReferral ( DfsReferralData dr, String reqPath );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/RequestWithPath.java

         * @return the server name
         */
        String getServer ();
    
    
        /**
         * 
         * @return the domain name
         */
        String getDomain ();
    
    
        /**
         * 
         * @return the full UNC path
         */
        String getFullUNCPath ();
    
    
        /**
         * @param path
         */
        void setPath ( String path );
    
    
        /**
         * 
         * @param domain
         * @param server
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/DfsReferralData.java

         */
        String getDomain ();
    
    
        /**
         * @return the share this referral points to
         */
        String getShare ();
    
    
        /**
         * @return the number of characters from the unc path that were consumed by this referral
         */
        int getPathConsumed ();
    
    
        /**
         * @return the replacement path for this referal
         */
        String getPath ();
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
Back to top