Lines Matching refs:path

95                 String path = sUrl.substring(0, sUrl.lastIndexOf(separator) );  in getInputStream()  local
98 … LogUtils.DEBUG("getInputStream, load of file from another file eg. " + file + " from " + path ); in getInputStream()
99 return getUCBStream(file, path); in getInputStream()
109 String path = sUrl.substring(0, sUrl.lastIndexOf(separator)); in getOutputStream() local
113 if ( m_xSimpleFileAccess.isReadOnly( path ) ) in getOutputStream()
118 LogUtils.DEBUG("getOutputStream, create o/p stream for file eg. " + path ); in getOutputStream()
121 XOutputStream xos = m_xSimpleFileAccess.openFileWrite( path ); in getOutputStream()
149 private InputStream getUCBStream(String file, String path) in getUCBStream() argument
156 if (path.endsWith(".jar")) { in getUCBStream()
157 is = (InputStream)m_jarStreamMap.get(path); in getUCBStream()
160 is = getFileStreamFromUCB(path); in getUCBStream()
161 m_jarStreamMap.put(path, is); in getUCBStream()
169 is = getFileStreamFromUCB(path); in getUCBStream()
170 m_jarStreamMap.put(path, is); in getUCBStream()
177 String fileUrl = PathUtils.make_url(path,file); in getUCBStream()
214 private InputStream getFileStreamFromUCB(String path) in getFileStreamFromUCB() argument
221 LogUtils.DEBUG("Trying to read from " + path ); in getFileStreamFromUCB()
222 xInputStream = m_xSimpleFileAccess.openFileRead(path); in getFileStreamFromUCB()
227 int sz = m_xSimpleFileAccess.getSize(path); in getFileStreamFromUCB()
237 LogUtils.DEBUG("size of file " + path + " is " + sz ); in getFileStreamFromUCB()