/frameworks/support/tv-provider/tests/src/android/support/media/tv/ |
D | ChannelTest.java | 56 Channel emptyChannel = new Channel.Builder() in testEmptyChannel() 59 compareChannel(emptyChannel, Channel.fromCursor(getChannelCursor(contentValues)), true); in testEmptyChannel() 66 Channel sampleChannel = new Channel.Builder() in testSampleChannel() 76 compareChannel(sampleChannel, Channel.fromCursor(getChannelCursor(contentValues)), true); in testSampleChannel() 78 Channel clonedSampleChannel = new Channel.Builder(sampleChannel).build(); in testSampleChannel() 84 Channel fullyPopulatedChannel = createFullyPopulatedChannel(); in testFullyPopulatedChannel() 86 compareChannel(fullyPopulatedChannel, Channel.fromCursor(getChannelCursor(contentValues)), in testFullyPopulatedChannel() 89 Channel clonedFullyPopulatedChannel = new Channel.Builder(fullyPopulatedChannel).build(); in testFullyPopulatedChannel() 98 Channel fullyPopulatedChannel = createFullyPopulatedChannel(); in testChannelWithSystemContentProvider() 104 Channel channelFromSystemDb = loadChannelFromContentProvider(resolver, channelUri); in testChannelWithSystemContentProvider() [all …]
|
D | ProgramTest.java | 102 Channel channel = new Channel.Builder() in testChannelWithSystemContentProvider() 124 Channel channel = new Channel.Builder() in testProgramUpdateWithContentProvider()
|
D | PreviewProgramTest.java | 107 Channel channel = new Channel.Builder() in testPreviewProgramWithSystemContentProvider() 130 Channel channel = new Channel.Builder() in testPreviewProgramUpdateWithContentProvider()
|
D | ChannelLogoUtilsTest.java | 42 ContentValues contentValues = new Channel.Builder() in setUp()
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
D | WifiP2pManager.java | 670 public static class Channel { class in WifiP2pManager 671 Channel(Context context, Looper looper, ChannelListener l) { in Channel() method in WifiP2pManager.Channel 863 private static void checkChannel(Channel c) { in checkChannel() 891 public Channel initialize(Context srcContext, Looper srcLooper, ChannelListener listener) { in initialize() 899 public Channel initializeInternal(Context srcContext, Looper srcLooper, in initializeInternal() 904 private Channel initalizeChannel(Context srcContext, Looper srcLooper, ChannelListener listener, in initalizeChannel() 908 Channel c = new Channel(srcContext, srcLooper, listener); in initalizeChannel() 936 public void discoverPeers(Channel c, ActionListener listener) { in discoverPeers() 952 public void stopPeerDiscovery(Channel c, ActionListener listener) { in stopPeerDiscovery() 979 public void connect(Channel c, WifiP2pConfig config, ActionListener listener) { in connect() [all …]
|
/frameworks/native/libs/vr/libpdx/private/pdx/ |
D | service.h | 56 class Channel : public std::enable_shared_from_this<Channel> { 58 Channel() {} in Channel() function 59 virtual ~Channel() {} in ~Channel() 64 static std::shared_ptr<Channel> GetFromMessageInfo(const MessageInfo& info); 196 int flags, const std::shared_ptr<Channel>& channel, int* channel_id); 203 Service* service, int flags, const std::shared_ptr<Channel>& channel, 224 std::shared_ptr<Channel>* channel) const; 231 std::shared_ptr<Channel>* channel) const; 240 std::shared_ptr<Channel> base_pointer; in CheckChannel() 251 std::shared_ptr<Channel> base_pointer; in CheckChannel() [all …]
|
D | service_endpoint.h | 14 class Channel; variable 27 Channel* channel{nullptr}; 50 virtual Status<void> SetChannel(int channel_id, Channel* channel) = 0; 70 Channel* channel, 78 Channel** channel) = 0;
|
D | mock_service_endpoint.h | 14 MOCK_METHOD2(SetChannel, Status<void>(int channel_id, Channel* channel)); 20 Channel* channel, int* channel_id)); 23 Channel** channel));
|
/frameworks/native/services/vr/bufferhubd/ |
D | consumer_channel.h | 15 using Channel = pdx::Channel; 19 const std::shared_ptr<Channel> producer); 43 std::weak_ptr<Channel> producer_;
|
D | consumer_queue_channel.h | 22 const std::shared_ptr<Channel>& producer); 48 std::weak_ptr<Channel> producer_;
|
D | consumer_channel.cpp | 13 using android::pdx::Channel; 23 const std::shared_ptr<Channel> producer) in ConsumerChannel()
|
D | buffer_hub.h | 21 class BufferHubChannel : public pdx::Channel { 142 const std::shared_ptr<pdx::Channel>& channel) override;
|
/frameworks/native/libs/vr/libpdx/ |
D | service.cpp | 18 std::shared_ptr<Channel> Channel::GetFromMessageInfo(const MessageInfo& info) { in GetFromMessageInfo() 20 : std::shared_ptr<Channel>(); in GetFromMessageInfo() 27 channel_{Channel::GetFromMessageInfo(info)}, 382 int flags, const std::shared_ptr<Channel>& channel, int* channel_id) { in PushChannel() 392 Service* service, int flags, const std::shared_ptr<Channel>& channel, in PushChannel() 399 std::shared_ptr<Channel>* channel) const { in CheckChannel() 409 std::shared_ptr<Channel>* channel) const { in CheckChannel() 436 std::shared_ptr<Channel> Message::GetChannel() const { return channel_.lock(); } in GetChannel() 438 Status<void> Message::SetChannel(const std::shared_ptr<Channel>& chan) { in SetChannel() 475 std::shared_ptr<Channel> Service::OnChannelOpen(Message& /*message*/) { in OnChannelOpen() [all …]
|
D | service_tests.cpp | 11 using android::pdx::Channel; 90 MOCK_METHOD1(OnChannelOpen, std::shared_ptr<Channel>(Message& message)); 92 void(Message& message, const std::shared_ptr<Channel>& channel)); 172 auto test_channel = std::make_shared<Channel>(); in TEST_F() 200 auto test_channel = std::make_shared<Channel>(); in TEST_F() 224 auto channel = std::make_shared<Channel>(); in TEST_F() 238 auto channel = std::make_shared<Channel>(); in TEST_F() 766 auto test_channel = std::make_shared<Channel>(); in TEST_F() 770 std::shared_ptr<Channel> channel; in TEST_F() 782 std::shared_ptr<Channel> channel; in TEST_F() [all …]
|
/frameworks/native/libs/vr/libpdx_uds/private/uds/ |
D | service_endpoint.h | 43 Status<void> SetChannel(int channel_id, Channel* channel) override; 48 Channel* channel, 51 Channel** channel) override; 114 Channel* channel_state{nullptr}; 138 LocalHandle channel_fd, Channel* channel_state); 141 Channel* GetChannelState(int32_t channel_id);
|
/frameworks/native/libs/vr/libvrflinger/ |
D | display_manager_service.h | 18 class DisplayManager : public pdx::Channel { 43 std::shared_ptr<pdx::Channel> OnChannelOpen(pdx::Message& message) override; 45 const std::shared_ptr<pdx::Channel>& channel) override;
|
D | vsync_service.h | 37 class VSyncChannel : public pdx::Channel { 61 std::shared_ptr<pdx::Channel> OnChannelOpen(pdx::Message& message) override; 63 const std::shared_ptr<pdx::Channel>& channel) override;
|
D | display_manager_service.cpp | 13 using android::pdx::Channel; 43 std::shared_ptr<pdx::Channel> DisplayManagerService::OnChannelOpen( in OnChannelOpen() 61 pdx::Message& /*message*/, const std::shared_ptr<pdx::Channel>& channel) { in OnChannelClose()
|
D | vsync_service.cpp | 17 using android::pdx::Channel; 52 std::shared_ptr<Channel> VSyncService::OnChannelOpen(pdx::Message& message) { in OnChannelOpen() 62 const std::shared_ptr<Channel>& channel) { in OnChannelClose()
|
D | display_service.cpp | 14 using android::pdx::Channel; 42 const std::shared_ptr<Channel>& channel) { in OnChannelClose()
|
/frameworks/base/core/java/android/hardware/ |
D | SensorDirectChannel.java | 26 import java.nio.channels.Channel; 37 public final class SensorDirectChannel implements Channel {
|
/frameworks/support/tv-provider/src/android/support/media/tv/ |
D | Channel.java | 80 public final class Channel { class 97 private Channel(Builder builder) { in Channel() method in Channel 337 if (!(other instanceof Channel)) { in equals() 340 return mValues.equals(((Channel) other).mValues); in equals() 397 public static Channel fromCursor(Cursor cursor) { in fromCursor() 577 public Builder(Channel other) { in Builder() 950 public Channel build() { in build() 951 return new Channel(this); in build()
|
/frameworks/base/proto/src/ |
D | wifi.proto | 299 // Router Channel A. 302 // Router Channel B. 305 // Router Channel G. 308 // Router Channel N. 311 // Router Channel AC. 320 // Channel on which the connection takes place. 332 // Channel information.
|
/frameworks/native/libs/vr/libpdx_uds/ |
D | service_framework_tests.cpp | 26 using android::pdx::Channel; 73 class TestChannel : public Channel { 92 std::shared_ptr<Channel> OnChannelOpen(Message& message) override { in OnChannelOpen() 97 const std::shared_ptr<Channel>& channel) override { in OnChannelClose()
|
D | service_endpoint.cpp | 262 Status<void> Endpoint::SetChannel(int channel_id, Channel* channel) { in SetChannel() 279 LocalHandle channel_fd, Channel* channel_state) { in OnNewChannelLocked() 425 Channel* channel, in PushChannel() 454 Channel** /*channel*/) { in CheckChannel() argument 459 Channel* Endpoint::GetChannelState(int32_t channel_id) { in GetChannelState()
|