Home
last modified time | relevance | path

Searched refs:sourceType (Results 1 – 25 of 34) sorted by relevance

12

/aosp12/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiTvClient.java335 public void startTimerRecording(int recorderAddress, int sourceType, TimerRecordSource source) {
340 checkTimerRecordingSourceType(sourceType);
345 mService.startTimerRecording(recorderAddress, sourceType, data);
351 private void checkTimerRecordingSourceType(int sourceType) {
352 switch (sourceType) {
358 throw new IllegalArgumentException("Invalid source type:" + sourceType);
366 public void clearTimerRecording(int recorderAddress, int sourceType, TimerRecordSource source) {
371 checkTimerRecordingSourceType(sourceType);
375 mService.clearTimerRecording(recorderAddress, sourceType, data);
H A DHdmiControlServiceWrapper.java249 public void startTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) {
251 recorderAddress, sourceType, recordSource);
255 public void clearTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) {
257 recorderAddress, sourceType, recordSource);
489 public void startTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) {} in startTimerRecording() argument
492 public void clearTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) {} in clearTimerRecording() argument
H A DIHdmiControlService.aidl84 void startTimerRecording(int recorderAddress, int sourceType, in byte[] recordSource); in startTimerRecording() argument
85 void clearTimerRecording(int recorderAddress, int sourceType, in byte[] recordSource); in clearTimerRecording() argument
H A DHdmiRecordSources.java65 /* package */ RecordSource(int sourceType, int extraDataSize) { in RecordSource() argument
66 mSourceType = sourceType; in RecordSource()
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DAlbumSetSlidingWindow.java83 public int sourceType; field in AlbumSetSlidingWindow.AlbumSetEntry
240 AlbumSetEntry entry, String title, int totalCount, int sourceType) { in isLabelChanged() argument
243 || entry.sourceType != sourceType; in isLabelChanged()
258 int sourceType = DataSourceType.identifySourceType(album); in updateAlbumSetEntry() local
259 if (isLabelChanged(entry, title, totalCount, sourceType)) { in updateAlbumSetEntry()
262 entry.sourceType = sourceType; in updateAlbumSetEntry()
270 slotIndex, title, totalCount, sourceType); in updateAlbumSetEntry()
486 int slotIndex, String title, int totalCount, int sourceType) { in AlbumLabelLoader() argument
490 mSourceType = sourceType; in AlbumLabelLoader()
543 entry.title, entry.totalCount, entry.sourceType); in onSlotSizeChanged()
H A DAlbumLabelMaker.java66 private Bitmap getOverlayAlbumIcon(int sourceType) { in getOverlayAlbumIcon() argument
67 switch (sourceType) { in getOverlayAlbumIcon()
118 String title, String count, int sourceType) { in requestLabel() argument
119 return new AlbumLabelJob(title, count, sourceType); in requestLabel()
137 public AlbumLabelJob(String title, String count, int sourceType) { in AlbumLabelJob() argument
140 mSourceType = sourceType; in AlbumLabelJob()
H A DManageCacheDrawer.java73 boolean available = isLocal(entry.sourceType) || chooseToCache; in renderSlot()
87 entry.sourceType, isCaching, chooseToCache, width, height); in renderSlot()
/aosp12/frameworks/base/telephony/java/android/telephony/ims/
H A DRcsContactUceCapability.java137 public OptionsBuilder(@NonNull Uri contact, @SourceType int sourceType) { in OptionsBuilder() argument
139 sourceType); in OptionsBuilder()
195 public PresenceBuilder(@NonNull Uri contact, @SourceType int sourceType, in PresenceBuilder() argument
198 sourceType); in PresenceBuilder()
240 @SourceType int sourceType) { in RcsContactUceCapability() argument
243 mSourceType = sourceType; in RcsContactUceCapability()
/aosp12/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
H A DCachedNumberLookupService.java46 boolean isBusiness(ContactSource.Type sourceType); in isBusiness() argument
48 boolean canReportAsInvalid(ContactSource.Type sourceType, String objectId); in canReportAsInvalid() argument
68 void setSource(ContactSource.Type sourceType, String name, long directoryId); in setSource() argument
H A DContactInfoHelper.java420 info.sourceType = ContactSource.Type.SOURCE_TYPE_DIRECTORY; in queryContactInfoForPhoneNumber()
423 info.sourceType = ContactSource.Type.SOURCE_TYPE_EXTENDED; in queryContactInfoForPhoneNumber()
592 public boolean isBusiness(ContactSource.Type sourceType) { in isBusiness() argument
593 return cachedNumberLookupService != null && cachedNumberLookupService.isBusiness(sourceType); in isBusiness()
604 public boolean canReportAsInvalid(ContactSource.Type sourceType, String objectId) { in canReportAsInvalid() argument
606 && cachedNumberLookupService.canReportAsInvalid(sourceType, objectId); in canReportAsInvalid()
633 info.sourceType = ContactSource.Type.SOURCE_TYPE_CEQUINT_CALLER_ID; in updateFromCequintCallerId()
H A DContactInfo.java62 public @NonNull ContactSource.Type sourceType = ContactSource.Type.UNKNOWN_SOURCE_TYPE; field in ContactInfo
/aosp12/frameworks/av/services/mediametrics/
H A DAudioTypes.cpp324 int32_t lookup<SOURCE_TYPE>(const std::string &sourceType)
327 if (!TypeConverter<SourceTraits>::fromString(sourceType, value)) {
334 std::string lookup<SOURCE_TYPE>(const std::string &sourceType)
337 if (!TypeConverter<SourceTraits>::fromString(sourceType, value)) {
340 return sourceType.c_str() + sizeof("AUDIO_SOURCE");
/aosp12/frameworks/opt/net/ims/src/java/com/android/ims/rcs/uce/util/
H A DFeatureTags.java130 @SourceType int sourceType, List<String> featureTags) { in getContactCapability() argument
131 OptionsBuilder builder = new OptionsBuilder(contact, sourceType); in getContactCapability()
/aosp12/packages/apps/Dialer/java/com/android/dialer/phonelookup/consolidator/
H A DPhoneLookupInfoConsolidator.java120 ContactSource.Type sourceType = in getContactSource() local
122 if (sourceType == null) { in getContactSource()
123 sourceType = ContactSource.Type.UNKNOWN_SOURCE_TYPE; in getContactSource()
125 return sourceType; in getContactSource()
/aosp12/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecLocalDeviceTv.java1429 void startTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) { in startTimerRecording() argument
1445 if (!checkTimerRecordingSource(sourceType, recordSource)) { in startTimerRecording()
1454 new TimerRecordingAction(this, recorderAddress, sourceType, recordSource)); in startTimerRecording()
1456 + sourceType + ", RecordSource:" + Arrays.toString(recordSource)); in startTimerRecording()
1459 private boolean checkTimerRecordingSource(int sourceType, byte[] recordSource) { in checkTimerRecordingSource() argument
1461 && HdmiTimerRecordSources.checkTimerRecordSource(sourceType, recordSource); in checkTimerRecordingSource()
1465 void clearTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) { in clearTimerRecording() argument
1480 if (!checkTimerRecordingSource(sourceType, recordSource)) { in clearTimerRecording()
1487 sendClearTimerMessage(recorderAddress, sourceType, recordSource); in clearTimerRecording()
1490 private void sendClearTimerMessage(final int recorderAddress, int sourceType, in sendClearTimerMessage() argument
[all …]
H A DTimerRecordingAction.java46 TimerRecordingAction(HdmiCecLocalDevice source, int recorderAddress, int sourceType, in TimerRecordingAction() argument
50 mSourceType = sourceType; in TimerRecordingAction()
/aosp12/packages/apps/Dialer/java/com/android/dialer/app/calllog/
H A DCallLogListItemViewHolder.java414 displayNumber, number, countryIso, callType, info.sourceType); in onMenuItemClick()
424 displayNumber, number, countryIso, callType, info.sourceType); in onMenuItemClick()
430 displayNumber, number, countryIso, callType, info.sourceType, isSpam, blockId); in onMenuItemClick()
435 displayNumber, number, countryIso, callType, info.sourceType); in onMenuItemClick()
775 && cachedNumberLookupService.canReportAsInvalid(info.sourceType, info.objectId); in bindActionButtons()
959 cachedNumberLookupService != null && cachedNumberLookupService.isBusiness(info.sourceType), in getContactType()
1000 displayNumber, number, countryIso, callType, info.sourceType); in onClick()
1013 displayNumber, number, countryIso, callType, info.sourceType); in onClick()
1022 displayNumber, number, countryIso, callType, info.sourceType, isSpam, blockId); in onClick()
1029 displayNumber, number, countryIso, callType, info.sourceType); in onClick()
[all …]
H A DCallLogAdapter.java1087 details.sourceType = info.sourceType; in loadData()
1112 if (details.sourceType == ContactSource.Type.SOURCE_TYPE_CNAP in getNumberType()
1113 || details.sourceType == ContactSource.Type.SOURCE_TYPE_CEQUINT_CALLER_ID) { in getNumberType()
1500 && contactInfo.sourceType == Type.SOURCE_TYPE_DIRECTORY) { in logCp2Metrics()
/aosp12/frameworks/av/media/libstagefright/mpeg2ts/test/
H A DMpeg2tsUnitTest.cpp65 char sourceType = get<1>(params); in SetUp() local
69 mMediaType = (sourceType & 0x07); in SetUp()
/aosp12/frameworks/base/core/tests/hdmitests/src/android/hardware/hdmi/
H A DHdmiAudioSystemClientTest.java317 public void startTimerRecording(final int recorderAddress, final int sourceType, in startTimerRecording() argument
322 public void clearTimerRecording(final int recorderAddress, final int sourceType, in clearTimerRecording() argument
/aosp12/frameworks/base/tools/aapt/
H A DZipFile.h225 const char* storageName, int sourceType, int compressionMethod,
H A DZipFile.cpp359 const char* storageName, int sourceType, int compressionMethod, in addCommon() argument
414 if (sourceType == ZipEntry::kCompressStored) { in addCommon()
459 } else if (sourceType == ZipEntry::kCompressDeflated) { in addCommon()
/aosp12/packages/apps/Dialer/java/com/android/dialer/app/contactinfo/
H A DContactPhotoLoader.java124 helper.isBusiness(contactInfo.sourceType) in createLetterTileDrawable()
/aosp12/packages/apps/Dialer/java/com/android/dialer/calllogutils/
H A DPhoneCallDetails.java85 public ContactSource.Type sourceType; field in PhoneCallDetails
/aosp12/packages/apps/Dialer/java/com/android/dialer/app/filterednumber/
H A DNumbersAdapter.java99 contactInfoHelper.isBusiness(info.sourceType) in loadContactPhoto()

12