HomeSort by relevance Sort by last modified time
    Searched full:printservice (Results 1 - 25 of 45) sorted by null

1 2

  /packages/experimental/PrintService/res/xml/
printservice.xml 2 android:settingsActivity="foo.bar.printservice.SettingsActivity"
3 android:addPrintersActivity="foo.bar.printservice.AddPrintersActivity"
4 android:advancedPrintOptionsActivity="foo.bar.printservice.CustomPrintOptionsActivity"/>
  /packages/experimental/PrintService/
Android.mk 9 LOCAL_PACKAGE_NAME := PrintService
AndroidManifest.xml 2 package="foo.bar.printservice"
18 <action android:name="android.printservice.PrintService" />
21 android:name="android.printservice"
22 android:resource="@xml/printservice">
  /packages/experimental/PrintService/src/foo/bar/printservice/
AddPrintersActivity.java 1 package foo.bar.printservice;
SettingsActivity.java 1 package foo.bar.printservice;
CustomPrintOptionsActivity.java 1 package foo.bar.printservice;
13 import android.printservice.PrintService;
27 PrintService.EXTRA_PRINT_JOB_INFO);
50 result.putExtra(PrintService.EXTRA_PRINT_JOB_INFO, newPrintJobInfo);
MyPrintService.java 17 package foo.bar.printservice;
35 import android.printservice.PrintJob;
36 import android.printservice.PrintService;
37 import android.printservice.PrinterDiscoverySession;
53 public class MyPrintService extends PrintService {
MyDialogActivity.java 1 package foo.bar.printservice;
  /packages/experimental/PrintService2/
AndroidManifest.xml 18 <action android:name="android.printservice.PrintService" />
21 android:name="android.printservice"
22 android:resource="@xml/printservice">
  /frameworks/base/core/java/android/printservice/
package.html 10 A print service implementation should extend {@link android.printservice.PrintService}
12 managing {@link android.printservice.PrintJob}s.
19 encapsulated by a {@link android.printservice.PrinterDiscoverySession} instance created
PrintJob.java 17 package android.printservice;
57 PrintService.throwIfNotCalledOnMainThread();
72 PrintService.throwIfNotCalledOnMainThread();
94 PrintService.throwIfNotCalledOnMainThread();
108 PrintService.throwIfNotCalledOnMainThread();
123 PrintService.throwIfNotCalledOnMainThread();
138 PrintService.throwIfNotCalledOnMainThread();
151 PrintService.throwIfNotCalledOnMainThread();
164 PrintService.throwIfNotCalledOnMainThread();
177 PrintService.throwIfNotCalledOnMainThread()
    [all...]
PrintServiceInfo.aidl 17 package android.printservice;
IPrintService.aidl 17 package android.printservice;
21 import android.printservice.IPrintServiceClient;
PrintDocument.java 17 package android.printservice;
58 PrintService.throwIfNotCalledOnMainThread();
73 PrintService.throwIfNotCalledOnMainThread();
PrintServiceInfo.java 17 package android.printservice;
39 * This class describes a {@link PrintService}. A print service knows
44 * @see PrintService
112 PrintService.SERVICE_META_DATA);
129 com.android.internal.R.styleable.PrintService);
185 * {@link PrintService#SERVICE_META_DATA meta-data}.</strong>
198 * {@link PrintService#SERVICE_META_DATA meta-data}.</strong>
211 * {@link PrintService#SERVICE_META_DATA meta-data}.</strong>
PrintService.java 17 package android.printservice;
109 * #SERVICE_INTERFACE android.printservice.PrintService}. Failure to declare this intent
120 * &lt;action android:name="android.printservice.PrintService" /&gt;
139 * &lt;action android:name="android.printservice.PrintService" /&gt;
141 * &lt;meta-data android:name="android.printservice" android:resource="@xml/printservice" /&gt;
146 * {@link #SERVICE_META_DATA} and <code>&lt;{@link android.R.styleable#PrintService
    [all...]
IPrintServiceClient.aidl 17 package android.printservice;
PrinterDiscoverySession.java 17 package android.printservice;
142 PrintService.throwIfNotCalledOnMainThread();
165 PrintService.throwIfNotCalledOnMainThread();
229 PrintService.throwIfNotCalledOnMainThread();
438 PrintService.throwIfNotCalledOnMainThread();
462 PrintService.throwIfNotCalledOnMainThread();
475 PrintService.throwIfNotCalledOnMainThread();
  /frameworks/base/core/java/android/print/
IPrintSpoolerClient.aidl 30 void onAllPrintJobsForServiceHandled(in ComponentName printService);
IPrintManager.aidl 27 import android.printservice.PrintServiceInfo;
  /packages/experimental/PrintService2/src/foo/bar/printservice2/
MyPrintService.java 16 import android.printservice.PrintJob;
17 import android.printservice.PrintService;
32 public class MyPrintService extends PrintService {
  /frameworks/base/docs/html/sdk/api_diff/19/changes/
packages_index_additions.html 57 <A HREF="changes-summary.html#android.printservice" class="hiddenlink" target="rightframe"><b>android.printservice</b></A><br>
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
SelectPrinterFragment.java 45 import android.printservice.PrintServiceInfo;
381 PrintServiceInfo printService = printServices.get(i);
382 adapter.add(printService.getResolveInfo().loadLabel(
412 PrintServiceInfo printService = printServices.get(which);
414 printService.getResolveInfo().serviceInfo.packageName,
415 printService.getAddPrintersActivityName());
  /frameworks/base/services/java/com/android/server/print/
UserState.java 50 import android.printservice.PrintServiceInfo;
91 new Intent(android.printservice.PrintService.SERVICE_INTERFACE);
151 public void onAllPrintJobsForServiceHandled(ComponentName printService) {
155 service = mActiveServices.get(printService);
283 RemotePrintService printService = null;
285 printService = mActiveServices.get(printServiceName);
287 if (printService == null) {
290 printService.onRequestCancelPrintJob(printJobInfo);
    [all...]
PrintManagerService.java 46 import android.printservice.PrintServiceInfo;
465 Intent intent = new Intent(android.printservice.PrintService.SERVICE_INTERFACE);

Completed in 643 milliseconds

1 2