Searched defs:appId (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/services/java/com/android/server/pm/
H A DPackageSetting.java27 int appId; field in class:PackageSetting
44 appId = orig.appId;
53 + " " + name + "/" + appId + "}";
H A DPackageManagerService.java665 uids[i] = (ps != null) ? ps.appId : -1;
3845 pkg.applicationInfo.uid = pkgSetting.appId;
4485 private void killApplication(String pkgName, int appId) { argument
4492 am.killApplicationWithAppId(pkgName, appId);
5529 removedAppId = ps.appId;
5666 extras.putInt(Intent.EXTRA_UID, UserHandle.getUid(userId, pkgSetting.appId));
8261 outInfo.uid = ps.appId;
8288 int appId = -1;
8311 appId = ps.appId;
[all...]
/frameworks/base/core/java/android/os/
H A DUserHandle.java81 * @return whether the appId is the same for both uids
91 final int appId = getAppId(uid);
92 return appId >= Process.FIRST_ISOLATED_UID && appId <= Process.LAST_ISOLATED_UID;
101 final int appId = getAppId(uid);
102 return appId >= Process.FIRST_APPLICATION_UID && appId <= Process.LAST_APPLICATION_UID;
126 * Returns the uid that is composed from the userId and the appId.
129 public static final int getUid(int userId, int appId) { argument
131 return userId * PER_USER_RANGE + (appId
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DProviderMap.java186 private boolean collectForceStopProvidersLocked(String name, int appId, argument
204 boolean collectForceStopProviders(String name, int appId, argument
207 boolean didSomething = collectForceStopProvidersLocked(name, appId, doit,
214 if (collectForceStopProvidersLocked(name, appId, doit, evenPersistent,
226 didSomething |= collectForceStopProvidersLocked(name, appId, doit,
H A DActivityManagerService.java3494 int appId = -1;
3496 appId = UserHandle.getAppId(pm.getPackageUid(packageName, 0));
3499 if (appId == -1) {
3503 killPackageProcessesLocked(packageName, appId, userId,
3751 private final boolean killPackageProcessesLocked(String packageName, int appId, argument
3790 if (UserHandle.getAppId(app.uid) != appId) {
3817 private final boolean forceStopPackageLocked(String name, int appId, argument
3827 if (appId < 0 && name != null) {
3829 appId = UserHandle.getAppId(
3837 Slog.i(TAG, "Force stopping package " + name + " appid=" + appId
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardHostView.java938 private boolean addWidget(int appId, int pageIndex, boolean updateDbIfFailed) { argument
939 AppWidgetProviderInfo appWidgetInfo = mAppWidgetManager.getAppWidgetInfo(appId);
941 AppWidgetHostView view = getAppWidgetHost().createView(mContext, appId, appWidgetInfo);
946 Log.w(TAG, "AppWidgetInfo for app widget id " + appId + " was null, deleting");
947 mAppWidgetHost.deleteAppWidgetId(appId);
948 mLockPatternUtils.removeAppWidget(appId);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java270 int serviceClass, String appId, Message response) {
280 String password, int serviceClass, String appId, Message response) {
269 queryFacilityLockForApp(String facility, String password, int serviceClass, String appId, Message response) argument
279 setFacilityLockForApp(String facility, boolean lockState, String password, int serviceClass, String appId, Message response) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java342 String appId, Message result) {
376 String pin, int serviceClass, String appId,
341 queryFacilityLockForApp(String facility, String pin, int serviceClass, String appId, Message result) argument
375 setFacilityLockForApp(String facility, boolean lockEnabled, String pin, int serviceClass, String appId, Message result) argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java442 String appId, Message response) {
452 int serviceClass, String appId, Message response) {
441 queryFacilityLockForApp(String facility, String password, int serviceClass, String appId, Message response) argument
451 setFacilityLockForApp(String facility, boolean lockState, String password, int serviceClass, String appId, Message response) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java1657 queryFacilityLockForApp(String facility, String password, int serviceClass, String appId, argument
1663 + " " + appId + "]");
1672 rr.mp.writeString(appId);
1687 int serviceClass, String appId, Message response) {
1694 + " " + serviceClass + " " + appId + "]");
1704 rr.mp.writeString(appId);
1686 setFacilityLockForApp(String facility, boolean lockState, String password, int serviceClass, String appId, Message response) argument
H A DCommandsInterface.java1181 * application with appId.
1186 * @param appId is application Id or null if none
1190 void queryFacilityLockForApp(String facility, String password, int serviceClass, String appId, argument
1210 * @param appId is application Id or null if none
1214 int serviceClass, String appId, Message response);
1213 setFacilityLockForApp(String facility, boolean lockState, String password, int serviceClass, String appId, Message response) argument

Completed in 1100 milliseconds