Home
last modified time | relevance | path

Searched refs:extraKey (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/services/Telecomm/src/com/android/server/telecom/
H A DParcelableCallUtils.java354 String extraKey = toCheck.next(); in sanitizeExtras() local
355 if (TextUtils.isEmpty(extraKey) || !extraKey.startsWith("android.")) { in sanitizeExtras()
375 String extraKey = toCheck.next(); in sanitizeRestrictedCallExtras() local
376 if (TextUtils.isEmpty(extraKey) in sanitizeRestrictedCallExtras()
377 || !RESTRICTED_CALL_SCREENING_EXTRA_KEYS.contains(extraKey)) { in sanitizeRestrictedCallExtras()
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
H A DAccountsDbTest.java197 String extraKey = "extra_key"; in testExtrasInsertFindDelete() local
199 long extraId = mAccountsDb.insertExtra(accId, extraKey, extraValue); in testExtrasInsertFindDelete()
201 long actualExtraId = mAccountsDb.findExtrasIdByAccountId(accId, extraKey); in testExtrasInsertFindDelete()
205 assertEquals(extraValue, extras.get(extraKey)); in testExtrasInsertFindDelete()
209 String newValue = mAccountsDb.findUserExtrasForAccount(account).get(extraKey); in testExtrasInsertFindDelete()
214 actualExtraId = mAccountsDb.findExtrasIdByAccountId(accId, extraKey); in testExtrasInsertFindDelete()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCarrierSignalAgent.java412 for (String extraKey : original.getExtras().keySet()) { in createCompatIntent()
413 switch (extraKey) { in createCompatIntent()
/aosp12/packages/apps/Settings/src/com/android/settings/notification/history/
H A DNotificationStation.java626 for (String extraKey : n.extras.keySet()) { in generateExtraText()
627 String val = String.valueOf(n.extras.get(extraKey)); in generateExtraText()
629 sb.append("\n ").append(extraKey).append(delim).append(val); in generateExtraText()