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

1 2

  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_notification.py 63 channel_id = re.findall(r'channel identifier: (?P<id>.*)', stderr)
64 self.assertEqual(len(channel_id), 1)
68 channel_id = channel_id[0]
71 self.RunGsUtil(['notification', 'stopchannel', channel_id, resource_id])
  /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;
  /hardware/libhardware/include/hardware/
bt_hl.h 81 typedef void (* bthl_channel_state_callback)(int app_id, bt_bdaddr_t *bd_addr, int mdep_cfg_index, int channel_id, bthl_channel_state_t state, int fd);
110 bt_status_t (*connect_channel)(int app_id, bt_bdaddr_t *bd_addr, int mdep_cfg_index, int *channel_id);
113 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)));
voice_engine_impl.h 137 virtual rtc::scoped_ptr<voe::ChannelProxy> GetChannelProxy(int channel_id);
  /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...]
call_test.h 116 channel_id(-1),
123 int channel_id; member in struct:webrtc::test::CallTest::VoiceEngineState
mock_voice_engine.h 33 testing::Invoke([](int channel_id) {
43 MOCK_METHOD1(ChannelProxyFactory, voe::ChannelProxy*(int channel_id));
46 rtc::scoped_ptr<voe::ChannelProxy> GetChannelProxy(int channel_id) override {
47 return rtc::scoped_ptr<voe::ChannelProxy>(ChannelProxyFactory(channel_id));
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
notification.py 37 gsutil notification stopchannel channel_id resource_id
68 The channel_id and resource_id parameters should match the values from the
218 channel_id = channel.id
222 self.logger.info('Watch channel identifier: %s', channel_id)
229 channel_id = self.args[0]
233 channel_id, resource_id)
234 self.gsutil_api.StopChannel(channel_id, resource_id, provider='gs')
  /system/bt/btif/include/
btif_hl.h 134 int channel_id; member in struct:__anon73725
187 int channel_id; member in struct:__anon73729
192 int channel_id; member in struct:__anon73730
227 int channel_id; member in struct:__anon73732
278 int channel_id; member in struct:__anon73736
  /external/chromium-trace/catapult/third_party/apiclient/googleapiclient/
channel.py 246 channel_id = headers[X_GOOG_CHANNEL_ID]
247 if channel.id != channel_id:
249 'Channel id mismatch: %s != %s' % (channel.id, channel_id))
  /system/bt/btif/src/
btif_hl.c 184 BOOLEAN btif_hl_if_channel_setup_pending(int channel_id, UINT8 *p_app_idx, UINT8 *p_mcl_idx)
202 p_mcb->is_connected && p_mcb->pcb.channel_id == channel_id )
214 BTIF_TRACE_DEBUG("%s found=%d channel_id=0x%08x",
215 __FUNCTION__, found, channel_id, *p_app_idx, *p_mcl_idx);
677 btif_hl_pend_dch_op_t op, int *channel_id){
703 *channel_id =
704 p_pcb->channel_id = (int) btif_hl_get_next_channel_id(app_id);
813 btif_hl_pend_dch_op_t op, int *channel_id){
859 *channel_id
1519 int channel_id; local
    [all...]
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_hdp.cpp 63 int channel_id, bthl_channel_state_t state, int fd) {
87 mdep_cfg_index, channel_id, (jint) state, fileDescriptor);
233 static jboolean disconnectChannelNative(JNIEnv *env, jobject object, jint channel_id) {
237 if ( (status = sBluetoothHdpInterface->destroy_channel(channel_id)) !=
  /external/webrtc/webrtc/p2p/base/
turnport.cc 114 TurnChannelBindRequest(TurnPort* port, TurnEntry* entry, int channel_id,
136 TurnEntry(TurnPort* port, int channel_id,
141 int channel_id() const { return channel_id_; } function in class:cricket::TurnEntry
143 void set_channel_id(int channel_id) { channel_id_ = channel_id; }
819 void TurnPort::HandleChannelData(int channel_id, const char* data,
845 TurnEntry* entry = FindEntry(channel_id);
848 << "channel, channel_id=" << channel_id;
    [all...]
turnserver.cc 731 int channel_id = channel_attr->value() >> 16; local
732 if (channel_id < kMinChannelNumber || channel_id > kMaxChannelNumber) {
739 Channel* channel1 = FindChannel(channel_id);
748 channel1 = new Channel(thread_, channel_id, peer_attr->GetAddress());
759 LOG_J(LS_INFO, this) << "Bound channel, id=" << channel_id
770 uint16_t channel_id = rtc::GetBE16(data); local
771 Channel* channel = FindChannel(channel_id);
778 << channel_id;
850 int channel_id) const
    [all...]
turnport.h 153 bool SetEntryChannelId(const rtc::SocketAddress& address, int channel_id);
223 void HandleChannelData(int channel_id, const char* data, size_t size,
238 TurnEntry* FindEntry(int channel_id) const;
  /packages/apps/TV/usbtuner/proto/
channel.proto 35 optional int64 channel_id = 10;
  /external/autotest/server/cros/ap_configurators/
westerndigitaln600_ap_configurator.py 260 channel_id = 'channel'
268 channel_id = 'channel_Aband'
274 self.wait_for_object_by_id(channel_id)
275 self.select_item_from_popup_by_id(channel_choices[position], channel_id)
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
cloud_api_delegator.py 274 def WatchBucket(self, bucket_name, address, channel_id, token=None,
277 bucket_name, address, channel_id, token=token, fields=fields)
279 def StopChannel(self, channel_id, resource_id, provider=None):
280 return self._GetApi(provider).StopChannel(channel_id, resource_id)
cloud_api.py 474 def WatchBucket(self, bucket_name, address, channel_id, token=None,
481 channel_id: Unique ID string for the channel.
496 def StopChannel(self, channel_id, resource_id, provider=None):
500 channel_id: Unique ID string for the channel.
  /external/webrtc/webrtc/modules/video_render/ios/
video_render_ios_gles20.mm 209 int channel_id = r_it->second;
211 agl_channels_.find(channel_id);
  /external/boringssl/src/ssl/test/
bssl_shim.cc 97 ScopedEVP_PKEY channel_id; member in struct:TestState
511 *out_pkey = GetTestState(ssl)->channel_id.release();
875 test_state->channel_id = std::move(pkey);
1032 uint8_t channel_id[64]; local
    [all...]

Completed in 1639 milliseconds

1 2