Home
last modified time | relevance | path

Searched refs:enableReceiver (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/content/
DContentCaptureOptions.java88 public final boolean enableReceiver; field in ContentCaptureOptions
164 boolean enableReceiver, in ContentCaptureOptions() argument
176 enableReceiver,
204 boolean enableReceiver, in ContentCaptureOptions() argument
215 this.enableReceiver = enableReceiver;
274 .append(enableReceiver) in toString()
301 pw.print(enableReceiver); in dumpShort()
326 parcel.writeBoolean(enableReceiver); in writeToParcel()
346 final boolean enableReceiver = parcel.readBoolean();
359 enableReceiver,
[all …]
/frameworks/base/core/tests/coretests/src/android/content/
DContentCaptureOptionsTest.java139 .append(CONTENT_CAPTURE_OPTIONS.enableReceiver) in testToString()
142 .append(CONTENT_CAPTURE_OPTIONS.contentProtectionOptions.enableReceiver) in testToString()
184 assertThat(actual.enableReceiver).isEqualTo(CONTENT_CAPTURE_OPTIONS.enableReceiver); in testParcelSerializationDeserialization()
186 assertThat(actual.contentProtectionOptions.enableReceiver) in testParcelSerializationDeserialization()
187 .isEqualTo(CONTENT_CAPTURE_OPTIONS.contentProtectionOptions.enableReceiver); in testParcelSerializationDeserialization()
/frameworks/base/services/tests/servicestests/src/com/android/server/contentcapture/
DContentCaptureManagerServiceTest.java294 assertThat(actual.enableReceiver).isFalse(); in getOptions_contentCaptureDisabled_contentProtectionEnabled()
296 assertThat(actual.contentProtectionOptions.enableReceiver).isTrue(); in getOptions_contentCaptureDisabled_contentProtectionEnabled()
310 assertThat(actual.enableReceiver).isTrue(); in getOptions_contentCaptureEnabled_contentProtectionDisabled()
312 assertThat(actual.contentProtectionOptions.enableReceiver).isFalse(); in getOptions_contentCaptureEnabled_contentProtectionDisabled()
332 assertThat(actual.enableReceiver).isTrue(); in getOptions_contentCaptureEnabled_contentProtectionEnabled()
334 assertThat(actual.contentProtectionOptions.enableReceiver).isTrue(); in getOptions_contentCaptureEnabled_contentProtectionEnabled()
/frameworks/base/core/java/android/view/contentcapture/
DMainContentCaptureSession.java993 return mManager.mOptions.contentProtectionOptions.enableReceiver; in isContentProtectionReceiverEnabled()
997 return mManager.mOptions.enableReceiver; in isContentCaptureReceiverEnabled()
1003 return mManager.mOptions.contentProtectionOptions.enableReceiver in isContentProtectionEnabled()
DMainContentCaptureSessionV2.java1090 return mManager.mOptions.contentProtectionOptions.enableReceiver; in isContentProtectionReceiverEnabled()
1094 return mManager.mOptions.enableReceiver; in isContentCaptureReceiverEnabled()
1100 return mManager.mOptions.contentProtectionOptions.enableReceiver in isContentProtectionEnabled()
DContentCaptureManager.java580 if (mOptions.contentProtectionOptions.enableReceiver in ContentCaptureManager()