Home
last modified time | relevance | path

Searched refs:responseIntent (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/restrictions/java/com/android/server/restrictions/
DRestrictionsManagerService.java193 Intent responseIntent = new Intent( in notifyPermissionResponse() local
195 responseIntent.setPackage(packageName); in notifyPermissionResponse()
196 responseIntent.putExtra(RestrictionsManager.EXTRA_RESPONSE_BUNDLE, response); in notifyPermissionResponse()
197 mContext.sendBroadcastAsUser(responseIntent, new UserHandle(userHandle)); in notifyPermissionResponse()
/frameworks/base/core/tests/coretests/src/android/app/activity/
DServiceTest.java238 final Intent responseIntent = new Intent(ACTION_SERVICE_STARTED); in onStartCommand() local
239 responseIntent.putExtra(EXTRA_PID, Process.myPid()); in onStartCommand()
240 sendBroadcast(responseIntent); in onStartCommand()