Searched defs:appid (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/cmds/servicemanager/
H A Dservice_manager.c142 unsigned appid = uid % AID_USER; local
143 if (appid >= AID_ISOLATED_START && appid <= AID_ISOLATED_END) {
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java1358 int appid = data.readInt();
1359 killApplicationWithAppId(pkg, appid);
3495 public void killApplicationWithAppId(String pkg, int appid) throws RemoteException { argument
3500 data.writeInt(appid);
H A DIActivityManager.java277 public void killApplicationWithAppId(String pkg, int appid) throws RemoteException; argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java1153 int appid = msg.arg1;
1156 forceStopPackageLocked(pkg, appid, restart, false, true, false,
3601 public void killApplicationWithAppId(String pkg, int appid) { argument
3606 if (appid < 0) {
3607 Slog.w(TAG, "Invalid appid specified for pkg : " + pkg);
3615 msg.arg1 = appid;
3837 Slog.i(TAG, "Force stopping package " + name + " appid=" + appId

Completed in 136 milliseconds