Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/hardware/hdmi/
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);
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
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/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()
240 @SourceType int sourceType) { in RcsContactUceCapability() argument
243 mSourceType = sourceType; in RcsContactUceCapability()
/frameworks/opt/net/ims/src/java/com/android/ims/rcs/uce/util/
DFeatureTags.java130 @SourceType int sourceType, List<String> featureTags) { in getContactCapability() argument
131 OptionsBuilder builder = new OptionsBuilder(contact, sourceType); in getContactCapability()
/frameworks/av/services/mediametrics/
DAudioTypes.cpp322 int32_t lookup<SOURCE_TYPE>(const std::string &sourceType) in lookup() argument
325 if (!TypeConverter<SourceTraits>::fromString(sourceType, value)) { in lookup()
332 std::string lookup<SOURCE_TYPE>(const std::string &sourceType) in lookup() argument
335 if (!TypeConverter<SourceTraits>::fromString(sourceType, value)) { in lookup()
338 return sourceType.c_str() + sizeof("AUDIO_SOURCE"); in lookup()
/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.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 …]
DHdmiControlService.java2165 public void startTimerRecording(final int recorderAddress, final int sourceType, in startTimerRecording() argument
2175 tv().startTimerRecording(recorderAddress, sourceType, recordSource); in startTimerRecording()
2181 public void clearTimerRecording(final int recorderAddress, final int sourceType, in clearTimerRecording() argument
2191 tv().clearTimerRecording(recorderAddress, sourceType, recordSource); in clearTimerRecording()
/frameworks/av/media/libstagefright/mpeg2ts/test/
DMpeg2tsUnitTest.cpp65 char sourceType = get<1>(params); in SetUp() local
69 mMediaType = (sourceType & 0x07); in SetUp()
/frameworks/base/core/tests/hdmitests/src/android/hardware/hdmi/
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
/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/services/core/java/com/android/server/wm/
DActivityMetricsLogger.java380 @VisibleForTesting final @SourceInfo.SourceType int sourceType; field in ActivityMetricsLogger.TransitionInfoSnapshot
418 sourceType = info.mSourceType; in TransitionInfoSnapshot()
1012 info.sourceType, in logAppTransition()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DActivityMetricsLaunchObserverTests.java290 assertWithMessage("Record start source").that(info.sourceType) in testOnReportFullyDrawn()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java12735 final int sourceType = enforcingUser.getUserRestrictionSource();
12737 if (sourceType == UserManager.RESTRICTION_SOURCE_PROFILE_OWNER) {
12745 } else if (sourceType == UserManager.RESTRICTION_SOURCE_DEVICE_OWNER) {
12753 } else if (sourceType == UserManager.RESTRICTION_SOURCE_SYSTEM) {