Home | History | Annotate | Download | only in ddmlib

Lines Matching refs:fls

340         FileListingService fls = new FileListingService(mDevice);
343 int total = getTotalRemoteFileSize(entries, fls);
348 SyncResult result = doPull(entries, localPath, fls, monitor);
460 * @param fls
463 private int getTotalRemoteFileSize(FileEntry[] entries, FileListingService fls) {
469 FileEntry[] children = fls.getChildren(e, false, null);
470 count += getTotalRemoteFileSize(children, fls) + 1;