HomeSort by relevance Sort by last modified time
    Searched refs:ProgressSource (Results 1 - 6 of 6) sorted by null

  /libcore/ojluni/src/main/java/sun/net/
ProgressEvent.java 48 private ProgressSource.State state;
53 public ProgressEvent(ProgressSource source, URL url, String method, String contentType, ProgressSource.State state, long progress, long expected) {
105 public ProgressSource.State getState() {
ProgressMonitor.java 64 * Return a snapshot of the ProgressSource list
66 public ArrayList<ProgressSource> getProgressSources() {
67 ArrayList<ProgressSource> snapshot = new ArrayList<ProgressSource>();
71 for (Iterator<ProgressSource> iter = progressSourceList.iterator(); iter.hasNext();) {
72 ProgressSource pi = iter.next();
74 // Clone ProgressSource and add to snapshot
75 snapshot.add((ProgressSource)pi.clone());
104 public void registerSource(ProgressSource pi) {
138 public void unregisterSource(ProgressSource pi)
    [all...]
ProgressSource.java 30 * ProgressSource represents the source of progress changes.
34 public class ProgressSource
62 public ProgressSource(URL url, String method) {
69 public ProgressSource(URL url, String method, long expected) {
  /libcore/ojluni/src/main/java/sun/net/www/
MeteredStream.java 31 import sun.net.ProgressSource;
45 protected ProgressSource pi;
47 public MeteredStream(InputStream is, ProgressSource pi, long expected)
  /libcore/ojluni/src/main/java/sun/net/www/protocol/file/
FileURLConnection.java 95 ProgressSource pi = new ProgressSource(url, "GET", file.length());
  /libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
FtpURLConnection.java 57 import sun.net.ProgressSource;
478 ProgressSource pi = null;
481 pi = new ProgressSource(url, "GET", l);

Completed in 147 milliseconds