Searched defs:appContext (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/services/
H A DTestJob.java34 Context service, Context appContext, Listener listener,
36 super(service, appContext, listener, operationType, id, stack);
33 TestJob( Context service, Context appContext, Listener listener, int operationType, String id, DocumentStack stack) argument
H A DFileOperationServiceTest.java200 Job createCopy(Context service, Context appContext, Listener listener, String id, argument
207 TestJob job = new TestJob(service, appContext, listener, OPERATION_COPY, id, stack);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/
H A DDeleteJob.java50 DeleteJob(Context service, Context appContext, Listener listener, argument
52 super(service, appContext, listener, OPERATION_DELETE, id, stack);
H A DMoveJob.java53 MoveJob(Context service, Context appContext, Listener listener, argument
55 super(service, appContext, listener, OPERATION_MOVE, id, destination, srcs);
H A DCopyJob.java95 CopyJob(Context service, Context appContext, Listener listener, argument
97 super(service, appContext, listener, OPERATION_COPY, id, stack);
108 CopyJob(Context service, Context appContext, Listener listener, argument
110 super(service, appContext, listener, opType, id, destination);
215 .setContentIntent(PendingIntent.getActivity(appContext, 0, navigateIntent,
H A DJob.java69 final Context appContext; field in class:Job
88 * @param appContext The context of the invoking application. This is usually
96 Job(Context service, Context appContext, Listener listener, argument
102 this.appContext = appContext;
218 .setContentIntent(PendingIntent.getActivity(appContext, 0, navigateIntent,
235 PendingIntent.getActivity(appContext, 0,
292 Job createCopy(Context service, Context appContext, Listener listener, argument
296 return new CopyJob(service, appContext, listener, id, stack, srcs);
299 Job createMove(Context service, Context appContext, Listene argument
307 createDelete(Context service, Context appContext, Listener listener, String id, DocumentStack stack, List<DocumentInfo> srcs, DocumentInfo srcParent) argument
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DLocalBluetoothManager.java57 Context appContext = context.getApplicationContext();
58 sInstance = new LocalBluetoothManager(adapter, appContext);
60 onInitCallback.onBluetoothManagerInitialized(appContext, sInstance);
119 void onBluetoothManagerInitialized(Context appContext, argument
/frameworks/base/core/java/android/content/
H A DRestrictionsManager.java553 Context appContext;
555 appContext = mContext.createPackageContext(packageName, 0 /* flags */);
566 restriction = loadRestrictionElement(appContext, xml);
584 private RestrictionEntry loadRestrictionElement(Context appContext, XmlResourceParser xml) argument
589 TypedArray a = appContext.obtainStyledAttributes(attrSet,
591 return loadRestriction(appContext, a, xml);
597 private RestrictionEntry loadRestriction(Context appContext, TypedArray a, XmlResourceParser xml) argument
621 restriction.setChoiceEntries(appContext, entries);
624 restriction.setChoiceValues(appContext, entryValues);
642 appContext
[all...]
/frameworks/base/core/java/android/app/
H A DInstrumentation.java1784 Context instrContext, Context appContext, ComponentName component,
1789 mAppContext = appContext;
1783 init(ActivityThread thread, Context instrContext, Context appContext, ComponentName component, IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection) argument
/frameworks/base/media/java/android/media/
H A DMediaRouter.java112 Static(Context appContext) { argument
113 mAppContext = appContext;
115 mHandler = new Handler(appContext.getMainLooper());
120 mDisplayService = (DisplayManager) appContext.getSystemService(Context.DISPLAY_SERVICE);
133 mCanConfigureWifiDisplays = appContext.checkPermission(
139 void startMonitoringRoutes(Context appContext) { argument
149 appContext.registerReceiver(new WifiDisplayStatusChangedReceiver(),
151 appContext.registerReceiver(new VolumeChangeReceiver(),
724 final Context appContext = context.getApplicationContext();
725 sStatic = new Static(appContext);
[all...]

Completed in 621 milliseconds