HomeSort by relevance Sort by last modified time
    Searched refs:channel_id (Results 1 - 25 of 69) sorted by null

1 2 3

  /frameworks/native/services/vr/bufferhubd/
producer_queue_channel.cpp 18 int channel_id,
22 : BufferHubChannel(service, channel_id, channel_id, kProducerQueueType),
38 BufferHubService* service, int channel_id,
53 service, channel_id, config, usage_policy, &error));
94 return BufferInfo(channel_id(), consumer_channels_.size(), capacity_,
103 "ProducerQueueChannel::OnCreateConsumerQueue: channel_id=%d slient=%d",
104 channel_id(), silent);
106 int channel_id; local
107 auto status = message.PushChannel(0, nullptr, &channel_id);
    [all...]
detached_buffer_channel.cpp 15 int buffer_id, int channel_id,
19 : BufferHubChannel(service, buffer_id, channel_id, kDetachedBufferType),
68 "DetachedBufferChannel::~DetachedBufferChannel: channel_id=%d "
70 channel_id(), buffer_id());
123 // Note that the new ProducerChannel will have different channel_id, but
125 int channel_id; local
126 auto status = message.PushChannel(0, nullptr, &channel_id);
135 service(), buffer_id(), channel_id, std::move(buffer_),
145 service()->SetChannel(channel_id, std::move(channel));
producer_channel.cpp 39 int channel_id, IonBuffer buffer,
42 : BufferHubChannel(service, buffer_id, channel_id, kProducerType),
62 ProducerChannel::ProducerChannel(BufferHubService* service, int channel_id,
67 : BufferHubChannel(service, channel_id, channel_id, kProducerType),
141 BufferHubService* service, int buffer_id, int channel_id, IonBuffer buffer,
145 service, buffer_id, channel_id, std::move(buffer),
155 BufferHubService* service, int channel_id, uint32_t width, uint32_t height,
160 new ProducerChannel(service, channel_id, width, height, layer_count,
170 "ProducerChannel::~ProducerChannel: channel_id=%d buffer_id=%d
258 int channel_id; local
402 int channel_id; local
    [all...]
consumer_queue_channel.cpp 17 BufferHubService* service, int buffer_id, int channel_id,
19 : BufferHubChannel(service, buffer_id, channel_id, kConsumerQueueType),
27 ALOGD_IF(TRACE, "ConsumerQueueChannel::~ConsumerQueueChannel: channel_id=%d",
28 channel_id());
consumer_queue_channel.h 21 ConsumerQueueChannel(BufferHubService* service, int buffer_id, int channel_id,
producer_queue_channel.h 15 BufferHubService* service, int channel_id,
50 ProducerQueueChannel(BufferHubService* service, int channel_id,
71 // Provides access to the |channel_id| of all consumer channels associated
  /external/tensorflow/tensorflow/compiler/xla/service/
layout_assignment.h 233 // Returns true if channel_id has a layout constraint.
234 bool IsChannelConstrained(int64 channel_id) const {
235 return constraints_.count(channel_id) > 0;
238 // Given `shape`, apply the layout for `channel_id`. `channel_id` must already
240 Shape LayoutShapeForChannel(Shape shape, int64 channel_id) const {
241 CHECK(IsChannelConstrained(channel_id));
242 *shape.mutable_layout() = constraints_.at(channel_id);
246 // Returns the layout constraint for `channel_id`, which must already be
248 Layout LayoutForChannel(int64 channel_id) const
    [all...]
  /external/webrtc/webrtc/audio/
audio_state.cc 58 void AudioState::CallbackOnError(int channel_id, int err_code) {
61 // All call sites in VoE, as of this writing, specify -1 as channel_id.
62 RTC_DCHECK(channel_id == -1);
64 << channel_id << "."; local
audio_state.h 39 void CallbackOnError(int channel_id, int err_code) override;
  /frameworks/native/libs/vr/libvrflinger/
display_manager_service.h 20 DisplayManager(DisplayManagerService* service, int channel_id)
21 : service_(service), channel_id_(channel_id) {}
23 int channel_id() const { return channel_id_; } function in class:android::dvr::DisplayManager
  /system/bt/include/hardware/
bt_hl.h 81 int mdep_cfg_index, int channel_id,
111 int mdep_cfg_index, int* channel_id);
114 bt_status_t (*destroy_channel)(int channel_id);
  /external/webrtc/webrtc/voice_engine/
channel_manager.cc 76 ChannelOwner ChannelManager::GetChannel(int32_t channel_id) {
80 if (channels_[i].channel()->ChannelId() == channel_id)
92 void ChannelManager::DestroyChannel(int32_t channel_id) {
93 assert(channel_id >= 0);
104 channel->DisassociateSendChannel(channel_id);
106 if (channel->ChannelId() == channel_id) {
channel_manager.h 43 // Channel channel_owner = channel_manager.GetChannel(channel_id);
105 // ChannelOwner.channel() will be NULL if channel_id is invalid or no longer
107 ChannelOwner GetChannel(int32_t channel_id);
110 void DestroyChannel(int32_t channel_id);
voice_engine_impl.cc 67 int channel_id) {
68 RTC_DCHECK(channel_id >= 0);
72 new voe::ChannelProxy(channel_manager().GetChannel(channel_id)));
  /frameworks/native/libs/vr/libpdx/private/pdx/
mock_service_endpoint.h 14 MOCK_METHOD2(SetChannel, Status<void>(int channel_id, Channel* channel));
15 MOCK_METHOD1(CloseChannel, Status<void>(int channel_id));
17 Status<void>(int channel_id, int clear_mask, int set_mask));
20 Channel* channel, int* channel_id));
service_endpoint.h 50 virtual Status<void> SetChannel(int channel_id, Channel* channel) = 0;
55 virtual Status<void> CloseChannel(int channel_id) = 0;
59 virtual Status<void> ModifyChannelEvents(int channel_id, int clear_mask,
68 // |channel_id|, which may also be nullptr if not needed.
71 int* channel_id) = 0;
service.h 196 int flags, const std::shared_ptr<Channel>& channel, int* channel_id);
204 int* channel_id);
212 * channel_id - id of the channel if the |ref| is a valid reference to
218 * FAULT - |channel_id| or |channel| are non-nullptr and point to invalid
395 Status<void> SetChannel(int channel_id,
410 std::shared_ptr<Channel> GetChannel(int channel_id) const;
445 Status<void> CloseChannel(int channel_id);
454 Status<void> ModifyChannelEvents(int channel_id, int clear_mask,
464 * |channel_id|, which may also be nullptr if not needed.
477 int* channel_id);
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/private/uds/
service_endpoint.h 43 Status<void> SetChannel(int channel_id, Channel* channel) override;
44 Status<void> CloseChannel(int channel_id) override;
45 Status<void> ModifyChannelEvents(int channel_id, int clear_mask,
49 int* channel_id) override;
131 void BuildCloseMessage(int32_t channel_id, Message* message);
139 Status<void> CloseChannelLocked(int32_t channel_id);
141 Channel* GetChannelState(int32_t channel_id);
142 BorrowedHandle GetChannelSocketFd(int32_t channel_id);
144 int32_t channel_id);
  /external/libese/apps/weaver/
weaver.c 71 session->channel_id = 0;
116 session->channel_id = rx_buf[rx_len - 3];
119 uint8_t chan = kSelectApplet[0] | session->channel_id;
152 if (!session->active || session->channel_id == 0) {
158 close_channel[0] |= session->channel_id;
159 close_channel[3] |= session->channel_id;
173 session->channel_id = 0;
183 if (!session->active || session->channel_id == 0) {
193 get_num_slots[0] |= session->channel_id;
226 if (!session->active || session->channel_id == 0)
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/
service_endpoint.cpp 265 Status<void> Endpoint::SetChannel(int channel_id, Channel* channel) {
267 auto channel_data = channels_.find(channel_id);
323 Status<void> Endpoint::CloseChannel(int channel_id) {
325 return CloseChannelLocked(channel_id);
328 Status<void> Endpoint::CloseChannelLocked(int32_t channel_id) {
329 ALOGD_IF(TRACE, "Endpoint::CloseChannelLocked: channel_id=%d", channel_id);
331 auto iter = channels_.find(channel_id);
353 Status<void> Endpoint::ModifyChannelEvents(int channel_id, int clear_mask,
357 auto search = channels_.find(channel_id);
500 int32_t channel_id = GetChannelId(channel_fd); local
608 const int32_t channel_id = message->GetChannelId(); local
    [all...]
  /external/webrtc/webrtc/test/
call_test.cc 125 EXPECT_EQ(0, voe_send_.base->StartSend(voe_send_.channel_id));
131 EXPECT_EQ(0, voe_recv_.base->StartPlayout(voe_recv_.channel_id));
132 EXPECT_EQ(0, voe_recv_.base->StartReceive(voe_recv_.channel_id));
143 EXPECT_EQ(0, voe_recv_.base->StopReceive(voe_recv_.channel_id));
144 EXPECT_EQ(0, voe_recv_.base->StopPlayout(voe_recv_.channel_id));
150 EXPECT_EQ(0, voe_send_.base->StopSend(voe_send_.channel_id));
183 RTC_DCHECK(num_audio_streams == 0 || voe_send_.channel_id >= 0);
201 audio_send_config_.voe_channel_id = voe_send_.channel_id;
229 RTC_DCHECK(voe_send_.channel_id >= 0);
233 audio_config.voe_channel_id = voe_recv_.channel_id;
    [all...]
  /frameworks/base/core/proto/android/app/
notification.proto 32 optional string channel_id = 1 [ (.android.privacy).dest = DEST_EXPLICIT ];
  /frameworks/native/libs/vr/libpdx/
service.cpp 379 int flags, const std::shared_ptr<Channel>& channel, int* channel_id) {
382 return svc->PushChannel(this, flags, channel, channel_id);
390 int* channel_id) {
392 return service->PushChannel(this, flags, channel, channel_id);
479 Status<void> Service::SetChannel(int channel_id,
484 const auto status = endpoint_->SetChannel(channel_id, channel.get());
493 channels_.erase(channel_id);
496 channels_[channel_id] = channel;
498 channels_.erase(channel_id);
503 std::shared_ptr<Channel> Service::GetChannel(int channel_id) const
    [all...]
  /external/libese/apps/weaver/include/ese/app/
weaver.h 50 uint8_t channel_id; member in struct:EseWeaverSession
  /system/bt/btif/include/
btif_hl.h 120 int channel_id; member in struct:__anon1719
169 int channel_id; member in struct:__anon1723
173 int channel_id; member in struct:__anon1724
206 int channel_id; member in struct:__anon1726
257 int channel_id; member in struct:__anon1730

Completed in 594 milliseconds

1 2 3