Home | History | Annotate | Download | only in process

Lines Matching refs:mContext

38         String testApp = mContext.getPackageName();
39 int uid1 = mContext.getPackageManager().getApplicationInfo(enableApp,
41 int uid2 = mContext.getPackageManager().getApplicationInfo(disableApp,
43 int uid3 = mContext.getPackageManager().getApplicationInfo(testApp,
50 ActivityManager am = (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
51 String shareProcessName = mContext.getPackageName() + ":shareProcess";
52 String noShareProcessName = mContext.getPackageName() + ":noShareProcess";
57 sharePidIntent.setClass(mContext, SharePidActivity.class);
59 mContext.startActivity(sharePidIntent);
65 sharePidStubIntent.setClass(mContext, SharePidSubActivity.class);
67 mContext.startActivity(sharePidStubIntent);
75 noSharePidIntent.setClass(mContext, NoSharePidActivity.class);
77 mContext.startActivity(noSharePidIntent);