Home
last modified time | relevance | path

Searched refs:mConfig (Results 1 – 17 of 17) sorted by relevance

/packages/apps/Settings/src/com/android/settings/dashboard/conditional/
DDndCondition.java38 private ZenModeConfig mConfig; field in DndCondition
51 mConfig = notificationManager.getZenModeConfig(); in refreshState()
53 mConfig = null; in refreshState()
100 final boolean isForever = mConfig != null && mConfig.manualRule != null in getSummary()
101 && mConfig.manualRule.conditionId == null; in getSummary()
103 : ZenModeConfig.getConditionSummary(mManager.getContext(), mConfig, in getSummary()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DQsbApplication.java51 private Config mConfig; field in QsbApplication
111 if (mConfig != null) { in close()
112 mConfig.close(); in close()
113 mConfig = null; in close()
156 if (mConfig == null) { in getConfig()
157 mConfig = createConfig(); in getConfig()
159 return mConfig; in getConfig()
DSuggestionsProviderImpl.java38 private final Config mConfig; field in SuggestionsProviderImpl
50 mConfig = config; in SuggestionsProviderImpl()
74 int maxResults = mConfig.getMaxResultsPerSource(); in getSuggestions()
82 if (query.length() == 0 && !mConfig.showSuggestionsForZeroQuery()) { in shouldDisplayResults()
DHelp.java31 private final Config mConfig; field in Help
35 mConfig = config; in Help()
56 Uri helpUrl = mConfig.getHelpUrl(activityName); in getHelpIntent()
DEventLogLogger.java35 private final Config mConfig; field in EventLogLogger
43 mConfig = config; in EventLogLogger()
57 return mConfig; in getConfig()
DSearchSettingsImpl.java75 private final Config mConfig; field in SearchSettingsImpl
79 mConfig = config; in SearchSettingsImpl()
87 return mConfig; in getConfig()
/packages/apps/Settings/src/com/android/settings/utils/
DManagedServiceSettings.java43 private final Config mConfig; field in ManagedServiceSettings
53 mConfig = getConfig(); in ManagedServiceSettings()
62 mServiceListing = new ServiceListing(mContext, mConfig); in onCreate()
75 setEmptyText(mConfig.emptyText); in onViewCreated()
151 final String title = getResources().getString(mConfig.warningDialogTitle, label); in onCreateDialog()
152 final String summary = getResources().getString(mConfig.warningDialogSummary, label); in onCreateDialog()
DServiceListing.java46 private final Config mConfig; field in ServiceListing
55 mConfig = config; in ServiceListing()
79 mContentResolver.registerContentObserver(Settings.Secure.getUriFor(mConfig.setting), in setListening()
139 Settings.Secure.putString(mContentResolver, mConfig.setting, in saveEnabledServices()
145 final String flat = Settings.Secure.getString(mContentResolver, mConfig.setting); in loadEnabledServices()
159 getServices(mConfig, mServices, mContext.getPackageManager()); in reload()
DZenServiceListing.java40 private final ManagedServiceSettings.Config mConfig; field in ZenServiceListing
46 mConfig = config; in ZenServiceListing()
70 String[] settings = {mConfig.setting, mConfig.secondarySetting}; in reloadApprovedServices()
78 getServices(mConfig, services, mContext.getPackageManager()); in reloadApprovedServices()
/packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
DHealthService.java204 int appId = (mApps.get(chan.mConfig)).mAppId; in handleMessage()
207 callHealthChannelCallback(chan.mConfig, chan.mDevice, in handleMessage()
211 callHealthChannelCallback(chan.mConfig, chan.mDevice, in handleMessage()
222 callHealthChannelCallback(chan.mConfig, chan.mDevice, in handleMessage()
226 callHealthChannelCallback(chan.mConfig, chan.mDevice, in handleMessage()
283 callHealthChannelCallback(chan.mConfig, chan.mDevice, newState, in handleMessage()
297 private BluetoothHealthAppConfiguration mConfig; field in HealthService.BluetoothHealthDeathRecipient
302 mConfig = config; in BluetoothHealthDeathRecipient()
307 mService.unregisterAppConfiguration(mConfig); in binderDied()
312 mConfig = null; in cleanup()
[all …]
/packages/services/Car/car-systemtest-lib/src/android/car/test/
DVehicleHalEmulator.java275 private final VehiclePropConfig mConfig; field in VehicleHalEmulator.DefaultPropertyHandler
280 mConfig = config; in DefaultPropertyHandler()
286 assertPropertyForSet(mConfig, value); in onPropertySet()
292 assertPropertyForGet(mConfig, value.getProp()); in onPropertyGet()
298 assertPropertyForSubscribe(mConfig, property, sampleRate, zones); in onPropertySubscribe()
304 assertProperty(mConfig, property); in onPropertyUnsubscribe()
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
DCanvasTexture.java28 private final Config mConfig; field in CanvasTexture
31 mConfig = Config.ARGB_8888; in CanvasTexture()
38 Bitmap bitmap = Bitmap.createBitmap(mWidth, mHeight, mConfig); in onGetBitmap()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DBitmapTileProvider.java31 private final Config mConfig; field in BitmapTileProvider
50 mConfig = Config.ARGB_8888; in BitmapTileProvider()
80 result = Bitmap.createBitmap(tileSize, tileSize, mConfig); in getTile()
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DAlbumSetPage.java87 private Config.AlbumSetPage mConfig; field in AlbumSetPage
135 int slotViewTop = mActionBar.getHeight() + mConfig.paddingTop;
136 int slotViewBottom = bottom - top - mConfig.paddingBottom;
490 mConfig = Config.AlbumSetPage.get(mActivity); in initializeViews()
491 mSlotView = new SlotView(mActivity, mConfig.slotViewSpec); in initializeViews()
493 mActivity, mSelectionManager, mSlotView, mConfig.labelSpec, in initializeViews()
494 mConfig.placeholderColor); in initializeViews()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DConversationItemView.java179 private ConversationItemViewCoordinates.Config mConfig; field in ConversationItemView
581 mConfig = new ConversationItemViewCoordinates.Config() in bind()
585 mConfig.showFolders(); in bind()
588 mConfig.showReplyState(); in bind()
591 mConfig.showColorBlock(); in bind()
612 mConfig.showPersonalIndicator(); in bind()
678 mConfig.updateWidth(wSize).setLayoutDirection(ViewCompat.getLayoutDirection(this)); in onMeasure()
683 mCoordinates = ConversationItemViewCoordinates.forConfig(mContext, mConfig, in onMeasure()
692 setMeasuredDimension(mConfig.getWidth(), h); in onMeasure()
1212 if (mConfig.areFoldersVisible()) { in onDraw()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
DRenderingRequest.java48 private static final Bitmap.Config mConfig = Bitmap.Config.ARGB_8888; field in RenderingRequest
/packages/services/Car/bluetooth/bt-map-service/
Dbt_hci_startup_issues.txt95037mConfig=allow(calls=true,callsFrom=contacts,repeatCallers=false,messages=false,messagesFrom=contac…