Home
last modified time | relevance | path

Searched refs:channel (Results 1 – 5 of 5) sorted by relevance

/platform_testing/tests/functional/notificationtests/src/com/android/notification/functional/
DNotificationHelper.java294 NotificationChannel channel = (buzz ? mBuzzyChannel : mQuietChannel); in getChannel() local
295 if (channel == null) { in getChannel()
296 channel = mNotificationManager.getNotificationChannel(id); in getChannel()
298 if (channel == null){ in getChannel()
299 channel = new NotificationChannel(id, name, importance); in getChannel()
301 channel.enableVibration(true); in getChannel()
302 channel.setSound(null, null); in getChannel()
304 mNotificationManager.createNotificationChannel(channel); in getChannel()
306 return channel; in getChannel()
/platform_testing/libraries/system-helpers/sysui-helper/src/android/system/helpers/
DNotificationHelper.java75 NotificationChannel channel = new NotificationChannel(id, name, importance); in createChannel() local
76 channel.enableVibration(vibrate); in createChannel()
77 channel.setSound(null, null); in createChannel()
78 manager.createNotificationChannel(channel); in createChannel()
/platform_testing/libraries/audio-test-harness/client-lib/src/test/java/com/android/media/audiotestharness/client/grpc/
DGrpcAudioTestHarnessClientTests.java113 Channel channel = audioTestHarnessStubArgumentCaptor.getValue().getChannel(); in startCapture_createsNewStubWithProperChannel() local
114 assertEquals(mManagedChannel, channel); in startCapture_createsNewStubWithProperChannel()
/platform_testing/libraries/audio-test-harness/server/src/test/java/com/android/media/audiotestharness/server/service/
DAudioTestHarnessImplTests.java99 ManagedChannel channel = in setUp() local
102 mBlockingStub = AudioTestHarnessGrpc.newBlockingStub(channel); in setUp()
103 mStub = AudioTestHarnessGrpc.newStub(channel); in setUp()
/platform_testing/libraries/automotive-helpers/notifications-app-helper/src/android/platform/helpers/
DAutoNotificationMockingHelperImpl.java58 NotificationChannel channel = in AutoNotificationMockingHelperImpl() local
63 mNotificationManager.createNotificationChannel(channel); in AutoNotificationMockingHelperImpl()