Searched defs:serviceName (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/print/
H A DPrinterId.java36 * @param serviceName The managing print service.
41 public PrinterId(ComponentName serviceName, String localId) { argument
42 mServiceName = serviceName;
122 builder.append("serviceName=").append(mServiceName.flattenToString());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DServiceMonitor.java250 private void serviceDisconnected(ComponentName serviceName) { argument
251 if (mDebug) Log.d(mTag, "serviceDisconnected serviceName=" + serviceName
253 if (serviceName.equals(mServiceName)) {
/frameworks/base/services/java/com/android/server/print/
H A DRemotePrintService.java781 private void throwIfPrinterIdsForPrinterInfoTampered(ComponentName serviceName, argument
786 throwIfPrinterIdTampered(serviceName, printerId);
790 private void throwIfPrinterIdsTampered(ComponentName serviceName, argument
795 throwIfPrinterIdTampered(serviceName, printerId);
799 private void throwIfPrinterIdTampered(ComponentName serviceName, PrinterId printerId) { argument
801 || !printerId.getServiceName().equals(serviceName)) {
H A DUserState.java648 ComponentName serviceName = new ComponentName(
652 + serviceName.flattenToShortString()
719 ComponentName serviceName = new ComponentName(
721 if (!mEnabledServices.contains(serviceName)
722 && !enabledOnFirstBoot.contains(serviceName)) {
726 builder.append(serviceName.flattenToString());
767 ComponentName serviceName = new ComponentName(resolveInfo.serviceInfo.packageName,
769 if (mEnabledServices.contains(serviceName)) {
770 if (!mActiveServices.containsKey(serviceName)) {
772 mContext, serviceName, mUserI
803 failActivePrintJobsForService(final ComponentName serviceName) argument
819 failScheduledPrintJobsForServiceInternal(ComponentName serviceName) argument
1274 removePrintersForServiceLocked(ComponentName serviceName) argument
[all...]
/frameworks/base/core/java/android/app/
H A DContextImpl.java292 private static void registerService(String serviceName, ServiceFetcher fetcher) { argument
296 SYSTEM_SERVICE_MAP.put(serviceName, fetcher);
/frameworks/base/services/java/com/android/server/content/
H A DSyncStorageEngine.java165 final ComponentName serviceName; field in class:SyncStorageEngine.PendingOperation
181 this.serviceName = null;
193 this.serviceName = other.serviceName;
/frameworks/base/tools/aapt/
H A DCommand.cpp791 String8 serviceName; local
1279 serviceName = getAttribute(tree, NAME_ATTR, &error);
1300 " service '%s': %s\n", serviceName.string(), error.string());
1330 " meta-data tag in service '%s': %s\n", serviceName.string(), error.string());
1344 " meta-data tag in service '%s': %s\n", serviceName.string(), error.string());
1352 serviceName.string());
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
H A DPrintJobConfigActivity.java1745 ComponentName serviceName = mCurrentPrinter.getId().getServiceName();
1746 String activityName = getAdvancedOptionsActivityName(serviceName);
1751 intent.setComponent(new ComponentName(serviceName.getPackageName(),
2257 ComponentName serviceName = mCurrentPrinter.getId().getServiceName();
2258 if (!TextUtils.isEmpty(getAdvancedOptionsActivityName(serviceName))) {
2306 private String getAdvancedOptionsActivityName(ComponentName serviceName) { argument
2313 if (serviceInfo.name.equals(serviceName.getClassName())
2314 && serviceInfo.packageName.equals(serviceName.getPackageName())) {
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java443 int uid, String serviceName, ServiceState svc, int serviceType, int opCount,
454 pw.print(serviceName);
1520 String serviceName = in.readString();
1521 if (serviceName == null) {
1526 ServiceState serv = hadData ? pkgState.mServices.get(serviceName) : null;
1528 serv = new ServiceState(this, pkgName, serviceName, processName, null);
1534 + serviceName + " " + uid + " " + serv);
1535 pkgState.mServices.put(serviceName, serv);
2209 String serviceName = collapseString(pkgName,
2212 dumpServiceTimeCheckin(pw, "pkgsvc-run", pkgName, uid, serviceName,
442 dumpServiceTimeCheckin(PrintWriter pw, String label, String packageName, int uid, String serviceName, ServiceState svc, int serviceType, int opCount, int curState, long curStartTime, long now) argument
2611 incActiveServices(String serviceName) argument
2624 decActiveServices(String serviceName) argument
2642 incStartedServices(int memFactor, long now, String serviceName) argument
2658 decStartedServices(int memFactor, long now, String serviceName) argument
[all...]

Completed in 340 milliseconds