/packages/apps/TV/tuner/src/com/android/tv/tuner/ts/ |
D | TsParser.java | 279 public void onEitParsed(int sourceId, List<EitItem> items) { 280 if (DEBUG) Log.d(TAG, "onEITParsed " + sourceId); 281 EventSourceEntry entry = new EventSourceEntry(mPid, sourceId); 283 handleEvents(sourceId); 287 public void onEttParsed(int sourceId, List<EttItem> descriptions) { 293 sourceId, descriptions.size())); 298 mSourceIdToVctItemDescriptionMap.put(sourceId, item.text); 299 VctItem vctItem = mSourceIdToVctItemMap.get(sourceId); 312 EventSourceEntry entry = new EventSourceEntry(mPid, sourceId); 314 handleEvents(sourceId); [all …]
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactLookupKey.java | 66 String accountName, long rawContactId, String sourceId, in appendToLookupKey() argument 77 if (sourceId == null) { in appendToLookupKey() 83 if (appendEscapedSourceId(lookupKey, sourceId)) { in appendToLookupKey() 89 private static boolean appendEscapedSourceId(StringBuilder sb, String sourceId) { in appendEscapedSourceId() argument 93 int index = sourceId.indexOf('.', start); in appendEscapedSourceId() 95 sb.append(sourceId, start, sourceId.length()); in appendEscapedSourceId() 100 sb.append(sourceId, start, index); in appendEscapedSourceId()
|
D | DataRowHandlerForGroupMembership.java | 168 final String sourceId = values.getAsString(GroupMembership.GROUP_SOURCE_ID); 169 final long groupId = getOrMakeGroup(db, rawContactId, sourceId, 189 private long getOrMakeGroup(SQLiteDatabase db, long rawContactId, String sourceId, 210 ArrayList<GroupIdCacheEntry> entries = mGroupIdCache.get(sourceId); 213 mGroupIdCache.put(sourceId, entries); 226 entry.sourceId = sourceId; 233 new String[]{sourceId, Long.toString(accountId)}, null, null, null); 241 groupValues.put(Groups.SOURCE_ID, sourceId);
|
D | ContactsProvider2.java | 1351 String sourceId; field in ContactsProvider2.GroupIdCacheEntry 7660 String sourceId = c.getString(LookupBySourceIdQuery.SOURCE_ID); in lookupContactIdBySourceIds() local 7665 && segment.key.equals(sourceId)) { in lookupContactIdBySourceIds()
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | BaseContactsProvider2Test.java | 197 protected long createGroup(Account account, String sourceId, String title) { in createGroup() argument 198 return createGroup(account, sourceId, title, 1, false, false); in createGroup() 201 protected long createGroup(Account account, String sourceId, String title, int visible) { in createGroup() argument 202 return createGroup(account, sourceId, title, visible, false, false); in createGroup() 210 protected long createGroup(Account account, String sourceId, String title, in createGroup() argument 213 values.put(Groups.SOURCE_ID, sourceId); in createGroup() 400 protected Uri insertGroupMembership(long rawContactId, String sourceId) { in insertGroupMembership() argument 404 values.put(GroupMembership.GROUP_SOURCE_ID, sourceId); in insertGroupMembership() 695 protected long assertSingleGroup(Long rowId, Account account, String sourceId, String title) { in assertSingleGroup() argument 699 long actualRowId = assertGroup(c, rowId, account, sourceId, title); in assertSingleGroup() [all …]
|
/packages/apps/TV/tuner/src/com/android/tv/tuner/data/ |
D | SectionParser.java | 636 void onEitParsed(int sourceId, List<EitItem> items); in onEitParsed() argument 638 void onEttParsed(int sourceId, List<EttItem> descriptions); in onEttParsed() argument 670 int sourceId = mParsedEttItems.keyAt(i); in parseSections() local 672 mListener.onEttParsed(sourceId, descriptions); in parseSections() 896 int sourceId = ((data[pos + 28] & 0xff) << 8) | (data[pos + 29] & 0xff); in parseVCT() local 950 sourceId)); in parseVCT() 970 int sourceId = ((data[3] & 0xff) << 8) | (data[4] & 0xff); in parseEIT() local 1041 mListener.onEitParsed(sourceId, results); in parseEIT() 1055 int sourceId = ((data[9] & 0xff) << 8) | (data[10] & 0xff); in parseETT() local 1058 List<EttItem> ettItems = mParsedEttItems.get(sourceId); in parseETT() [all …]
|
D | PsipData.java | 165 int sourceId) { in VctItem() argument 173 mSourceId = sourceId; in VctItem()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | ProfileAggregator.java | 54 String accountName, long rawContactId, String sourceId, String displayName) { in appendLookupKey() argument
|
D | AbstractContactAggregator.java | 1559 String accountName, long rawContactId, String sourceId, String displayName) { in appendLookupKey() argument 1561 sourceId, displayName); in appendLookupKey()
|