Home | History | Annotate | Download | only in app

Lines Matching refs:intent

25 import android.content.Intent;
65 Intent intent = new Intent(ActivityManager.ACTION_REPORT_HEAP_LIMIT);
66 intent.setPackage(directLaunch);
68 intent.setClipData(clip);
69 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
70 intent.setType(clip.getDescription().getMimeType(0));
71 intent.putExtra(Intent.EXTRA_STREAM, JAVA_URI);
73 startActivity(intent);
93 sendBroadcast(new Intent(ACTION_DELETE_DUMPHEAP));
102 Intent intent = new Intent(Intent.ACTION_SEND);
104 intent.setClipData(clip);
105 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
106 intent.setType(clip.getDescription().getMimeType(0));
107 intent.putExtra(Intent.EXTRA_STREAM, JAVA_URI);
108 startActivity(Intent.createChooser(intent,
117 Intent broadcast = new Intent(ACTION_DELETE_DUMPHEAP);
127 sendBroadcast(new Intent(ACTION_DELETE_DUMPHEAP));