Home
last modified time | relevance | path

Searched refs:bcast (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/apps/Protips/src/com/android/protips/
H A DProtipWidget.java148 final Intent bcast = new Intent(context, ProtipWidget.class); in onReceiveAsync() local
149 bcast.setAction(ACTION_POKE); in onReceiveAsync()
150 bcast.putExtra(EXTRA_TIMES, 3); in onReceiveAsync()
151 mContext.sendBroadcast(bcast); in onReceiveAsync()
196 Intent bcast = new Intent(context, ProtipWidget.class); in buildUpdate() local
197 bcast.setAction(ACTION_NEXT_TIP); in buildUpdate()
199 context, 0, bcast, PendingIntent.FLAG_UPDATE_CURRENT); in buildUpdate()
203 bcast = new Intent(context, ProtipWidget.class); in buildUpdate()
204 bcast.setAction(ACTION_POKE); in buildUpdate()
205 bcast.putExtra(EXTRA_TIMES, 1); in buildUpdate()
[all …]
/aosp12/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
H A DTethering.java991 final Intent bcast = new Intent(ACTION_TETHER_STATE_CHANGED); in buildStateChangeIntent() local
992 bcast.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING); in buildStateChangeIntent()
994 bcast.putStringArrayListExtra(EXTRA_AVAILABLE_TETHER, toIfaces(available)); in buildStateChangeIntent()
995 bcast.putStringArrayListExtra(EXTRA_ACTIVE_LOCAL_ONLY, toIfaces(localOnly)); in buildStateChangeIntent()
996 bcast.putStringArrayListExtra(EXTRA_ACTIVE_TETHER, toIfaces(tethered)); in buildStateChangeIntent()
997 bcast.putStringArrayListExtra(EXTRA_ERRORED_TETHER, toIfaces(errored)); in buildStateChangeIntent()
999 return bcast; in buildStateChangeIntent()
/aosp12/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
H A DTetheringTest.java800 final Intent bcast = mIntents.get(0); in verifyTetheringBroadcast() local
801 assertEquals(ACTION_TETHER_STATE_CHANGED, bcast.getAction()); in verifyTetheringBroadcast()
802 final ArrayList<String> ifnames = bcast.getStringArrayListExtra(whichExtra); in verifyTetheringBroadcast()
804 mIntents.remove(bcast); in verifyTetheringBroadcast()