Searched defs:channel_id (Results 26 - 50 of 69) sorted by relevance

123

/external/chromium_org/extensions/browser/api/cast_channel/
H A Dlogger.cc125 int channel_id = cast_socket.id(); local
128 LogSocketEvent(channel_id, event);
138 void Logger::LogSocketEvent(int channel_id, EventType event_type) { argument
141 LogSocketEventWithDetails(channel_id, event_type, std::string());
144 void Logger::LogSocketEventWithDetails(int channel_id, argument
153 LogSocketEvent(channel_id, event);
156 void Logger::LogSocketEventWithRv(int channel_id, argument
165 LogSocketEvent(channel_id, event);
179 void Logger::LogSocketReadyState(int channel_id, proto::ReadyState new_state) { argument
185 LogSocketEvent(channel_id, even
188 LogSocketConnectState(int channel_id, proto::ConnectionState new_state) argument
198 LogSocketReadState(int channel_id, proto::ReadState new_state) argument
207 LogSocketWriteState(int channel_id, proto::WriteState new_state) argument
216 LogSocketErrorState(int channel_id, proto::ErrorState new_state) argument
225 LogSocketEventForMessage(int channel_id, EventType event_type, const std::string& message_namespace, const std::string& details) argument
239 LogSocketChallengeReplyEvent(int channel_id, const AuthResult& auth_result) argument
260 LogSocketEvent(int channel_id, const SocketEvent& socket_event) argument
[all...]
H A Dcast_channel_api.cc63 channel_info->channel_id = socket.id();
189 int channel_id) {
190 CastSocket* socket = GetSocket(channel_id);
192 SetResultFromError(channel_id,
208 void CastChannelAsyncApiFunction::RemoveSocket(int channel_id) { argument
211 manager_->Remove(extension_->id(), channel_id);
222 void CastChannelAsyncApiFunction::SetResultFromError(int channel_id, argument
225 channel_info.channel_id = channel_id;
236 CastSocket* CastChannelAsyncApiFunction::GetSocket(int channel_id) { argument
188 GetSocketOrCompleteWithError( int channel_id) argument
433 int channel_id = params_->channel.channel_id; local
468 int channel_id = params_->channel.channel_id; local
[all...]
/external/chromium_org/ipc/
H A Dipc_logging.cc121 void Logging::OnSendMessage(Message* message, const std::string& channel_id) { argument
134 data->channel = channel_id;
151 const std::string& channel_id) {
159 GenerateLogData(channel_id, message, &data, true);
150 OnPostDispatchMessage(const Message& message, const std::string& channel_id) argument
H A Dipc_channel_win.cc146 const std::string& channel_id) {
147 if (WaitNamedPipe(PipeName(channel_id, NULL).c_str(), 1))
226 const std::string& channel_id, int32* secret) {
230 size_t index = channel_id.find_first_of('\\');
233 base::StringToInt(channel_id.substr(index + 1), secret);
234 return base::ASCIIToWide(name.append(channel_id.substr(0, index - 1)));
240 return base::ASCIIToWide(name.append(channel_id));
545 bool Channel::IsNamedServerInitialized(const std::string& channel_id) { argument
546 return ChannelWin::IsNamedServerInitialized(channel_id);
145 IsNamedServerInitialized( const std::string& channel_id) argument
225 PipeName( const std::string& channel_id, int32* secret) argument
H A Dipc_channel_posix.cc103 int Lookup(const std::string& channel_id) { argument
106 ChannelToFDMap::const_iterator i = map_.find(channel_id);
113 // channel_id doesn't exist
114 void Remove(const std::string& channel_id) { argument
116 map_.erase(channel_id);
119 // Insert a mapping from @channel_id to @fd. It's a fatal error to insert a
120 // mapping if one already exists for the given channel_id
121 void Insert(const std::string& channel_id, int fd) { argument
125 ChannelToFDMap::const_iterator i = map_.find(channel_id);
127 << "for '" << channel_id << "' whil
629 IsNamedServerInitialized( const std::string& channel_id) argument
1078 IsNamedServerInitialized( const std::string& channel_id) argument
[all...]
/external/chromium_org/net/quic/crypto/
H A Dcrypto_handshake.h122 // channel_id is set by servers to a ChannelID key when the client correctly
126 std::string channel_id; member in struct:net::QuicCryptoNegotiatedParameters
/external/chromium_org/net/ssl/
H A Ddefault_channel_id_store_unittest.cc74 const DefaultChannelIDStore::ChannelID& channel_id) OVERRIDE;
76 const DefaultChannelIDStore::ChannelID& channel_id) OVERRIDE;
106 const DefaultChannelIDStore::ChannelID& channel_id) {
107 channel_ids_[channel_id.server_identifier()] = channel_id;
111 const DefaultChannelIDStore::ChannelID& channel_id) {
112 channel_ids_.erase(channel_id.server_identifier());
493 ChannelIDStore::ChannelIDList::iterator channel_id = channel_ids.begin(); local
494 EXPECT_EQ("both.com", channel_id->server_identifier());
495 EXPECT_EQ("e", channel_id
105 AddChannelID( const DefaultChannelIDStore::ChannelID& channel_id) argument
110 DeleteChannelID( const DefaultChannelIDStore::ChannelID& channel_id) argument
542 ChannelIDStore::ChannelIDList::iterator channel_id = channel_ids.begin(); local
[all...]
H A Ddefault_channel_id_store.cc252 ChannelID* channel_id = it->second;
253 *expiration_time = channel_id->expiration_time();
254 *private_key_result = channel_id->private_key();
255 *cert_result = channel_id->cert();
399 ChannelID* channel_id = cur->second; local
401 channel_id->creation_time() >= delete_begin) &&
402 (delete_end.is_null() || channel_id->creation_time() < delete_end)) {
404 store_->DeleteChannelID(*channel_id);
405 delete channel_id;
449 ChannelID* channel_id
456 InternalInsertChannelID( const std::string& server_identifier, ChannelID* channel_id) argument
[all...]
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_channel_group.cc196 void ChannelGroup::AddChannel(int channel_id) { argument
197 channels_.insert(channel_id);
200 void ChannelGroup::RemoveChannel(int channel_id, unsigned int ssrc) { argument
201 channels_.erase(channel_id);
205 bool ChannelGroup::HasChannel(int channel_id) { argument
206 return channels_.find(channel_id) != channels_.end();
229 bool ChannelGroup::SetChannelRembStatus(int channel_id, bool sender, argument
H A Dvie_channel_manager.cc77 int ViEChannelManager::CreateChannel(int* channel_id, argument
126 *channel_id = new_channel_id;
127 group->AddChannel(*channel_id);
135 int ViEChannelManager::CreateChannel(int* channel_id, argument
200 *channel_id = new_channel_id;
201 channel_group->AddChannel(*channel_id);
208 int ViEChannelManager::DeleteChannel(int channel_id) { argument
219 ChannelMap::iterator c_it = channel_map_.find(channel_id);
227 ReturnChannelId(channel_id);
230 EncoderMap::iterator e_it = vie_encoder_map_.find(channel_id);
312 ConnectVoiceChannel(int channel_id, int audio_channel_id) argument
326 DisconnectVoiceChannel(int channel_id) argument
341 SetRembStatus(int channel_id, bool sender, bool receiver) argument
354 SetReservedTransmitBitrate( int channel_id, uint32_t reserved_transmit_bitrate_bps) argument
367 UpdateSsrcs(int channel_id, const std::list<unsigned int>& ssrcs) argument
388 SetBandwidthEstimationConfig( int channel_id, const webrtc::Config& config) argument
399 GetEstimatedSendBandwidth( int channel_id, uint32_t* estimated_bandwidth) const argument
410 GetEstimatedReceiveBandwidth( int channel_id, uint32_t* estimated_bandwidth) const argument
425 CreateChannelObject( int channel_id, ViEEncoder* vie_encoder, RtcpBandwidthObserver* bandwidth_observer, RemoteBitrateEstimator* remote_bitrate_estimator, RtcpRttStats* rtcp_rtt_stats, RtcpIntraFrameObserver* intra_frame_observer, bool sender) argument
501 ReturnChannelId(int channel_id) argument
540 ChannelsUsingViEEncoder(int channel_id, ChannelList* channels) const argument
574 ChannelsUsingViEEncoder( int channel_id, ChannelList* channels) const argument
[all...]
H A Dvie_receiver.cc33 ViEReceiver::ViEReceiver(const int32_t channel_id, argument
42 channel_id, Clock::GetRealTimeClock(), this, rtp_feedback,
/external/chromium_org/chrome/browser/chromeos/login/
H A Dprofile_auth_data_unittest.cc197 net::ChannelIDStore::ChannelID* channel_id = &user_channel_ids.front(); local
198 EXPECT_EQ(kChannelIDServerIdentifier, channel_id->server_identifier());
199 EXPECT_EQ(expected_private_key, channel_id->private_key());
200 EXPECT_EQ(expected_cert, channel_id->cert());
/external/chromium_org/chrome/browser/extensions/api/push_messaging/
H A Dpush_messaging_api.cc241 std::string channel_id; local
243 channel_id = gaia_id;
244 channel_id += kChannelIdSeparator;
245 channel_id += extension_id();
254 result.channel_id = channel_id;
/external/chromium_org/chrome/browser/ui/webui/
H A Dcookies_tree_model_util.cc253 dict->SetString(kKeyType, "channel_id");
256 const net::ChannelIDStore::ChannelID& channel_id = local
257 *node.GetDetailedInfo().channel_id;
259 dict->SetString(kKeyServerId, channel_id.server_identifier());
264 channel_id.creation_time())));
/external/chromium_org/chrome/service/
H A Dservice_utility_process_host.cc209 std::string channel_id = child_process_host_->CreateChannel(); local
210 if (channel_id.empty())
221 cmd_line.AppendSwitchASCII(switches::kProcessChannelID, channel_id);
/external/chromium_org/components/nacl/zygote/
H A Dnacl_fork_delegate_linux.cc337 const std::string& channel_id) {
353 write_pickle.WriteString(channel_id);
335 Fork(const std::string& process_type, const std::vector<int>& fds, const std::string& channel_id) argument
/external/chromium_org/content/browser/
H A Dppapi_plugin_process_host.cc286 std::string channel_id = process_->GetHost()->CreateChannel(); local
287 if (channel_id.empty()) {
313 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id);
/external/chromium_org/content/zygote/
H A Dzygote_linux.cc344 const std::string& channel_id,
370 pid = helper->Fork(process_type, fds, channel_id);
476 std::string channel_id; local
491 channel_id = arg.substr(channel_id_prefix.length());
518 channel_id,
342 ForkWithRealPid(const std::string& process_type, const base::GlobalDescriptors::Mapping& fd_mapping, const std::string& channel_id, base::ScopedFD pid_oracle, std::string* uma_name, int* uma_sample, int* uma_boundary_value) argument
/external/chromium_org/net/extras/sqlite/
H A Dsqlite_channel_id_store.cc78 void AddChannelID(const DefaultChannelIDStore::ChannelID& channel_id);
81 void DeleteChannelID(const DefaultChannelIDStore::ChannelID& channel_id);
113 const DefaultChannelIDStore::ChannelID& channel_id)
114 : op_(op), channel_id_(channel_id) {}
117 const DefaultChannelIDStore::ChannelID& channel_id() const { function in class:net::SQLiteChannelIDStore::Backend::PendingOperation
129 const DefaultChannelIDStore::ChannelID& channel_id);
241 scoped_ptr<DefaultChannelIDStore::ChannelID> channel_id(
248 channel_ids->push_back(channel_id.release());
429 const DefaultChannelIDStore::ChannelID& channel_id) {
430 BatchOperation(PendingOperation::CHANNEL_ID_ADD, channel_id);
112 PendingOperation(OperationType op, const DefaultChannelIDStore::ChannelID& channel_id) argument
428 AddChannelID( const DefaultChannelIDStore::ChannelID& channel_id) argument
433 DeleteChannelID( const DefaultChannelIDStore::ChannelID& channel_id) argument
449 BatchOperation( PendingOperation::OperationType op, const DefaultChannelIDStore::ChannelID& channel_id) argument
611 AddChannelID( const DefaultChannelIDStore::ChannelID& channel_id) argument
616 DeleteChannelID( const DefaultChannelIDStore::ChannelID& channel_id) argument
[all...]
/external/chromium_org/third_party/boringssl/src/ssl/test/
H A Dbssl_shim.cc474 uint8_t channel_id[64]; local
475 if (!SSL_get_tls_channel_id(ssl, channel_id, sizeof(channel_id))) {
481 channel_id, 64) != 0) {
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dmessage_service.cc53 #define GET_CHANNEL_OPENER_ID(channel_id) ((channel_id) * 2)
54 #define GET_CHANNEL_RECEIVERS_ID(channel_id) ((channel_id) * 2 + 1)
140 unsigned channel_id = local
143 if (channel_id == 0) {
149 unsigned port1_id = channel_id * 2;
150 unsigned port2_id = channel_id * 2 + 1;
157 DCHECK_EQ(GET_CHANNEL_ID(port1_id), channel_id); local
158 DCHECK_EQ(GET_CHANNEL_OPENER_ID(channel_id), port1_i
504 int channel_id = GET_CHANNEL_ID(receiver_port_id); local
513 int channel_id = GET_CHANNEL_ID(port_id); local
553 int channel_id = GET_CHANNEL_ID(source_port_id); local
613 EnqueuePendingMessage(int source_port_id, int channel_id, const Message& message) argument
630 EnqueuePendingMessageForLazyBackgroundLoad( int source_port_id, int channel_id, const Message& message) argument
688 int channel_id = GET_CHANNEL_ID(params->receiver_port_id); local
[all...]
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_hl.h130 int channel_id; member in struct:__anon1026
183 int channel_id; member in struct:__anon1030
188 int channel_id; member in struct:__anon1031
224 int channel_id; member in struct:__anon1033
275 int channel_id; member in struct:__anon1037
/external/chromium_org/chrome/browser/browsing_data/
H A Dcookies_tree_model.h127 const net::ChannelIDStore::ChannelID* channel_id);
143 const net::ChannelIDStore::ChannelID* channel_id; member in struct:CookieTreeNode::DetailedInfo
/external/chromium_org/components/nacl/browser/
H A Dnacl_process_host.cc530 std::string channel_id = process_->GetHost()->CreateChannel(); local
531 if (channel_id.empty()) {
600 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id);
608 weak_factory_.GetWeakPtr(), channel_id)) {
/external/chromium_org/content/browser/gpu/
H A Dgpu_process_host.cc501 std::string channel_id = process_->GetHost()->CreateChannel(); local
502 if (channel_id.empty())
514 in_process_gpu_thread_.reset(g_gpu_main_thread_factory(channel_id));
518 } else if (!LaunchGpuProcess(channel_id)) {
847 bool GpuProcessHost::LaunchGpuProcess(const std::string& channel_id) { argument
874 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id);

Completed in 756 milliseconds

123