/aosp12/frameworks/base/core/java/android/printservice/ |
H A D | PrintServiceInfo.java | 53 public final class PrintServiceInfo implements Parcelable { class 55 private static final String LOG_TAG = PrintServiceInfo.class.getSimpleName(); 76 public PrintServiceInfo(Parcel parcel) { in PrintServiceInfo() method in PrintServiceInfo 95 public PrintServiceInfo(ResolveInfo resolveInfo, String settingsActivityName, in PrintServiceInfo() method in PrintServiceInfo 176 return new PrintServiceInfo(resolveInfo, settingsActivityName, in create() 306 PrintServiceInfo other = (PrintServiceInfo) obj; in equals() 334 new Parcelable.Creator<PrintServiceInfo>() { 336 public PrintServiceInfo createFromParcel(Parcel parcel) { 337 return new PrintServiceInfo(parcel); 341 public PrintServiceInfo[] newArray(int size) { [all …]
|
H A D | PrintServiceInfo.aidl | 19 parcelable PrintServiceInfo;
|
/aosp12/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/ |
H A D | AddPrinterActivity.java | 38 import android.printservice.PrintServiceInfo; 165 LoaderManager.LoaderCallbacks<List<PrintServiceInfo>> { 189 public void onLoadFinished(Loader<List<PrintServiceInfo>> loader, in onLoadFinished() 190 List<PrintServiceInfo> data) { in onLoadFinished() 210 public void onLoaderReset(Loader<List<PrintServiceInfo>> loader) { in onLoaderReset() 423 private @NonNull List<PrintServiceInfo> mServices; 437 void updateData(@Nullable List<PrintServiceInfo> services) { in updateData() 513 private Intent getAddPrinterIntent(@NonNull PrintServiceInfo service) { in getAddPrinterIntent() 553 PrintServiceInfo service = (PrintServiceInfo) getItem(position); in getView() 601 PrintServiceInfo service = (PrintServiceInfo) getItem(position); in getView() [all …]
|
H A D | SelectPrinterActivity.java | 39 import android.printservice.PrintServiceInfo; 76 LoaderManager.LoaderCallbacks<List<PrintServiceInfo>> { 101 private ArrayMap<ComponentName, PrintServiceInfo> mEnabledPrintServices; 188 List<PrintServiceInfo> allServices = in onCreate() 443 public Loader<List<PrintServiceInfo>> onCreateLoader(int id, Bundle args) { in onCreateLoader() 449 public void onLoadFinished(Loader<List<PrintServiceInfo>> loader, in onLoadFinished() 450 List<PrintServiceInfo> services) { in onLoadFinished() 456 PrintServiceInfo service = services.get(i); in onLoadFinished() 466 public void onLoaderReset(Loader<List<PrintServiceInfo>> loader) { in onLoaderReset() 677 PrintServiceInfo service = mEnabledPrintServices.get(printer.getId().getServiceName());
|
H A D | FusedPrintersProvider.java | 43 import android.printservice.PrintServiceInfo; 509 LoaderManager.LoaderCallbacks<List<PrintServiceInfo>> { 537 private @NonNull List<PrintServiceInfo> mEnabledServices; 571 public Loader<List<PrintServiceInfo>> onCreateLoader(int id, Bundle args) { in onCreateLoader() 578 public void onLoadFinished(Loader<List<PrintServiceInfo>> loader, in onLoadFinished() 579 List<PrintServiceInfo> services) { in onLoadFinished() 591 public void onLoaderReset(Loader<List<PrintServiceInfo>> loader) { in onLoaderReset()
|
H A D | PrintActivity.java | 63 import android.printservice.PrintServiceInfo; 127 LoaderManager.LoaderCallbacks<List<PrintServiceInfo>> { 1435 public Loader<List<PrintServiceInfo>> onCreateLoader(int id, Bundle args) { in onCreateLoader() 1441 public void onLoadFinished(Loader<List<PrintServiceInfo>> loader, in onLoadFinished() 1442 List<PrintServiceInfo> services) { in onLoadFinished() 1447 PrintServiceInfo service = services.get(i); in onLoadFinished() 1481 public void onLoaderReset(Loader<List<PrintServiceInfo>> loader) { in onLoaderReset()
|
/aosp12/packages/apps/Settings/src/com/android/settings/print/ |
H A D | SettingsPrintServicesLoader.java | 23 import android.printservice.PrintServiceInfo; 34 public class SettingsPrintServicesLoader extends Loader<List<PrintServiceInfo>> { 44 public void deliverResult(List<PrintServiceInfo> data) { in SettingsPrintServicesLoader()
|
H A D | PrintSettingsFragment.java | 36 import android.printservice.PrintServiceInfo; 163 private final class PrintServicesController implements LoaderCallbacks<List<PrintServiceInfo>> { 165 public Loader<List<PrintServiceInfo>> onCreateLoader(int id, Bundle args) { in onCreateLoader() 177 public void onLoadFinished(Loader<List<PrintServiceInfo>> loader, in onLoadFinished() 178 List<PrintServiceInfo> services) { in onLoadFinished() 194 for (PrintServiceInfo service : services) { in onLoadFinished() 232 public void onLoaderReset(Loader<List<PrintServiceInfo>> loader) { in onLoaderReset()
|
H A D | PrintServiceSettingsFragment.java | 33 import android.printservice.PrintServiceInfo; 75 LoaderManager.LoaderCallbacks<List<PrintServiceInfo>> { 275 public Loader<List<PrintServiceInfo>> onCreateLoader(int id, Bundle args) { in onCreateLoader() 282 public void onLoadFinished(Loader<List<PrintServiceInfo>> loader, in onLoadFinished() 283 List<PrintServiceInfo> services) { in onLoadFinished() 284 PrintServiceInfo service = null; in onLoadFinished() 345 public void onLoaderReset(Loader<List<PrintServiceInfo>> loader) { in onLoaderReset()
|
H A D | PrintSettingPreferenceController.java | 26 import android.printservice.PrintServiceInfo; 116 final List<PrintServiceInfo> services = in getSummary()
|
/aosp12/frameworks/base/core/java/android/print/ |
H A D | PrintServicesLoader.java | 24 import android.printservice.PrintServiceInfo; 35 public class PrintServicesLoader extends Loader<List<PrintServiceInfo>> { 121 deliverResult((List<PrintServiceInfo>) msg.obj); in handleMessage()
|
H A D | IPrintManager.aidl | 32 import android.printservice.PrintServiceInfo; 82 List<PrintServiceInfo> getPrintServices(int selectionFlags, int userId); in getPrintServices()
|
H A D | PrintManager.java | 44 import android.printservice.PrintServiceInfo; 640 public @NonNull List<PrintServiceInfo> getPrintServices(int selectionFlags) { in getPrintServices() 644 List<PrintServiceInfo> services = mService.getPrintServices(selectionFlags, mUserId); in getPrintServices()
|
/aosp12/packages/services/BuiltInPrintService/src/com/android/bips/ |
H A D | LocalDiscoverySession.java | 23 import android.printservice.PrintServiceInfo; 342 List<PrintServiceInfo> infos = mPrintManager.getPrintServices( in onPrintServicesChanged() 347 PrintServiceInfo info = infos.get(i); in onPrintServicesChanged()
|
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/print/ |
H A D | PrintSettingsPreferenceControllerTest.java | 39 import android.printservice.PrintServiceInfo; 128 final List<PrintServiceInfo> printServices = mock(List.class); in updateState_shouldSetSummaryToNumberOfPrintServices()
|
/aosp12/frameworks/base/services/print/java/com/android/server/print/ |
H A D | UserState.java | 63 import android.printservice.PrintServiceInfo; 123 private final List<PrintServiceInfo> mInstalledServices = 124 new ArrayList<PrintServiceInfo>(); 378 public @Nullable List<PrintServiceInfo> getPrintServices(int selectionFlags) { in getPrintServices() 380 List<PrintServiceInfo> selectedServices = null; in getPrintServices() 383 PrintServiceInfo installedService = mInstalledServices.get(i); in getPrintServices() 420 PrintServiceInfo service = mInstalledServices.get(i); in setPrintServiceEnabled() 823 PrintServiceInfo installedService = mInstalledServices.get(i); in dump() 880 Set<PrintServiceInfo> tempPrintServices = new HashSet<PrintServiceInfo>(); in readInstalledPrintServicesLocked() 905 tempPrintServices.add(PrintServiceInfo.create(mContext, installedService)); in readInstalledPrintServicesLocked()
|
H A D | PrintManagerService.java | 57 import android.printservice.PrintServiceInfo; 315 public List<PrintServiceInfo> getPrintServices(int selectionFlags, int userId) { in getPrintServices() 847 List<PrintServiceInfo> installedServices = userState in registerBroadcastReceivers() 916 List<PrintServiceInfo> enabledServices = userState in registerBroadcastReceivers() 922 Iterator<PrintServiceInfo> iterator = enabledServices.iterator(); in registerBroadcastReceivers()
|
/aosp12/frameworks/base/boot/ |
H A D | preloaded-classes | 5891 android.printservice.PrintServiceInfo$1 5892 android.printservice.PrintServiceInfo
|
H A D | boot-image-profile.txt | 29276 Landroid/printservice/PrintServiceInfo$1; 29277 Landroid/printservice/PrintServiceInfo;
|
/aosp12/frameworks/base/config/ |
H A D | preloaded-classes | 5889 android.printservice.PrintServiceInfo$1 5890 android.printservice.PrintServiceInfo
|
H A D | boot-image-profile.txt | 38913 Landroid/printservice/PrintServiceInfo$1; 38914 Landroid/printservice/PrintServiceInfo;
|
/aosp12/frameworks/base/core/api/ |
H A D | system-current.txt | 8999 …ion.READ_PRINT_SERVICES) public java.util.List<android.printservice.PrintServiceInfo> getPrintServ… 9017 public final class PrintServiceInfo implements android.os.Parcelable { 9021 …l public static final android.os.Parcelable.Creator<android.printservice.PrintServiceInfo> CREATOR;
|
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 44718 Landroid/printservice/PrintServiceInfo;-><init>(Landroid/os/Parcel;)V 44719 …d/printservice/PrintServiceInfo;->create(Landroid/content/Context;Landroid/content/pm/ResolveInfo;… 44722 Landroid/printservice/PrintServiceInfo;->getId()Ljava/lang/String; 44724 Landroid/printservice/PrintServiceInfo;->getSettingsActivityName()Ljava/lang/String; 44725 Landroid/printservice/PrintServiceInfo;->isEnabled()Z 44726 Landroid/printservice/PrintServiceInfo;->LOG_TAG:Ljava/lang/String; 44729 Landroid/printservice/PrintServiceInfo;->mId:Ljava/lang/String; 44730 Landroid/printservice/PrintServiceInfo;->mIsEnabled:Z 44732 Landroid/printservice/PrintServiceInfo;->mSettingsActivityName:Ljava/lang/String; 44733 Landroid/printservice/PrintServiceInfo;->setIsEnabled(Z)V [all …]
|
/aosp12/frameworks/base/services/ |
H A D | art-profile | 36770 …List;Ljava/util/ArrayList;]Landroid/printservice/PrintServiceInfo;Landroid/printservice/PrintServi… 36772 …r;Landroid/os/UserManager;]Landroid/printservice/PrintServiceInfo;Landroid/printservice/PrintServi… 37166 …List;Ljava/util/ArrayList;]Landroid/printservice/PrintServiceInfo;Landroid/printservice/PrintServi…
|