/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/ |
VoiceInputLogger.java | 78 mContext.sendBroadcast(i); 85 mContext.sendBroadcast(newLoggingBroadcast( 91 mContext.sendBroadcast(newLoggingBroadcast( 97 mContext.sendBroadcast(newLoggingBroadcast( 103 mContext.sendBroadcast(newLoggingBroadcast( 109 mContext.sendBroadcast(newLoggingBroadcast( 115 mContext.sendBroadcast(newLoggingBroadcast( 121 mContext.sendBroadcast(newLoggingBroadcast( 127 mContext.sendBroadcast(newLoggingBroadcast( 133 mContext.sendBroadcast(newLoggingBroadcast(LoggingEvents.VoiceIme.SWIPE_HINT_DISPLAYED)) [all...] |
/cts/tests/tests/permission/src/android/permission/cts/ |
NoBroadcastPackageRemovedPermissionTest.java | 55 * Verify that Context#sendBroadcast(Intent), 56 * Context#sendBroadcast(Intent, String) 67 mContext.sendBroadcast(createIntent(Intent.ACTION_PACKAGE_REMOVED)); 68 fail("Context.sendBroadcast did not throw SecurityException as expected"); 74 mContext.sendBroadcast(createIntent(Intent.ACTION_PACKAGE_REMOVED), 76 fail("Context.sendBroadcast did not throw SecurityException as expected");
|
RebootPermissionTest.java | 42 mContext.sendBroadcast(new Intent(Intent.ACTION_REBOOT));
|
/frameworks/base/core/tests/coretests/src/android/content/ |
BrickDeniedTest.java | 29 getContext().sendBroadcast(new Intent("SHES_A_BRICK_HOUSE")); 30 getContext().sendBroadcast(new Intent("android.intent.action.BRICK"));
|
/system/core/include/sysutils/ |
SocketListener.h | 40 void sendBroadcast(int code, const char *msg, bool addErrno); 41 void sendBroadcast(const char *msg);
|
/system/netd/ |
NetlinkHandler.cpp | 72 mNm->getBroadcaster()->sendBroadcast(ResponseCode::InterfaceChange, 80 mNm->getBroadcaster()->sendBroadcast(ResponseCode::InterfaceChange, 88 mNm->getBroadcaster()->sendBroadcast(ResponseCode::InterfaceChange,
|
/packages/apps/Settings/src/com/android/settings/ |
DebugIntentSender.java | 56 sendBroadcast(intent); 82 mSendBroadcastButton = (Button) findViewById(R.id.sendbroadcast);
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
RealSystemFacade.java | 84 public void sendBroadcast(Intent intent) { 85 mContext.sendBroadcast(intent);
|
SystemFacade.java | 42 public void sendBroadcast(Intent intent);
|
/frameworks/base/core/java/android/server/ |
BluetoothEventLoop.java | 169 mContext.sendBroadcast(intent, BLUETOOTH_PERM); 186 mContext.sendBroadcast(intent, BLUETOOTH_PERM); 197 mContext.sendBroadcast(intent, BLUETOOTH_PERM); 237 mContext.sendBroadcast(intent, BLUETOOTH_PERM); 256 mContext.sendBroadcast(intent, BLUETOOTH_PERM); 270 mContext.sendBroadcast(intent, BLUETOOTH_PERM); 307 mContext.sendBroadcast(intent, BLUETOOTH_PERM); 314 mContext.sendBroadcast(intent, BLUETOOTH_PERM); 329 mContext.sendBroadcast(intent, BLUETOOTH_PERM); 412 mContext.sendBroadcast(intent, BLUETOOTH_ADMIN_PERM) [all...] |
/frameworks/base/core/java/android/content/ |
BroadcastReceiver.java | 27 * Base class for code that will receive intents sent by sendBroadcast(). 45 * <li> <b>Normal broadcasts</b> (sent with {@link Context#sendBroadcast(Intent) 46 * Context.sendBroadcast}) are completely asynchronous. All receivers of the 119 * {@link Context#sendBroadcast(Intent, String)} or 229 * as those sent with {@link Context#sendBroadcast(Intent) 230 * Context.sendBroadcast}</strong></p> 258 * as those sent with {@link Context#sendBroadcast(Intent) 259 * Context.sendBroadcast}</strong></p> 290 * as those sent with {@link Context#sendBroadcast(Intent) 291 * Context.sendBroadcast}</strong></p [all...] |
ContextWrapper.java | 270 public void sendBroadcast(Intent intent) { 271 mBase.sendBroadcast(intent); 275 public void sendBroadcast(Intent intent, String receiverPermission) { 276 mBase.sendBroadcast(intent, receiverPermission);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/ |
ExperimentService.java | 92 sendBroadcast(intent); 127 sendBroadcast(feedback);
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
BroadcastTest.java | 373 getContext().sendBroadcast(makeBroadcastIntent(BROADCAST_REGISTERED)); 398 getContext().sendBroadcast( 424 getContext().sendBroadcast(makeBroadcastIntent(BROADCAST_LOCAL_GRANTED)); 446 getContext().sendBroadcast( 470 getContext().sendBroadcast(makeBroadcastIntent(BROADCAST_REMOTE_GRANTED)); 492 getContext().sendBroadcast( 516 getContext().sendBroadcast(makeBroadcastIntent(BROADCAST_FAIL_REGISTER)); 522 getContext().sendBroadcast(makeBroadcastIntent(BROADCAST_FAIL_BIND));
|
/development/apps/Development/src/com/android/development/ |
MediaScannerActivity.java | 45 sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"
|
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
FakeSystemFacade.java | 52 public void sendBroadcast(Intent intent) {
|
/frameworks/base/core/java/com/android/internal/os/storage/ |
ExternalStorageFormatter.java | 130 sendBroadcast(new Intent("android.intent.action.MASTER_CLEAR")); 166 sendBroadcast(new Intent("android.intent.action.MASTER_CLEAR")); 175 sendBroadcast(new Intent("android.intent.action.MASTER_CLEAR"));
|
/system/vold/ |
DirectVolume.cpp | 170 mVm->getBroadcaster()->sendBroadcast(ResponseCode::VolumeDiskInserted, 269 mVm->getBroadcaster()->sendBroadcast(ResponseCode::VolumeDiskRemoved, 298 mVm->getBroadcaster()->sendBroadcast(ResponseCode::VolumeBadRemoval,
|
/cts/tests/tests/permission2/src/android/permission2/cts/ |
ProtectedBroadcastsTest.java | 75 getContext().sendBroadcast(intent);
|
/frameworks/ex/common/java/com/android/common/userhappiness/ |
UserHappinessSignals.java | 57 context.sendBroadcast(i);
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
ProgressCallbackEntity.java | 86 mContext.sendBroadcast(intent);
|
/external/svox/picolanginstaller/src/com/svox/langpack/installer/ |
InstallerActivity.java | 134 self.sendBroadcast(installCompleteIntent); 143 self.sendBroadcast(installCompleteIntent);
|
/system/core/libsysutils/src/ |
SocketListener.cpp | 210 void SocketListener::sendBroadcast(int code, const char *msg, bool addErrno) { 222 void SocketListener::sendBroadcast(const char *msg) {
|
/frameworks/base/docs/html/guide/topics/security/ |
security.jd | 139 android.content.Context#sendBroadcast} method checks permissions as data is 279 {@link android.content.Context#sendBroadcast Context.sendBroadcast()} returns, 289 {@link android.content.Context#sendBroadcast(Intent, String) Context.sendBroadcast()} 326 android.content.Context#sendBroadcast(android.content.Intent,String) 327 Context.sendBroadcast()} with a
|
/cts/tests/tests/content/src/android/content/cts/ |
BroadcastReceiverTest.java | 210 activity.sendBroadcast(new Intent(ACTION_BROADCAST_INTERNAL)); 360 activity.sendBroadcast(new Intent(ACTION_BROADCAST_INTERNAL)); 370 activity.sendBroadcast(new Intent(ACTION_BROADCAST_INTERNAL));
|