OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bcast
(Results
1 - 24
of
24
) sorted by null
/packages/apps/Protips/src/com/android/protips/
ProtipWidget.java
169
Intent
bcast
= new Intent(context, ProtipWidget.class);
local
170
bcast
.setAction(ACTION_NEXT_TIP);
172
context, 0,
bcast
, PendingIntent.FLAG_UPDATE_CURRENT);
176
bcast
= new Intent(context, ProtipWidget.class);
177
bcast
.setAction(ACTION_POKE);
178
bcast
.putExtra(EXTRA_TIMES, 1);
180
context, 0,
bcast
, PendingIntent.FLAG_UPDATE_CURRENT);
/dalvik/vm/
Ddm.c
192
Method*
bcast
;
local
200
bcast
= dvmFindDirectMethodByDescriptor(ddmServerClass, "broadcast", "(I)V");
201
if (
bcast
== NULL) {
214
dvmCallMethod(self,
bcast
, NULL, &unused, event);