OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ProcessingService
(Results
1 - 8
of
8
) sorted by null
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
ProcessingService.java
40
public class
ProcessingService
extends Service {
41
private static final String LOGTAG = "
ProcessingService
";
138
public
ProcessingService
getService() {
139
return
ProcessingService
.this;
146
Intent processIntent = new Intent(context,
ProcessingService
.class);
147
processIntent.putExtra(
ProcessingService
.SOURCE_URI,
149
processIntent.putExtra(
ProcessingService
.SELECTED_URI,
151
processIntent.putExtra(
ProcessingService
.QUALITY, quality);
152
processIntent.putExtra(
ProcessingService
.SIZE_FACTOR, sizeFactor);
154
processIntent.putExtra(
ProcessingService
.DESTINATION_FILE, destination.toString())
[
all
...]
ImageSavingTask.java
30
private
ProcessingService
mProcessingService;
63
public ImageSavingTask(
ProcessingService
service) {
RenderingRequest.java
117
ProcessingService
service = activity.getProcessingService();
/packages/apps/Camera2/src/com/android/camera/processing/
ProcessingServiceManager.java
33
* Clients should only use this class and not the {@link
ProcessingService
}
159
mAppContext.startService(new Intent(mAppContext,
ProcessingService
.class));
ProcessingService.java
48
* The service is meant to be called via {@code
ProcessingService
.addTask},
55
*
ProcessingService
.addTask(task);
59
public class
ProcessingService
extends Service implements ProgressListener {
67
ProcessingService
.this.pause();
69
ProcessingService
.this.resume();
74
private static final Log.Tag TAG = new Log.Tag("
ProcessingService
");
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
ExportDialog.java
39
import com.android.gallery3d.filtershow.pipeline.
ProcessingService
;
162
Intent processIntent =
ProcessingService
.getSaveIntent(activity, MasterImage
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java
111
import com.android.gallery3d.filtershow.pipeline.
ProcessingService
;
192
private
ProcessingService
mBoundService;
199
public
ProcessingService
getProcessingService() {
217
mBoundService = ((
ProcessingService
.LocalBinder)service).getService();
241
bindService(new Intent(FilterShowActivity.this,
ProcessingService
.class),
[
all
...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
SaveImage.java
43
import com.android.gallery3d.filtershow.pipeline.
ProcessingService
;
543
Intent processIntent =
ProcessingService
.getSaveIntent(filterShowActivity, preset,
Completed in 89 milliseconds