Searched refs:client_name (Results 1 - 25 of 45) sorted by relevance

12

/external/chromium_org/chrome/browser/safe_browsing/
H A Dprotocol_manager_helper.h21 std::string client_name; member in struct:SafeBrowsingProtocolConfig
36 // |client_name| and |version|. When not empty, |additional_query| is
40 const std::string& client_name,
H A Dprotocol_manager_helper.cc39 const std::string& client_name, const std::string& version,
42 !client_name.empty() && !version.empty());
45 client_name.c_str(), version.c_str());
37 ComposeUrl( const std::string& prefix, const std::string& method, const std::string& client_name, const std::string& version, const std::string& additional_query) argument
H A Dping_manager_unittest.cc37 config.client_name = kClient;
94 config.client_name = kClient;
H A Dsafe_browsing_service.cc348 config.client_name = dist->GetSafeBrowsingName();
351 config.client_name = "googlechrome";
353 config.client_name = "chromium";
/external/chromium_org/google_apis/
H A Dgoogle_api_keys.py73 def GetClientID(client_name):
75 return _GetToken('GOOGLE_CLIENT_ID_%s' % client_name)
78 def GetClientSecret(client_name):
80 return _GetToken('GOOGLE_CLIENT_SECRET_%s' % client_name)
/external/chromium_org/chromeos/dbus/ibus/
H A Dmock_ibus_client.cc18 const std::string& client_name,
23 create_input_context_handler_.Run(client_name, callback, error_callback);
17 CreateInputContext( const std::string& client_name, const CreateInputContextCallback& callback, const ErrorCallback& error_callback) argument
H A Dmock_ibus_client.h19 typedef base::Callback<void(const std::string& client_name,
29 virtual void CreateInputContext(const std::string& client_name,
H A Dibus_client.h45 const std::string& client_name,
H A Dibus_client_unittest.cc52 std::string client_name; local
53 EXPECT_TRUE(reader.PopString(&client_name));
54 EXPECT_EQ(kClientName, client_name);
67 std::string client_name; local
68 EXPECT_TRUE(reader.PopString(&client_name));
69 EXPECT_EQ(kClientName, client_name);
H A Dibus_client.cc35 const std::string& client_name,
43 writer.AppendString(client_name);
191 const std::string& client_name,
/external/chromium_org/chrome/browser/sync/glue/
H A Ddevice_info.cc69 const std::string& client_name,
74 client_name_(client_name),
86 const std::string& DeviceInfo::client_name() const { function in class:browser_sync::DeviceInfo
108 && this->client_name() == other.client_name()
199 base::Callback<void(const std::string& client_name)> callback) {
68 DeviceInfo(const std::string& guid, const std::string& client_name, const std::string& chrome_version, const std::string& sync_user_agent, const sync_pb::SyncEnums::DeviceType device_type) argument
H A Ddevice_info.h28 const std::string& client_name,
41 const std::string& client_name() const;
H A Dsynced_device_tracker.cc71 specifics.client_name(),
90 specifics.client_name(),
127 specifics.client_name(),
152 specifics.set_client_name(info.client_name());
169 node.SetTitle(UTF8ToWide(specifics.client_name()));
183 new_node.SetTitle(UTF8ToWide(specifics.client_name()));
/external/chromium_org/remoting/protocol/
H A Dpairing_registry.cc33 const std::string& client_name,
37 client_name_(client_name),
46 const std::string& client_name) {
56 return Pairing(created_time, client_name, client_id, shared_secret);
61 std::string client_name, client_id; local
64 pairing.GetString(kClientNameKey, &client_name) &&
70 return Pairing(created_time, client_name, client_id, shared_secret);
80 pairing->SetString(kClientNameKey, client_name());
108 const std::string& client_name) {
111 Pairing result = Pairing::Create(client_name);
32 Pairing(const base::Time& created_time, const std::string& client_name, const std::string& client_id, const std::string& shared_secret) argument
45 Create( const std::string& client_name) argument
107 CreatePairing( const std::string& client_name) argument
[all...]
H A Dpairing_registry.h46 const std::string& client_name,
51 static Pairing Create(const std::string& client_name);
62 std::string client_name() const { return client_name_; } function in struct:remoting::protocol::PairingRegistry::Pairing
116 Pairing CreatePairing(const std::string& client_name);
H A Dpairing_registry_unittest.cc51 EXPECT_EQ(expected.client_name(), value);
189 MATCHER_P(EqualsClientName, client_name, "") {
190 return arg.client_name() == client_name;
/external/chromium/chrome/browser/safe_browsing/
H A Dprotocol_manager.h55 const std::string& client_name,
93 const std::string& client_name,
204 const std::string& client_name,
225 // newkey, report), |client_name| and |version|. When not empty,
230 const std::string& client_name,
H A Dprotocol_manager.cc47 const std::string& client_name,
55 sb_service, client_name, client_key, wrapped_key,
71 const std::string& client_name,
81 return factory_->CreateProtocolManager(sb_service, client_name, client_key,
89 const std::string& client_name,
109 client_name_(client_name),
724 const std::string& client_name, const std::string& version,
727 !client_name.empty() && !version.empty());
730 client_name.c_str(), version.c_str());
45 CreateProtocolManager( SafeBrowsingService* sb_service, const std::string& client_name, const std::string& client_key, const std::string& wrapped_key, net::URLRequestContextGetter* request_context_getter, const std::string& info_url_prefix, const std::string& mackey_url_prefix, bool disable_auto_update) argument
69 Create( SafeBrowsingService* sb_service, const std::string& client_name, const std::string& client_key, const std::string& wrapped_key, net::URLRequestContextGetter* request_context_getter, const std::string& info_url_prefix, const std::string& mackey_url_prefix, bool disable_auto_update) argument
87 SafeBrowsingProtocolManager( SafeBrowsingService* sb_service, const std::string& client_name, const std::string& client_key, const std::string& wrapped_key, net::URLRequestContextGetter* request_context_getter, const std::string& http_url_prefix, const std::string& https_url_prefix, bool disable_auto_update) argument
722 ComposeUrl( const std::string& prefix, const std::string& method, const std::string& client_name, const std::string& version, const std::string& additional_query) argument
/external/chromium_org/chrome/browser/managed_mode/
H A Dmanaged_user_registration_utility.h90 void FetchToken(const std::string& client_name);
H A Dmanaged_user_registration_utility.cc121 const std::string& client_name) {
123 pending_managed_user_id_, client_name,
120 FetchToken( const std::string& client_name) argument
/external/chromium_org/remoting/host/
H A Dpairing_registry_delegate_win_unittest.cc118 EXPECT_EQ(pairing.client_name(), unprivileged_pairing.client_name());
/external/chromium_org/chrome/browser/extensions/api/debugger/
H A Ddebugger_api.cc155 const std::string& client_name);
163 const std::string& client_name);
184 const std::string& client_name) {
199 new ExtensionDevToolsInfoBarDelegate(infobar_service, client_name))));
204 const std::string& client_name)
206 client_name_(client_name),
182 Create( RenderViewHost* rvh, const std::string& client_name) argument
202 ExtensionDevToolsInfoBarDelegate( InfoBarService* infobar_service, const std::string& client_name) argument
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
H A Dpeer_connection_client.cc111 const std::string& client_name) {
113 ASSERT(!client_name.empty());
122 if (server.empty() || client_name.empty()) {
132 client_name_ = client_name;
110 Connect(const std::string& server, int port, const std::string& client_name) argument
H A Dpeer_connection_client.h78 const std::string& client_name);
/external/ipsec-tools/src/racoon/
H A Dgssapi.c352 gss_name_t client_name; local
363 gps->gss_cred, rtoken, GSS_C_NO_CHANNEL_BINDINGS, &client_name,
371 maj_stat = gss_display_name(&min_stat, client_name, &name_token, NULL);
374 maj_stat = gss_release_name(&min_stat, &client_name);
377 "release client_name\n");
380 maj_stat = gss_release_name(&min_stat, &client_name);
382 gssapi_error(min_stat, LOCATION, "release client_name\n");

Completed in 524 milliseconds

12