Searched defs:channel_name (Results 1 - 25 of 58) sorted by relevance

123

/external/chromium_org/chrome/renderer/extensions/
H A Dtabs_custom_bindings.cc37 std::string channel_name = *v8::String::Utf8Value(args[2]->ToString()); local
40 renderview->GetRoutingID(), tab_id, extension_id, channel_name,
H A Druntime_custom_bindings.cc70 std::string channel_name = *v8::String::Utf8Value(args[1]->ToString()); local
75 renderview->GetRoutingID(), info, channel_name, include_tls_channel_id,
/external/chromium_org/content/shell/app/
H A Dshell_breakpad_client.cc29 base::string16* channel_name) {
33 *channel_name = base::string16();
24 GetProductNameAndVersion( const base::FilePath& exe_path, base::string16* product_name, base::string16* version, base::string16* special_build, base::string16* channel_name) argument
/external/chromium_org/remoting/host/
H A Ddesktop_process_main.cc27 std::string channel_name = local
30 if (channel_name.empty())
46 channel_name);
H A Dhost_status_observer.h44 const std::string& channel_name,
43 OnClientRouteChange(const std::string& jid, const std::string& channel_name, const protocol::TransportRoute& route) argument
H A Dipc_host_event_logger.cc57 const std::string& channel_name,
69 jid, channel_name, serialized_route));
55 OnClientRouteChange( const std::string& jid, const std::string& channel_name, const protocol::TransportRoute& route) argument
H A Dhost_event_logger_posix.cc38 const std::string& channel_name,
83 const std::string& channel_name,
89 route.local_address.ToString().c_str(), channel_name.c_str(),
81 OnClientRouteChange( const std::string& jid, const std::string& channel_name, const protocol::TransportRoute& route) argument
H A Dhost_event_logger_win.cc40 const std::string& channel_name,
95 const std::string& channel_name,
101 strings[3] = channel_name;
93 OnClientRouteChange( const std::string& jid, const std::string& channel_name, const protocol::TransportRoute& route) argument
H A Dipc_util_win.cc45 std::string channel_name = IPC::Channel::GenerateUniqueRandomChannelID(); local
49 if (!CreateIpcChannel(channel_name, security_descriptor, &pipe)) {
62 pipe_name.append(channel_name);
91 const std::string& channel_name,
109 pipe_name.append(channel_name);
90 CreateIpcChannel( const std::string& channel_name, const std::string& pipe_security_descriptor, base::win::ScopedHandle* pipe_out) argument
H A Dlog_to_server.cc85 const std::string& channel_name,
89 if (channel_name == kVideoChannelName) {
84 OnClientRouteChange(const std::string& jid, const std::string& channel_name, const protocol::TransportRoute& route) argument
/external/chromium_org/remoting/protocol/
H A Dchannel_dispatcher_base.cc16 ChannelDispatcherBase::ChannelDispatcherBase(const char* channel_name) argument
17 : channel_name_(channel_name),
H A Dsession.h62 // |channel_name| changes. Session must not be destroyed by the
64 virtual void OnSessionRouteChange(const std::string& channel_name,
70 virtual void OnSessionChannelReady(const std::string& channel_name, argument
H A Dconnection_to_client.cc163 const std::string& channel_name,
165 handler_->OnRouteChange(this, channel_name, route);
162 OnSessionRouteChange( const std::string& channel_name, const TransportRoute& route) argument
/external/chromium_org/tools/ipc_fuzzer/replay/
H A Dreplay_process.cc55 std::string channel_name = local
60 new IPC::ChannelProxy(channel_name,
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dextension_message_port.cc28 const std::string& channel_name,
39 routing_id_, dest_port_id, channel_name, source_tab, info,
26 DispatchOnConnect( int dest_port_id, const std::string& channel_name, const base::DictionaryValue& source_tab, const std::string& source_extension_id, const std::string& target_extension_id, const GURL& source_url, const std::string& tls_channel_id) argument
H A Dmessage_service.h76 const std::string& channel_name,
121 // and every listening context owned by that extension. |channel_name| is
128 const std::string& channel_name,
137 const std::string& channel_name);
75 DispatchOnConnect(int dest_port_id, const std::string& channel_name, const base::DictionaryValue& source_tab, const std::string& source_extension_id, const std::string& target_extension_id, const GURL& source_url, const std::string& tls_channel_id) argument
/external/chromium_org/components/nacl/loader/
H A Dnacl_listener.cc213 std::string channel_name = local
220 channel_->Init(channel_name, IPC::Channel::MODE_CLIENT, true);
/external/chromium_org/content/utility/
H A Dutility_thread_impl.cc39 UtilityThreadImpl::UtilityThreadImpl(const std::string& channel_name) argument
40 : ChildThread(channel_name),
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dp2ptransport.cc71 std::string channel_name = error->Attr(buzz::QN_NAME); local
72 if (HasChannel(channel_name)) {
73 SignalChannelGone(this, channel_name);
/external/chromium_org/components/nacl/broker/
H A Dnacl_broker_listener.cc40 std::string channel_name = local
44 channel_name, IPC::Channel::MODE_CLIENT, this));
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dp2ptransport.cc199 std::string channel_name = elem->Attr(buzz::QN_NAME);
202 !translator->GetComponentFromChannelName(channel_name, &component)) {
203 return BadParse("candidate has unknown channel name " + channel_name,
239 std::string channel_name; local
242 candidate.component(), &channel_name)) {
247 elem->SetAttr(buzz::QN_NAME, channel_name);
H A Dtransport_unittest.cc95 void AddMapping(int component, const std::string& channel_name) { argument
96 name_to_component[channel_name] = component;
97 component_to_name[component] = channel_name;
101 int component, std::string* channel_name) const {
105 *channel_name = component_to_name.find(component)->second;
109 const std::string& channel_name, int* component) const {
110 if (name_to_component.find(channel_name) == name_to_component.end()) {
113 *component = name_to_component.find(channel_name)->second;
108 GetComponentFromChannelName( const std::string& channel_name, int* component) const argument
/external/chromium/chrome/browser/debugger/
H A Dextension_ports_remote_service.cc299 std::string channel_name = ""; local
300 data->GetString(kChannelNameKey, &channel_name); // optional.
319 << ">, channel_name <" << channel_name
323 extension_id, channel_name, tab_contents, this);
327 << ">, channel_name <" << channel_name << ">"; local
330 extension_id, channel_name, "null", this);
/external/chromium/chrome/browser/renderer_host/
H A Dchrome_render_message_filter.cc133 const std::string& channel_name, int* port_id) {
142 target_extension_id, channel_name));
150 const std::string& channel_name) {
154 source_extension_id, target_extension_id, channel_name);
159 const std::string& channel_name, int* port_id) {
168 channel_name));
176 const std::string& channel_name) {
180 tab_id, extension_id, channel_name);
130 OnOpenChannelToExtension( int routing_id, const std::string& source_extension_id, const std::string& target_extension_id, const std::string& channel_name, int* port_id) argument
145 OpenChannelToExtensionOnUIThread( int source_process_id, int source_routing_id, int receiver_port_id, const std::string& source_extension_id, const std::string& target_extension_id, const std::string& channel_name) argument
157 OnOpenChannelToTab( int routing_id, int tab_id, const std::string& extension_id, const std::string& channel_name, int* port_id) argument
171 OpenChannelToTabOnUIThread( int source_process_id, int source_routing_id, int receiver_port_id, int tab_id, const std::string& extension_id, const std::string& channel_name) argument
/external/chromium_org/chrome/app/
H A Dchrome_breakpad_client.cc106 base::string16* channel_name) {
110 DCHECK(channel_name);
138 *channel_name = base::WideToUTF16(channel_string);
194 base::string16 channel_name(base::WideToUTF16(
198 if (channel_name == base::ASCIIToUTF16("dev") ||
199 channel_name == base::ASCIIToUTF16("beta") ||
200 channel_name == GoogleChromeSxSDistribution::ChannelName())
101 GetProductNameAndVersion( const base::FilePath& exe_path, base::string16* product_name, base::string16* version, base::string16* special_build, base::string16* channel_name) argument

Completed in 2852 milliseconds

123