Searched refs:receiverName (Results 1 – 10 of 10) sorted by relevance
/packages/apps/TV/src/com/android/tv/util/ |
D | Partner.java | 90 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/ |
D | DpcInfo.java | 35 String receiverName, String checkSum, String downloadUrl) { in DpcInfo() argument 38 this.mReceiverName = Objects.requireNonNull(receiverName, "receiverName cannot be null"); in DpcInfo()
|
D | DefaultActivity.java | 229 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/ |
D | InstanceMethod.java | 31 final String receiverName, final String methodName) { in InstanceMethod() argument 36 this.className = receiverName; in InstanceMethod()
|
/packages/apps/Provision/src/com/android/provision/ |
D | DpcInfo.java | 58 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/ |
D | MyServiceClient.java | 84 public int getCounters(String receiverName, String action) throws RemoteException { in getCounters() argument 85 return mService.getCounters(receiverName, action); in getCounters()
|
D | AbstractRestrictBackgroundNetworkTestCase.java | 203 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/ |
D | MyBroadcastReceiver.java | 112 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()
|
D | MyService.java | 76 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/ |
D | IMyService.aidl | 25 int getCounters(String receiverName, String action); in getCounters() argument
|