Home
last modified time | relevance | path

Searched refs:contentValues (Results 1 – 25 of 130) sorted by relevance

123456

/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
DCarrierProviderTest.java144 ContentValues contentValues = new ContentValues(); in testInsertCertificates() local
145 contentValues.put(CarrierDatabaseHelper.KEY_TYPE, test_type); in testInsertCertificates()
146 contentValues.put(CarrierDatabaseHelper.MCC, test_mcc); in testInsertCertificates()
147 contentValues.put(CarrierDatabaseHelper.MNC, test_mnc); in testInsertCertificates()
148 contentValues.put(CarrierDatabaseHelper.CARRIER_ID, TEST_CARRIER_ID_1); in testInsertCertificates()
149 contentValues.put(CarrierDatabaseHelper.KEY_IDENTIFIER, test_key_identifier_data); in testInsertCertificates()
150 contentValues.put(CarrierDatabaseHelper.PUBLIC_KEY, test_key1.getBytes()); in testInsertCertificates()
151 contentValues.put(CarrierDatabaseHelper.EXPIRATION_TIME, test_key_expiration); in testInsertCertificates()
154 mContentResolver.insert(CarrierProvider.CONTENT_URI, contentValues); in testInsertCertificates()
179 ContentValues contentValues = new ContentValues(); in testUpdateCertificates() local
[all …]
DTelephonyProviderTest.java236 ContentValues contentValues = new ContentValues(); in populateContentValues() local
238 contentValues.put(Telephony.SimInfo.COLUMN_UNIQUE_KEY_SUBSCRIPTION_ID, arbitraryIntVal); in populateContentValues()
239 contentValues.put(Telephony.SimInfo.COLUMN_ICC_ID, iccId); in populateContentValues()
240 contentValues.put(Telephony.SimInfo.COLUMN_NUMBER, phoneNumber); in populateContentValues()
241 contentValues.put(Telephony.SimInfo.COLUMN_CARD_ID, arbitraryStringVal); in populateContentValues()
242 contentValues.put(Telephony.SimInfo.COLUMN_CARRIER_ID, carrierId); in populateContentValues()
243 contentValues.put(Telephony.SimInfo.COLUMN_ENHANCED_4G_MODE_ENABLED, arbitraryIntVal); in populateContentValues()
244 contentValues.put(Telephony.SimInfo.COLUMN_VT_IMS_ENABLED, arbitraryIntVal); in populateContentValues()
245 contentValues.put(Telephony.SimInfo.COLUMN_IMS_RCS_UCE_ENABLED, arbitraryIntVal); in populateContentValues()
246 contentValues.put(Telephony.SimInfo.COLUMN_WFC_IMS_ENABLED, arbitraryIntVal); in populateContentValues()
[all …]
DCarrierIdProviderTest.java190 ContentValues contentValues = createCarrierInfoInternal(); in testDuplicateInsertionCarrierInfo() local
191 mContentResolver.insert(CarrierId.All.CONTENT_URI, contentValues); in testDuplicateInsertionCarrierInfo()
192 mContentResolver.insert(CarrierId.All.CONTENT_URI, contentValues); in testDuplicateInsertionCarrierInfo()
206 ContentValues contentValues = new ContentValues(); in testInvalidInsertionCarrierInfo() local
207 contentValues.put(CarrierId.All.GID1, test_gid1); in testInvalidInsertionCarrierInfo()
208 mContentResolver.insert(CarrierId.All.CONTENT_URI, contentValues); in testInvalidInsertionCarrierInfo()
246 ContentValues contentValues = createCarrierInfoInternal(); in testUpdateCarrierInfo() local
249 mContentResolver.insert(CarrierId.All.CONTENT_URI, contentValues); in testUpdateCarrierInfo()
255 contentValues.put(CarrierId.CARRIER_ID, 1); in testUpdateCarrierInfo()
256 mContentResolver.update(CarrierId.All.CONTENT_URI, contentValues, in testUpdateCarrierInfo()
[all …]
DSatelliteProviderTest.java115 ContentValues contentValues = new ContentValues(); in testInsertDatagram() local
116 contentValues.put(Telephony.SatelliteDatagrams.COLUMN_UNIQUE_KEY_DATAGRAM_ID, in testInsertDatagram()
118 contentValues.put(Telephony.SatelliteDatagrams.COLUMN_DATAGRAM, testDatagram.getBytes()); in testInsertDatagram()
121 mContentResolver.insert(Telephony.SatelliteDatagrams.CONTENT_URI, contentValues); in testInsertDatagram()
142 ContentValues contentValues = new ContentValues(); in testDeleteDatagram() local
143 contentValues.put(Telephony.SatelliteDatagrams.COLUMN_UNIQUE_KEY_DATAGRAM_ID, in testDeleteDatagram()
145 contentValues.put(Telephony.SatelliteDatagrams.COLUMN_DATAGRAM, testDatagram.getBytes()); in testDeleteDatagram()
148 mContentResolver.insert(Telephony.SatelliteDatagrams.CONTENT_URI, contentValues); in testDeleteDatagram()
/packages/apps/Dialer/java/com/android/voicemail/impl/utils/
DVoicemailDatabaseUtil.java40 ContentValues contentValues = getContentValues(voicemail); in insert() local
42 Voicemails.buildSourceUri(context.getPackageName()), contentValues); in insert()
62 ContentValues contentValues = new ContentValues(); in getContentValues() local
63 contentValues.put(Voicemails.DATE, String.valueOf(voicemail.getTimestampMillis())); in getContentValues()
64 contentValues.put(Voicemails.NUMBER, voicemail.getNumber()); in getContentValues()
65 contentValues.put(Voicemails.DURATION, String.valueOf(voicemail.getDuration())); in getContentValues()
66 contentValues.put(Voicemails.SOURCE_PACKAGE, voicemail.getSourcePackage()); in getContentValues()
67 contentValues.put(Voicemails.SOURCE_DATA, voicemail.getSourceData()); in getContentValues()
68 contentValues.put(Voicemails.IS_READ, voicemail.isRead() ? 1 : 0); in getContentValues()
69 contentValues.put(Voicemails.IS_OMTP_VOICEMAIL, 1); in getContentValues()
[all …]
/packages/apps/Settings/src/com/android/settings/fuelgauge/batteryusage/db/
DBatteryState.java119 public static BatteryState create(ContentValues contentValues) { in create() argument
121 if (contentValues.containsKey("uid")) { in create()
122 builder.setUid(contentValues.getAsLong("uid")); in create()
124 if (contentValues.containsKey("userId")) { in create()
125 builder.setUserId(contentValues.getAsLong("userId")); in create()
127 if (contentValues.containsKey("packageName")) { in create()
128 builder.setPackageName(contentValues.getAsString("packageName")); in create()
130 if (contentValues.containsKey("timestamp")) { in create()
131 builder.setTimestamp(contentValues.getAsLong("timestamp")); in create()
133 if (contentValues.containsKey("consumerType")) { in create()
[all …]
DAppUsageEventEntity.java111 public static AppUsageEventEntity create(ContentValues contentValues) { in create() argument
113 if (contentValues.containsKey(KEY_UID)) { in create()
114 builder.setUid(contentValues.getAsLong(KEY_UID)); in create()
116 if (contentValues.containsKey(KEY_USER_ID)) { in create()
117 builder.setUserId(contentValues.getAsLong(KEY_USER_ID)); in create()
119 if (contentValues.containsKey(KEY_TIMESTAMP)) { in create()
120 builder.setTimestamp(contentValues.getAsLong(KEY_TIMESTAMP)); in create()
122 if (contentValues.containsKey(KEY_APP_USAGE_EVENT_TYPE)) { in create()
123 builder.setAppUsageEventType(contentValues.getAsInteger(KEY_APP_USAGE_EVENT_TYPE)); in create()
125 if (contentValues.containsKey(KEY_PACKAGE_NAME)) { in create()
[all …]
DBatteryEventEntity.java81 public static BatteryEventEntity create(ContentValues contentValues) { in create() argument
83 if (contentValues.containsKey(KEY_TIMESTAMP)) { in create()
84 builder.setTimestamp(contentValues.getAsLong(KEY_TIMESTAMP)); in create()
86 if (contentValues.containsKey(KEY_BATTERY_EVENT_TYPE)) { in create()
87 builder.setBatteryEventType(contentValues.getAsInteger(KEY_BATTERY_EVENT_TYPE)); in create()
89 if (contentValues.containsKey(KEY_BATTERY_LEVEL)) { in create()
90 builder.setBatteryLevel(contentValues.getAsInteger(KEY_BATTERY_LEVEL)); in create()
/packages/apps/Dialer/java/com/android/dialer/calllog/database/
DAnnotatedCallLogConstraints.java45 public static void check(ContentValues contentValues, @Operation int operationType) { in check() argument
46 checkBooleanColumn(AnnotatedCallLog.IS_READ, contentValues, operationType); in check()
47 checkBooleanColumn(AnnotatedCallLog.NEW, contentValues, operationType); in check()
48 checkBooleanColumn(AnnotatedCallLog.IS_VOICEMAIL_CALL, contentValues, operationType); in check()
49 checkCallTypeColumn(contentValues, operationType); in check()
59 String columnName, ContentValues contentValues, @Operation int operationType) { in checkBooleanColumn() argument
62 contentValues, in checkBooleanColumn()
76 ContentValues contentValues, @Operation int operationType) { in checkCallTypeColumn() argument
79 contentValues, in checkCallTypeColumn()
96 ContentValues contentValues, in checkColumn() argument
[all …]
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/datatypehelpers/
DNutritionRecordHelper.java482 @NonNull ContentValues contentValues, in populateSpecificContentValues()
484 contentValues.put(UNSATURATED_FAT_COLUMN_NAME, nutritionRecord.getUnsaturatedFat()); in populateSpecificContentValues()
485 contentValues.put(POTASSIUM_COLUMN_NAME, nutritionRecord.getPotassium()); in populateSpecificContentValues()
486 contentValues.put(THIAMIN_COLUMN_NAME, nutritionRecord.getThiamin()); in populateSpecificContentValues()
487 contentValues.put(MEAL_TYPE_COLUMN_NAME, nutritionRecord.getMealType()); in populateSpecificContentValues()
488 contentValues.put(TRANS_FAT_COLUMN_NAME, nutritionRecord.getTransFat()); in populateSpecificContentValues()
489 contentValues.put(MANGANESE_COLUMN_NAME, nutritionRecord.getManganese()); in populateSpecificContentValues()
490 contentValues.put(ENERGY_FROM_FAT_COLUMN_NAME, nutritionRecord.getEnergyFromFat()); in populateSpecificContentValues()
491 contentValues.put(CAFFEINE_COLUMN_NAME, nutritionRecord.getCaffeine()); in populateSpecificContentValues()
492 contentValues.put(DIETARY_FIBER_COLUMN_NAME, nutritionRecord.getDietaryFiber()); in populateSpecificContentValues()
[all …]
DExerciseRouteRecordHelper.java76 ContentValues contentValues = new ContentValues(); in getRouteUpsertRequests()
77 populateRouteLocationTo(contentValues, sample); in getRouteUpsertRequests()
80 EXERCISE_ROUTE_RECORD_TABLE_NAME, contentValues) in getRouteUpsertRequests()
99 ContentValues contentValues, ExerciseRouteInternal.LocationInternal location) { in populateRouteLocationTo() argument
100 contentValues.put(ROUTE_LOCATION_TIME_IN_MILLIS_COLUMN_NAME, location.getTime()); in populateRouteLocationTo()
101 contentValues.put(ROUTE_LOCATION_LONGITUDE_COLUMN_NAME, location.getLongitude()); in populateRouteLocationTo()
102 contentValues.put(ROUTE_LOCATION_LATITUDE_COLUMN_NAME, location.getLatitude()); in populateRouteLocationTo()
103 contentValues.put( in populateRouteLocationTo()
105 contentValues.put( in populateRouteLocationTo()
107 contentValues.put(ROUTE_LOCATION_ALTITUDE_COLUMN_NAME, location.getAltitude()); in populateRouteLocationTo()
DChangeLogsRequestHelper.java81 ContentValues contentValues = new ContentValues(); in getToken() local
88 contentValues.put( in getToken()
91 contentValues.put( in getToken()
94 contentValues.put(PACKAGE_NAME_COLUMN_NAME, packageName); in getToken()
95 contentValues.put(ROW_ID_CHANGE_LOGS_TABLE_COLUMN_NAME, ChangeLogsHelper.getLatestRowId()); in getToken()
96 contentValues.put(TIME_COLUMN_NAME, Instant.now().toEpochMilli()); in getToken()
100 .insert(new UpsertTableRequest(TABLE_NAME, contentValues))); in getToken()
151 ContentValues contentValues = new ContentValues(); in getNextPageToken() local
152 contentValues.put( in getNextPageToken()
155 contentValues.put( in getNextPageToken()
[all …]
DExerciseSegmentRecordHelper.java71 ContentValues contentValues = new ContentValues(); in getSegmentsUpsertRequests()
72 populateSegmentTo(contentValues, sample); in getSegmentsUpsertRequests()
75 EXERCISE_SEGMENT_RECORD_TABLE_NAME, contentValues) in getSegmentsUpsertRequests()
96 static void populateSegmentTo(ContentValues contentValues, ExerciseSegmentInternal segment) { in populateSegmentTo() argument
97 contentValues.put(EXERCISE_SEGMENT_START_TIME, segment.getStartTime()); in populateSegmentTo()
98 contentValues.put(EXERCISE_SEGMENT_END_TIME, segment.getEndTime()); in populateSegmentTo()
99 contentValues.put(EXERCISE_SEGMENT_TYPE, segment.getSegmentType()); in populateSegmentTo()
100 contentValues.put(EXERCISE_SEGMENT_REPETITIONS_COUNT, segment.getRepetitionsCount()); in populateSegmentTo()
DExerciseLapRecordHelper.java66 ContentValues contentValues = new ContentValues(); in getLapsUpsertRequests()
67 populateLapTo(contentValues, sample); in getLapsUpsertRequests()
69 new UpsertTableRequest(EXERCISE_LAPS_RECORD_TABLE_NAME, contentValues) in getLapsUpsertRequests()
88 static void populateLapTo(ContentValues contentValues, ExerciseLapInternal lap) { in populateLapTo() argument
89 contentValues.put(EXERCISE_LAPS_START_TIME, lap.getStartTime()); in populateLapTo()
90 contentValues.put(EXERCISE_LAPS_END_TIME, lap.getEndTime()); in populateLapTo()
91 contentValues.put(EXERCISE_LAPS_LENGTH, lap.getLength()); in populateLapTo()
DSkinTemperatureRecordHelper.java115 ContentValues contentValues = new ContentValues(); in getChildTableUpsertRequests()
117 contentValues, in getChildTableUpsertRequests()
120 return new UpsertTableRequest(getSeriesDataTableName(), contentValues) in getChildTableUpsertRequests()
153 @NonNull ContentValues contentValues, @NonNull SkinTemperatureRecordInternal record) { in populateSpecificContentValues()
154 contentValues.put( in populateSpecificContentValues()
156 contentValues.put( in populateSpecificContentValues()
177 @NonNull ContentValues contentValues, in populateSampleTo()
179 contentValues.put(SKIN_TEMPERATURE_DELTA_COLUMN_NAME, sample.mTemperatureDeltaInCelsius()); in populateSampleTo()
180 contentValues.put(EPOCH_MILLIS_COLUMN_NAME, sample.mEpochMillis()); in populateSampleTo()
/packages/apps/TV/partner_support/src/com/google/android/tv/partner/support/
DEpgInput.java34 public static EpgInput createEpgChannel(ContentValues contentValues) { in createEpgChannel() argument
35 long id = contentValues.getAsLong(EpgContract.EpgInputs.COLUMN_ID); in createEpgChannel()
36 String inputId = contentValues.getAsString(EpgContract.EpgInputs.COLUMN_INPUT_ID); in createEpgChannel()
37 String lineupId = contentValues.getAsString(EpgContract.EpgInputs.COLUMN_LINEUP_ID); in createEpgChannel()
59 ContentValues contentValues = new ContentValues(); in toContentValues() local
60 contentValues.put(EpgContract.EpgInputs.COLUMN_ID, getId()); in toContentValues()
61 contentValues.put(EpgContract.EpgInputs.COLUMN_INPUT_ID, getInputId()); in toContentValues()
62 contentValues.put(EpgContract.EpgInputs.COLUMN_LINEUP_ID, getLineupId()); in toContentValues()
63 return contentValues; in toContentValues()
DLineup.java61 public static Lineup createLineup(ContentValues contentValues) { in createLineup() argument
62 String id = contentValues.getAsString(EpgContract.Lineups.COLUMN_ID); in createLineup()
63 int type = contentValues.getAsInteger(EpgContract.Lineups.COLUMN_TYPE); in createLineup()
64 String name = contentValues.getAsString(EpgContract.Lineups.COLUMN_NAME); in createLineup()
65 String channels = contentValues.getAsString(EpgContract.Lineups.COLUMN_CHANNELS); in createLineup()
/packages/modules/HealthFitness/tests/unittests/src/com/android/server/healthconnect/storage/datatypehelpers/
DTransactionTestUtils.java75 ContentValues contentValues = new ContentValues(); in insertApp() local
76 contentValues.put(PACKAGE_COLUMN_NAME, packageName); in insertApp()
79 AppInfoHelper.TABLE_NAME, contentValues, UNIQUE_COLUMN_INFO)); in insertApp()
158 ContentValues contentValues = new ContentValues(); in insertAccessLog() local
159 contentValues.put("record_type", "fake_record_type"); in insertAccessLog()
160 contentValues.put("app_id", "fake_app_id"); in insertAccessLog()
161 contentValues.put("access_time", "fake_access_time"); in insertAccessLog()
162 contentValues.put("operation_type", "fake_operation_type"); in insertAccessLog()
164 new UpsertTableRequest(AccessLogsHelper.TABLE_NAME, contentValues)); in insertAccessLog()
169 ContentValues contentValues = new ContentValues(); in insertChangeLog() local
[all …]
/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/systemcalllog/
DSystemCallLogDataSource.java320 ContentValues contentValues = new ContentValues(); in handleInsertsAndUpdates() local
321 contentValues.put(AnnotatedCallLog.TIMESTAMP, date); in handleInsertsAndUpdates()
329 contentValues.put(AnnotatedCallLog.NUMBER, dialerPhoneNumber.toByteArray()); in handleInsertsAndUpdates()
335 contentValues.put(AnnotatedCallLog.FORMATTED_NUMBER, formattedNumber); in handleInsertsAndUpdates()
337 contentValues.put( in handleInsertsAndUpdates()
340 contentValues.put(AnnotatedCallLog.NUMBER_PRESENTATION, presentation); in handleInsertsAndUpdates()
341 contentValues.put(AnnotatedCallLog.CALL_TYPE, type); in handleInsertsAndUpdates()
342 contentValues.put(AnnotatedCallLog.IS_READ, isRead); in handleInsertsAndUpdates()
343 contentValues.put(AnnotatedCallLog.NEW, isNew); in handleInsertsAndUpdates()
344 contentValues.put(AnnotatedCallLog.GEOCODED_LOCATION, geocodedLocation); in handleInsertsAndUpdates()
[all …]
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/migration/
DMeasurementDbMigratorV20.java62 ContentValues contentValues = new ContentValues(); in setCloudProvidersForAggregateEncryptionKey() local
63 contentValues.put( in setCloudProvidersForAggregateEncryptionKey()
69 contentValues, in setCloudProvidersForAggregateEncryptionKey()
76 ContentValues contentValues = new ContentValues(); in setCloudProvidersForAggregateReport() local
77 contentValues.put( in setCloudProvidersForAggregateReport()
83 contentValues, in setCloudProvidersForAggregateReport()
/packages/apps/Dialer/java/com/android/voicemail/impl/sync/
DVoicemailsQueryHelper.java158 ContentValues contentValues = new ContentValues(); in markReadInDatabase() local
159 contentValues.put(Voicemails.IS_READ, "1"); in markReadInDatabase()
160 contentResolver.update(uri, contentValues, null, null); in markReadInDatabase()
183 ContentValues contentValues = new ContentValues(); in markCleanInDatabase() local
184 contentResolver.update(uri, contentValues, null, null); in markCleanInDatabase()
190 ContentValues contentValues = new ContentValues(); in updateWithTranscription() local
191 contentValues.put(Voicemails.TRANSCRIPTION, transcription); in updateWithTranscription()
192 contentResolver.update(uri, contentValues, null, null); in updateWithTranscription()
251 ContentValues contentValues = new ContentValues(); in markArchiveInDatabase() local
252 contentValues.put(Voicemails.ARCHIVED, "1"); in markArchiveInDatabase()
[all …]
/packages/apps/Contacts/src/com/android/contacts/editor/
DEditorIntents.java96 long rawContactId, ArrayList<ContentValues> contentValues) { in createEditOtherRawContactIntent() argument
105 if (contentValues != null && contentValues.size() != 0) { in createEditOtherRawContactIntent()
106 intent.putParcelableArrayListExtra(ContactsContract.Intents.Insert.DATA, contentValues); in createEditOtherRawContactIntent()
132 ArrayList<ContentValues> contentValues = rawContactDeltaList.get(0).getContentValues(); in putRawContactDeltaValues() local
133 if (contentValues != null && contentValues.size() != 0) { in putRawContactDeltaValues()
135 ContactsContract.Intents.Insert.DATA, contentValues); in putRawContactDeltaValues()
/packages/apps/TV/tuner/tests/robotests/javatests/com/android/tv/tuner/tvinput/datamanager/
DChannelDataManagerTest.java61 ContentValues contentValues = new ContentValues(); in setup() local
62 contentValues.put(TvContract.Channels.COLUMN_INPUT_ID, "com.android.tv"); in setup()
63 contentValues.put( in setup()
66 contentValues.put(TvContract.Channels.COLUMN_LOCKED, 0); in setup()
67 provider.insert(TvContract.Channels.CONTENT_URI, contentValues); in setup()
68 contentValues.put(TvContract.Channels.COLUMN_LOCKED, 1); in setup()
69 provider.insert(TvContract.Channels.CONTENT_URI, contentValues); in setup()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsDatabaseHelperTest.java349 final ContentValues contentValues = new ContentValues(); in testUpgradeToVersion111_SetPrimaryPhonebookBucketToNumberBucket() local
350 contentValues.put(RawContactsColumns.PHONEBOOK_BUCKET_PRIMARY, 0); in testUpgradeToVersion111_SetPrimaryPhonebookBucketToNumberBucket()
351 mDb.insert(Tables.RAW_CONTACTS, null, contentValues); in testUpgradeToVersion111_SetPrimaryPhonebookBucketToNumberBucket()
366 final ContentValues contentValues = new ContentValues(); in testUpgradeToVersion111_SetAltPhonebookBucketToNumberBucket() local
367 contentValues.put(RawContactsColumns.PHONEBOOK_BUCKET_ALTERNATIVE, 0); in testUpgradeToVersion111_SetAltPhonebookBucketToNumberBucket()
368 mDb.insert(Tables.RAW_CONTACTS, null, contentValues); in testUpgradeToVersion111_SetAltPhonebookBucketToNumberBucket()
384 final ContentValues contentValues = new ContentValues(); in testUpgradeToVersion111_NonZeroPrimaryPhonebookBucket() local
385 contentValues.put(RawContactsColumns.PHONEBOOK_BUCKET_PRIMARY, primaryBucket); in testUpgradeToVersion111_NonZeroPrimaryPhonebookBucket()
386 mDb.insert(Tables.RAW_CONTACTS, null, contentValues); in testUpgradeToVersion111_NonZeroPrimaryPhonebookBucket()
397 final ContentValues contentValues = new ContentValues(); in testUpgradeToVersion111_NonNullPrimarySortKey() local
[all …]
/packages/services/Car/car-usb-handler/src/android/car/usb/handler/
DUsbSettingsStorage.java175 ContentValues contentValues = new ContentValues(); in settingsToContentValues() local
176 contentValues.put(COLUMN_SERIAL, settings.getSerialNumber()); in settingsToContentValues()
177 contentValues.put(COLUMN_VID, settings.getVid()); in settingsToContentValues()
178 contentValues.put(COLUMN_PID, settings.getPid()); in settingsToContentValues()
179 contentValues.put(COLUMN_NAME, settings.getDeviceName()); in settingsToContentValues()
180 contentValues.put(COLUMN_HANDLER, settings.getHandler().flattenToShortString()); in settingsToContentValues()
181 contentValues.put(COLUMN_AOAP, settings.isAaop() ? 1 : 0); in settingsToContentValues()
182 contentValues.put(COLUMN_DEFAULT_HANDLER, settings.isDefaultHandler() ? 1 : 0); in settingsToContentValues()
183 return contentValues; in settingsToContentValues()

123456