Home
last modified time | relevance | path

Searched refs:receiverName (Results 1 – 10 of 10) sorted by relevance

/packages/apps/TV/src/com/android/tv/util/
DPartner.java90 private Partner(String packageName, String receiverName, Resources res) { in Partner() argument
92 mReceiverName = receiverName; in Partner()
103 final String receiverName = info.activityInfo.name; in getInstance() local
106 sPartner = new Partner(packageName, receiverName, res); in getInstance()
/packages/apps/Car/Provision/src/com/android/car/provision/
DDpcInfo.java35 String receiverName, String checkSum, String downloadUrl) { in DpcInfo() argument
38 this.mReceiverName = Objects.requireNonNull(receiverName, "receiverName cannot be null"); in DpcInfo()
DDefaultActivity.java229 String receiverName = null; in addDpc() local
246 receiverName = args[++i]; in addDpc()
265 DpcInfo dpc = new DpcInfo(name, packageName, legacyActivityName, receiverName, checkSum, in addDpc()
/packages/inputmethods/LatinIME/tools/EditTextVariations/src/com/android/inputmethod/tools/edittextvariations/
DInstanceMethod.java31 final String receiverName, final String methodName) { in InstanceMethod() argument
36 this.className = receiverName; in InstanceMethod()
/packages/apps/Provision/src/com/android/provision/
DDpcInfo.java58 private DpcInfo(String packageName, String receiverName, String checkSum, String downloadUrl, in DpcInfo() argument
62 this.mReceiverName = Objects.requireNonNull(receiverName, in DpcInfo()
/packages/modules/Connectivity/tests/cts/hostside/app/src/com/android/cts/net/hostside/
DMyServiceClient.java84 public int getCounters(String receiverName, String action) throws RemoteException { in getCounters() argument
85 return mService.getCounters(receiverName, action); in getCounters()
DAbstractRestrictBackgroundNetworkTestCase.java203 protected void assertRestrictBackgroundChangedReceived(String receiverName, int expectedCount) in assertRestrictBackgroundChangedReceived() argument
210 count = getNumberBroadcastsReceived(receiverName, ACTION_RESTRICT_BACKGROUND_CHANGED); in assertRestrictBackgroundChangedReceived()
221 assertEquals("Number of expected broadcasts for " + receiverName + " not reached after " in assertRestrictBackgroundChangedReceived()
258 protected int getNumberBroadcastsReceived(String receiverName, String action) throws Exception { in getNumberBroadcastsReceived() argument
259 return mServiceClient.getCounters(receiverName, action); in getNumberBroadcastsReceived()
/packages/modules/Connectivity/tests/cts/hostside/app2/src/com/android/cts/net/hostside/app2/
DMyBroadcastReceiver.java112 static int getCounter(Context context, String action, String receiverName) { in getCounter() argument
113 final SharedPreferences prefs = context.getSharedPreferences(receiverName, in getCounter()
116 Log.d(TAG, "getCounter('" + action + "', '" + receiverName + "'): " + value); in getCounter()
DMyService.java76 public int getCounters(String receiverName, String action) {
77 return MyBroadcastReceiver.getCounter(getApplicationContext(), action, receiverName);
/packages/modules/Connectivity/tests/cts/hostside/aidl/com/android/cts/net/hostside/
DIMyService.aidl25 int getCounters(String receiverName, String action); in getCounters() argument