Home
last modified time | relevance | path

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

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DRoundable.kt77 sourceType: SourceType, in <lambda>()
86 roundnessMap.remove(sourceType) in <lambda>()
88 roundnessMap[sourceType] = value in <lambda>()
121 sourceType: SourceType, in <lambda>()
125 sourceType = sourceType, in <lambda>()
144 sourceType: SourceType, in <lambda>()
153 roundnessMap.remove(sourceType) in <lambda>()
155 roundnessMap[sourceType] = value in <lambda>()
188 sourceType: SourceType, in <lambda>()
192 sourceType = sourceType, in <lambda>()
[all …]
/frameworks/base/core/java/android/hardware/hdmi/
DHdmiTvClient.java340 public void startTimerRecording(int recorderAddress, int sourceType, TimerRecordSource source) {
345 checkTimerRecordingSourceType(sourceType);
350 mService.startTimerRecording(recorderAddress, sourceType, data);
356 private void checkTimerRecordingSourceType(int sourceType) {
357 switch (sourceType) {
363 throw new IllegalArgumentException("Invalid source type:" + sourceType);
371 public void clearTimerRecording(int recorderAddress, int sourceType, TimerRecordSource source) {
376 checkTimerRecordingSourceType(sourceType);
380 mService.clearTimerRecording(recorderAddress, sourceType, data);
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);
499 public void startTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) {} in startTimerRecording() argument
502 public void clearTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) {} in clearTimerRecording() argument
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
DHdmiRecordSources.java65 /* package */ RecordSource(int sourceType, int extraDataSize) { in RecordSource() argument
66 mSourceType = sourceType; in RecordSource()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DRoundableTest.kt41 roundable.requestTopRoundness(value = 1f, sourceType = SOURCE1) in requestTopRoundness_update_and_invalidate_targetView()
49 roundable.requestBottomRoundness(value = 1f, sourceType = SOURCE1) in requestBottomRoundness_update_and_invalidate_targetView()
57 roundable.requestRoundness(top = 1f, bottom = 1f, sourceType = SOURCE1) in requestRoundness_update_and_invalidate_targetView()
70 roundable.requestRoundnessReset(sourceType = SOURCE1) in requestRoundnessReset_update_and_invalidate_targetView()
79 roundable.requestRoundness(top = 1f, bottom = 1f, sourceType = SOURCE1) in hasRoundedCorner_return_true_ifRoundnessIsGreaterThenZero()
82 roundable.requestRoundness(top = 1f, bottom = 0f, sourceType = SOURCE1) in hasRoundedCorner_return_true_ifRoundnessIsGreaterThenZero()
85 roundable.requestRoundness(top = 0f, bottom = 1f, sourceType = SOURCE1) in hasRoundedCorner_return_true_ifRoundnessIsGreaterThenZero()
88 roundable.requestRoundness(top = 0f, bottom = 0f, sourceType = SOURCE1) in hasRoundedCorner_return_true_ifRoundnessIsGreaterThenZero()
/frameworks/base/telephony/java/android/telephony/ims/
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()
250 @SourceType int sourceType) { in RcsContactUceCapability() argument
253 mSourceType = sourceType; in RcsContactUceCapability()
/frameworks/opt/net/ims/src/java/com/android/ims/rcs/uce/presence/pidfparser/
DRcsContactUceCapabilityWrapper.java50 public RcsContactUceCapabilityWrapper(@NonNull Uri contact, int sourceType, int requestResult) { in RcsContactUceCapabilityWrapper() argument
52 mSourceType = sourceType; in RcsContactUceCapabilityWrapper()
/frameworks/opt/net/ims/src/java/com/android/ims/rcs/uce/util/
DFeatureTags.java145 @SourceType int sourceType, List<String> featureTags) { in getContactCapability() argument
146 OptionsBuilder builder = new OptionsBuilder(contact, sourceType); in getContactCapability()
/frameworks/native/libs/gui/aidl/android/gui/
DHdrConversionCapability.aidl22 int sourceType;
/frameworks/base/media/java/android/media/metrics/
DMediaItemInfo.java161 @SourceType int sourceType, in MediaItemInfo()
175 mSourceType = sourceType; in MediaItemInfo()
329 public @NonNull Builder setSourceType(@SourceType int sourceType) { in setSourceType() argument
330 mSourceType = sourceType; in setSourceType()
/frameworks/base/services/core/java/com/android/server/hdmi/
DTimerRecordingAction.java46 TimerRecordingAction(HdmiCecLocalDevice source, int recorderAddress, int sourceType, in TimerRecordingAction() argument
50 mSourceType = sourceType; in TimerRecordingAction()
DHdmiCecLocalDeviceTv.java1565 void startTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) { in startTimerRecording() argument
1581 if (!checkTimerRecordingSource(sourceType, recordSource)) { in startTimerRecording()
1590 new TimerRecordingAction(this, recorderAddress, sourceType, recordSource)); in startTimerRecording()
1592 + sourceType + ", RecordSource:" + Arrays.toString(recordSource)); in startTimerRecording()
1595 private boolean checkTimerRecordingSource(int sourceType, byte[] recordSource) { in checkTimerRecordingSource() argument
1597 && HdmiTimerRecordSources.checkTimerRecordSource(sourceType, recordSource); in checkTimerRecordingSource()
1601 void clearTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) { in clearTimerRecording() argument
1616 if (!checkTimerRecordingSource(sourceType, recordSource)) { in clearTimerRecording()
1623 sendClearTimerMessage(recorderAddress, sourceType, recordSource); in clearTimerRecording()
1626 private void sendClearTimerMessage(final int recorderAddress, int sourceType, in sendClearTimerMessage() argument
[all …]
DHdmiControlService.java2810 public void startTimerRecording(final int recorderAddress, final int sourceType, in startTimerRecording() argument
2820 tv().startTimerRecording(recorderAddress, sourceType, recordSource); in startTimerRecording()
2826 public void clearTimerRecording(final int recorderAddress, final int sourceType, in clearTimerRecording() argument
2836 tv().clearTimerRecording(recorderAddress, sourceType, recordSource); in clearTimerRecording()
/frameworks/av/services/mediametrics/
DAudioTypes.cpp506 int32_t lookup<SOURCE_TYPE>(const std::string &sourceType) in lookup() argument
509 if (!TypeConverter<SourceTraits>::fromString(sourceType, value)) { in lookup()
516 std::string lookup<SOURCE_TYPE>(const std::string &sourceType) in lookup() argument
519 if (!TypeConverter<SourceTraits>::fromString(sourceType, value)) { in lookup()
522 return sourceType.c_str() + sizeof("AUDIO_SOURCE"); in lookup()
/frameworks/av/media/module/mpeg2ts/test/
DMpeg2tsUnitTest.cpp64 char sourceType = get<1>(params); in SetUp() local
68 mMediaType = (sourceType & 0x07); in SetUp()
/frameworks/base/core/tests/hdmitests/src/android/hardware/hdmi/
DHdmiAudioSystemClientTest.java318 public void startTimerRecording(final int recorderAddress, final int sourceType, in startTimerRecording() argument
323 public void clearTimerRecording(final int recorderAddress, final int sourceType, in clearTimerRecording() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DActivatableNotificationView.java804 for (SourceType sourceType : mOnDetachResetRoundness) { in onDetachedFromWindow()
805 requestRoundnessReset(sourceType); in onDetachedFromWindow()
821 public void addOnDetachResetRoundness(SourceType sourceType) { in addOnDetachResetRoundness() argument
822 mOnDetachResetRoundness.add(sourceType); in addOnDetachResetRoundness()
/frameworks/base/tools/aapt/
DZipFile.h225 const char* storageName, int sourceType, int compressionMethod,
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()
/frameworks/base/core/java/com/android/internal/display/
DBrightnessSynchronizer.java393 BrightnessUpdate(int sourceType, float brightness) { in BrightnessUpdate() argument
395 mSourceType = sourceType; in BrightnessUpdate()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationTestHelper.java287 SourceType sourceType in createRowWithRoundness() argument
290 row.requestRoundness(topRoundness, bottomRoundness, sourceType, /*animate = */ false); in createRowWithRoundness()
/frameworks/base/services/core/java/com/android/server/am/
DCachedAppOptimizer.java649 public final CompactSource sourceType; field in CachedAppOptimizer.AggregatedSourceCompactionStats
651 AggregatedSourceCompactionStats(CompactSource sourceType) { this.sourceType = sourceType; } in AggregatedSourceCompactionStats() argument
773 pw.println("-----" + stats.sourceType + "-----"); in dump()
/frameworks/base/services/core/java/com/android/server/wm/
DActivityMetricsLogger.java471 @VisibleForTesting final @SourceInfo.SourceType int sourceType; field in ActivityMetricsLogger.TransitionInfoSnapshot
511 sourceType = info.mSourceType; in TransitionInfoSnapshot()
1212 info.sourceType, in logAppTransition()
1396 info.sourceType, in logAppFullyDrawnMetrics()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DActivityMetricsLaunchObserverTests.java341 assertWithMessage("Record start source").that(info.sourceType) in testOnReportFullyDrawn()

12