/frameworks/base/core/java/android/hardware/hdmi/ |
D | HdmiTvClient.java | 335 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);
|
D | IHdmiControlService.aidl | 75 void startTimerRecording(int recorderAddress, int sourceType, in byte[] recordSource); in startTimerRecording() argument 76 void clearTimerRecording(int recorderAddress, int sourceType, in byte[] recordSource); in clearTimerRecording() argument
|
D | HdmiRecordSources.java | 65 /* package */ RecordSource(int sourceType, int extraDataSize) { in RecordSource() argument 66 mSourceType = sourceType; in RecordSource()
|
/frameworks/base/services/core/java/com/android/server/hdmi/ |
D | TimerRecordingAction.java | 46 TimerRecordingAction(HdmiCecLocalDevice source, int recorderAddress, int sourceType, in TimerRecordingAction() argument 50 mSourceType = sourceType; in TimerRecordingAction()
|
D | HdmiCecLocalDeviceTv.java | 1749 void startTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) { in startTimerRecording() argument 1765 if (!checkTimerRecordingSource(sourceType, recordSource)) { in startTimerRecording() 1774 new TimerRecordingAction(this, recorderAddress, sourceType, recordSource)); in startTimerRecording() 1776 + sourceType + ", RecordSource:" + Arrays.toString(recordSource)); in startTimerRecording() 1779 private boolean checkTimerRecordingSource(int sourceType, byte[] recordSource) { in checkTimerRecordingSource() argument 1781 && HdmiTimerRecordSources.checkTimerRecordSource(sourceType, recordSource); in checkTimerRecordingSource() 1785 void clearTimerRecording(int recorderAddress, int sourceType, byte[] recordSource) { in clearTimerRecording() argument 1800 if (!checkTimerRecordingSource(sourceType, recordSource)) { in clearTimerRecording() 1807 sendClearTimerMessage(recorderAddress, sourceType, recordSource); in clearTimerRecording() 1810 private void sendClearTimerMessage(final int recorderAddress, int sourceType, in sendClearTimerMessage() argument [all …]
|
D | HdmiControlService.java | 1936 public void startTimerRecording(final int recorderAddress, final int sourceType, in startTimerRecording() argument 1946 tv().startTimerRecording(recorderAddress, sourceType, recordSource); in startTimerRecording() 1952 public void clearTimerRecording(final int recorderAddress, final int sourceType, in clearTimerRecording() argument 1962 tv().clearTimerRecording(recorderAddress, sourceType, recordSource); in clearTimerRecording()
|
/frameworks/base/core/tests/hdmitests/src/android/hardware/hdmi/ |
D | HdmiAudioSystemClientTest.java | 297 public void startTimerRecording(final int recorderAddress, final int sourceType, in startTimerRecording() argument 302 public void clearTimerRecording(final int recorderAddress, final int sourceType, in clearTimerRecording() argument
|
/frameworks/base/tools/aapt/ |
D | ZipFile.h | 225 const char* storageName, int sourceType, int compressionMethod,
|
D | ZipFile.cpp | 359 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/biometrics/ |
D | BiometricService.java | 541 void notify(BiometricSourceType sourceType, boolean enabled) { in notify() argument 543 mCallback.onChanged(sourceType, enabled); in notify()
|
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/ |
D | DevicePolicyManagerService.java | 11312 final int sourceType = enforcingUser.getUserRestrictionSource(); in createUserRestrictionSupportIntent() local 11314 if (sourceType == UserManager.RESTRICTION_SOURCE_PROFILE_OWNER) { in createUserRestrictionSupportIntent() 11322 } else if (sourceType == UserManager.RESTRICTION_SOURCE_DEVICE_OWNER) { in createUserRestrictionSupportIntent() 11330 } else if (sourceType == UserManager.RESTRICTION_SOURCE_SYSTEM) { in createUserRestrictionSupportIntent()
|