Home | History | Annotate | Download | only in data

Lines Matching refs:jc

79     private void openFileOrDownloadTempFile(JobContext jc) {
80 int state = openOrDownloadInner(jc);
93 private int openOrDownloadInner(JobContext jc) {
107 if (jc.isCancelled()) return STATE_INIT;
116 mCacheEntry = mApplication.getDownloadCache().download(jc, url);
117 if (jc.isCancelled()) return STATE_INIT;
137 private boolean prepareInputFile(JobContext jc) {
138 jc.setCancelListener(new CancelListener() {
149 if (jc.isCancelled()) return false;
167 openFileOrDownloadTempFile(jc);
173 public BitmapRegionDecoder run(JobContext jc) {
174 if (!prepareInputFile(jc)) return null;
176 jc, mFileDescriptor.getFileDescriptor(), false);
191 public Bitmap run(JobContext jc) {
192 if (!prepareInputFile(jc)) return null;
196 Bitmap bitmap = DecodeUtils.decodeThumbnail(jc,
199 if (jc.isCancelled() || bitmap == null) {