Searched refs:mContext (Results 1 - 25 of 810) sorted by path

1234567891011>>

/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp277 mContext = context;
319 eglDestroyContext(mDisplay, mContext);
H A DBootAnimation.h99 EGLDisplay mContext; member in class:android::BootAnimation
/frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/core/
H A DInstrumentationUiAutomatorBridge.java32 private final Context mContext; field in class:InstrumentationUiAutomatorBridge
36 mContext = context;
41 mContext.getSystemService(Service.WINDOW_SERVICE);
53 mContext.getSystemService(Service.POWER_SERVICE);
/frameworks/base/core/java/android/accounts/
H A DAbstractAccountAuthenticator.java111 private final Context mContext; field in class:AbstractAccountAuthenticator
114 mContext = context;
341 if (mContext.checkCallingOrSelfPermission(perm) != PackageManager.PERMISSION_GRANTED) {
H A DAccountManager.java235 private final Context mContext; field in class:AccountManager
253 mContext = context;
255 mMainHandler = new Handler(mContext.getMainLooper());
262 mContext = context;
1154 optionsIn.putString(KEY_ANDROID_PACKAGE_NAME, mContext.getPackageName());
1324 optionsIn.putString(KEY_ANDROID_PACKAGE_NAME, mContext.getPackageName());
1391 optionsIn.putString(KEY_ANDROID_PACKAGE_NAME, mContext.getPackageName());
1415 optionsIn.putString(KEY_ANDROID_PACKAGE_NAME, mContext.getPackageName());
1704 if (looper != null && looper == mContext.getMainLooper()) {
1709 if (mContext
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManager.java77 private final Context mContext; field in class:ActivityManager
312 mContext = context;
1111 appTasks = ActivityManagerNative.getDefault().getAppTasks(mContext.getPackageName());
1799 return clearApplicationUserData(mContext.getPackageName(), null);
2347 final Resources res = mContext.getResources();
2383 return getLauncherLargeIconSizeInner(mContext);
H A DAlertDialog.java345 mContext.getTheme().resolveAttribute(attrId, out, true);
408 return P.mContext;
417 P.mTitle = P.mContext.getText(titleId);
453 P.mMessage = P.mContext.getText(messageId);
500 P.mContext.getTheme().resolveAttribute(attrId, out, true);
513 P.mPositiveButtonText = P.mContext.getText(textId);
539 P.mNegativeButtonText = P.mContext.getText(textId);
565 P.mNeutralButtonText = P.mContext.getText(textId);
638 P.mItems = P.mContext.getResources().getTextArray(itemsId);
711 P.mItems = P.mContext
[all...]
H A DAppImportanceMonitor.java34 final Context mContext; field in class:AppImportanceMonitor
76 mContext = context;
H A DAppOpsManager.java71 final Context mContext; field in class:AppOpsManager
947 mContext = context;
1311 return noteOp(op, Process.myUid(), mContext.getOpPackageName());
1373 return startOp(op, Process.myUid(), mContext.getOpPackageName());
1392 finishOp(op, Process.myUid(), mContext.getOpPackageName());
H A DApplicationPackageManager.java96 mUserManager = UserManager.get(mContext);
106 PackageInfo pi = mPM.getPackageInfo(packageName, flags, mContext.getUserId());
269 ApplicationInfo ai = mPM.getApplicationInfo(packageName, flags, mContext.getUserId());
306 ActivityInfo ai = mPM.getActivityInfo(className, flags, mContext.getUserId());
321 ActivityInfo ai = mPM.getReceiverInfo(className, flags, mContext.getUserId());
336 ServiceInfo si = mPM.getServiceInfo(className, flags, mContext.getUserId());
351 ProviderInfo pi = mPM.getProviderInfo(className, flags, mContext.getUserId());
496 return getInstalledPackages(flags, mContext.getUserId());
514 final int userId = mContext.getUserId();
527 final int userId = mContext
1779 private final ContextImpl mContext; field in class:ApplicationPackageManager
[all...]
H A DDatePickerDialog.java169 String title = DateUtils.formatDateTime(mContext,
H A DDialog.java86 final Context mContext; field in class:Dialog
159 mContext = new ContextThemeWrapper(context, theme);
161 mContext = context;
165 Window w = PolicyManager.makeNewWindow(mContext);
199 return mContext;
281 final ApplicationInfo info = mContext.getApplicationInfo();
544 setTitle(mContext.getText(titleId));
639 if (mCancelable && mShowing && mWindow.shouldCloseOnTouch(mContext, event)) {
807 event.setPackageName(mContext.getPackageName());
980 final SearchManager searchManager = (SearchManager) mContext
[all...]
H A DLoadedApk.java814 final Context mContext; field in class:LoadedApk.ReceiverDispatcher
866 receiver.onReceive(mContext, intent);
898 mContext = context;
907 if (mContext != context) {
911 mContext + " now " + context + ")");
1037 private final Context mContext; field in class:LoadedApk.ServiceDispatcher
1074 mContext = context;
1082 if (mContext != context) {
1086 mContext + " now " + context + ")");
H A DMediaRouteActionProvider.java48 private final Context mContext; field in class:MediaRouteActionProvider
59 mContext = context;
121 mButton = new MediaRouteButton(mContext);
H A DNotification.java1872 * Notification noti = new Notification.Builder(mContext)
1935 private Context mContext; field in class:Notification.Builder
2029 * apps. Any data populated from mContext should therefore be populated lazily to
2032 mContext = context;
2042 NotificationColorUtil.getInstance(mContext) : null;
2720 return mContext.getPackageManager().getUserBadgeForDensity(
2729 final int size = mContext.getResources().getDimensionPixelSize(
2760 float subTextSize = mContext.getResources().getDimensionPixelSize(
2766 float regularTextSize = mContext.getResources().getDimensionPixelSize(
2802 RemoteViews contentView = new BuilderRemoteViews(mContext
[all...]
H A DNotificationManager.java103 mContext = context;
141 String pkg = mContext.getPackageName();
152 service.enqueueNotificationWithTag(pkg, mContext.getOpPackageName(), tag, id,
168 String pkg = mContext.getPackageName();
179 service.enqueueNotificationWithTag(pkg, mContext.getOpPackageName(), tag, id,
206 String pkg = mContext.getPackageName();
220 String pkg = mContext.getPackageName();
235 String pkg = mContext.getPackageName();
279 private Context mContext; field in class:NotificationManager
H A DProgressDialog.java122 LayoutInflater inflater = LayoutInflater.from(mContext);
123 TypedArray a = mContext.obtainStyledAttributes(null,
H A DSearchDialog.java255 mContext.getSystemService(Context.SEARCH_SERVICE);
498 final int slop = ViewConfiguration.get(mContext).getScaledWindowTouchSlop();
H A DSearchManager.java541 private final Context mContext; field in class:SearchManager
556 mContext = context;
639 mSearchDialog = new SearchDialog(mContext, this);
666 appSearchData.putString("source", mContext.getPackageName());
678 mContext.startActivity(intent);
933 return mContext.getContentResolver().query(uri, null, selection, selArgs, null);
H A DStatusBarManager.java72 private Context mContext; field in class:StatusBarManager
77 mContext = context;
99 svc.disable(what, mToken, mContext.getPackageName());
156 svc.setIcon(slot, mContext.getPackageName(), iconId, iconLevel,
H A DVoiceInteractor.java66 Context mContext; field in class:VoiceInteractor
176 Context mContext; field in class:VoiceInteractor.Request
191 return mContext;
209 mContext = null;
353 mContext = context;
384 mContext = activity;
390 req.mContext = activity;
404 req.mContext = null;
407 mContext = null;
414 mContext
[all...]
H A DWallpaperManager.java142 private final Context mContext; field in class:WallpaperManager
344 mContext = context;
371 Bitmap bm = sGlobals.peekWallpaperBitmap(mContext, true);
373 Drawable dr = new BitmapDrawable(mContext.getResources(), bm);
407 Resources resources = mContext.getResources();
411 InputStream is = new BufferedInputStream(openDefaultWallpaper(mContext));
436 is = new BufferedInputStream(openDefaultWallpaper(mContext));
485 is = new BufferedInputStream(openDefaultWallpaper(mContext));
559 Bitmap bm = sGlobals.peekWallpaperBitmap(mContext, false);
561 Drawable dr = new BitmapDrawable(mContext
[all...]
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java82 private final Context mContext; field in class:DevicePolicyManager
86 mContext = context;
2161 ai = mContext.getPackageManager().getReceiverInfo(cn,
2172 return new DeviceAdminInfo(mContext, ri);
/frameworks/base/core/java/android/app/backup/
H A DAbsoluteFileBackupHelper.java35 Context mContext; field in class:AbsoluteFileBackupHelper
48 mContext = context;
H A DBackupManager.java62 private Context mContext; field in class:BackupManager
81 mContext = context;
94 sService.dataChanged(mContext.getPackageName());
147 IRestoreSession binder = sService.beginRestoreSession(mContext.getPackageName(),
150 session = new RestoreSession(mContext, binder);
151 result = session.restorePackage(mContext.getPackageName(), observer);
180 session = new RestoreSession(mContext, binder);

Completed in 248 milliseconds

1234567891011>>