Searched refs:client (Results 201 - 225 of 2253) sorted by relevance

1234567891011>>

/external/nanopb-c/examples/network_server/
H A DMakefile8 all: server client
13 rm -f server client fileproto.pb.c fileproto.pb.h
/external/chromium_org/chrome/test/chromedriver/
H A Dperformance_logger_unittest.cc168 void ExpectCommand(FakeDevToolsClient& client, const std::string& method) { argument
171 ASSERT_TRUE(client.PopSentCommand(&cmd));
175 void ExpectEnableDomains(FakeDevToolsClient& client) { argument
176 ExpectCommand(client, "Network.enable");
177 ExpectCommand(client, "Page.enable");
178 ExpectCommand(client, "Timeline.start");
184 FakeDevToolsClient client("webview-1");
189 client.AddListener(&logger);
190 logger.OnConnected(&client);
191 ExpectEnableDomains(client);
278 FakeBrowserwideClient client; local
309 FakeBrowserwideClient client; local
339 FakeBrowserwideClient client; local
360 FakeBrowserwideClient client; local
[all...]
/external/chromium_org/chrome/test/base/
H A Dchrome_render_view_test.cc78 ChromeContentRendererClient* client = local
80 client->GetExtensionDispatcherForTest()->OnRenderProcessShutdown();
102 ChromeContentRendererClient* client = new ChromeContentRendererClient(); local
106 client->SetExtensionDispatcherForTest(
110 client->SetSpellcheck(new SpellCheck());
112 return client;
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dframe_tracker.cc14 FrameTracker::FrameTracker(DevToolsClient* client) { argument
15 client->AddListener(this);
30 Status FrameTracker::OnConnected(DevToolsClient* client) { argument
34 Status status = client->SendCommand("Runtime.enable", params);
37 return client->SendCommand("Page.enable", params);
40 Status FrameTracker::OnEvent(DevToolsClient* client, argument
H A Dweb_view_impl_unittest.cc72 FakeDevToolsClient client; local
73 client.set_result(command_result);
75 &client, 0, std::string(), internal::ReturnByValue, &result);
84 FakeDevToolsClient client; local
85 client.set_status(Status(kUnknownError));
87 &client, 0, std::string(), internal::ReturnByValue, &result);
115 FakeDevToolsClient client; local
116 client.set_result(dict);
118 &client, 0, std::string(), internal::ReturnByValue, &result).IsOk());
125 FakeDevToolsClient client; local
136 FakeDevToolsClient client; local
149 FakeDevToolsClient client; local
164 FakeDevToolsClient client; local
178 FakeDevToolsClient client; local
[all...]
H A Ddevtools_client_impl_unittest.cc107 DevToolsClientImpl client(factory, "http://url", "id",
109 ASSERT_EQ(kOk, client.ConnectIfNecessary().code());
112 ASSERT_EQ(kOk, client.SendCommand("method", params).code());
118 DevToolsClientImpl client(factory, "http://url", "id",
120 ASSERT_EQ(kOk, client.ConnectIfNecessary().code());
124 Status status = client.SendCommandAndGetResult("method", params, &result);
168 DevToolsClientImpl client(factory, "http://url", "id",
170 ASSERT_EQ(kDisconnected, client.ConnectIfNecessary().code());
213 DevToolsClientImpl client(factory, "http://url", "id",
215 ASSERT_EQ(kOk, client
409 ReturnOutOfOrderResponses( int* recurse_count, DevToolsClient* client, const std::string& message, int expected_id, internal::InspectorMessageType* type, internal::InspectorEvent* event, internal::InspectorCommandResponse* command_response) argument
691 OnConnectedListener(const std::string& method, DevToolsClient* client) argument
888 OnEventListener(DevToolsClient* client, OtherEventListener* other_listener) argument
1129 HandleReceivedEvents(DevToolsClient* client) argument
[all...]
H A Ddom_tracker_unittest.cc51 FakeDevToolsClient client; local
52 DomTracker tracker(&client);
64 ASSERT_EQ(kOk, tracker.OnEvent(&client, "DOM.setChildNodes", params).code());
71 tracker.OnEvent(&client, "DOM.documentUpdated", params).code());
73 ASSERT_STREQ("DOM.getDocument", client.PopSentCommand().c_str());
77 FakeDevToolsClient client; local
78 DomTracker tracker(&client);
84 tracker.OnEvent(&client, "DOM.childNodeInserted", params).code());
92 tracker.OnEvent(&client, "DOM.childNodeInserted", params).code());
/external/chromium_org/components/password_manager/core/browser/
H A Dlog_router.cc28 bool LogRouter::RegisterClient(PasswordManagerClient* client) { argument
29 DCHECK(client);
30 clients_.AddObserver(client);
34 void LogRouter::UnregisterClient(PasswordManagerClient* client) { argument
35 DCHECK(clients_.HasObserver(client));
36 clients_.RemoveObserver(client);
/external/chromium_org/content/shell/renderer/test_runner/
H A Dweb_test_interfaces.cc62 WebMediaStreamCenterClient* client) {
63 return new MockWebMediaStreamCenter(client, interfaces_.get());
68 WebRTCPeerConnectionHandlerClient* client) {
69 return new MockWebRTCPeerConnectionHandler(client, interfaces_.get());
73 WebMIDIAccessorClient* client) {
74 return new MockWebMIDIAccessor(client, interfaces_.get());
61 CreateMediaStreamCenter( WebMediaStreamCenterClient* client) argument
67 CreateWebRTCPeerConnectionHandler( WebRTCPeerConnectionHandlerClient* client) argument
72 CreateMIDIAccessor( WebMIDIAccessorClient* client) argument
/external/chromium_org/mojo/gles2/
H A Dgles2_impl.cc10 #include "gpu/command_buffer/client/gles2_interface.h"
30 scoped_ptr<GLES2Context> client(new GLES2Context(
32 if (!client->Initialize())
33 client.reset();
34 return client.release();
44 GLES2Context* client = static_cast<GLES2Context*>(context); local
45 interface = client->interface();
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPendingScript.cpp40 void PendingScript::watchForLoad(ScriptResourceClient* client) argument
45 m_streamer->addClient(client);
49 // they should not become a client of an already-loaded Resource.
50 resource()->addClient(client);
55 void PendingScript::stopWatchingForLoad(ScriptResourceClient* client) argument
62 m_streamer->removeClient(client);
65 resource()->removeClient(client);
H A DScriptLoader.cpp143 if (ScriptLoaderClient* client = this->client())
144 client->dispatchLoadEvent();
154 String type = client()->typeAttributeValue();
155 String language = client()->languageAttributeValue();
175 ScriptLoaderClient* client = this->client();
185 if (wasParserInserted && !client->asyncAttributeValue())
189 if (!client->hasSourceAttribute() && !m_element->hasChildren())
215 if (!client
437 ScriptLoaderClient* ScriptLoader::client() const function in class:blink::ScriptLoader
[all...]
/external/chromium_org/ui/aura/test/
H A Dtest_cursor_client.cc7 #include "ui/aura/client/cursor_client_observer.h"
19 client::SetCursorClient(root_window, this);
23 client::SetCursorClient(root_window_, NULL);
36 FOR_EACH_OBSERVER(aura::client::CursorClientObserver, observers_,
42 FOR_EACH_OBSERVER(aura::client::CursorClientObserver, observers_,
87 aura::client::CursorClientObserver* observer) {
92 aura::client::CursorClientObserver* observer) {
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpsURLConnectionImpl.java28 public HttpsURLConnectionImpl(URL url, OkHttpClient client) { argument
29 this(new HttpURLConnectionImpl(url, client));
51 delegate.client.setHostnameVerifier(hostnameVerifier);
55 return delegate.client.getHostnameVerifier();
59 delegate.client.setSslSocketFactory(sslSocketFactory);
63 return delegate.client.getSslSocketFactory();
/external/qemu/android/
H A Dhw-qemud.h32 * a single client in the emulated system for a given named service.
57 * a given emulator facility. Only one client can be connected at any
65 /* A function that will be called when the client running in the emulated
70 /* A function that will be called when the client sends a message to the
73 typedef void (*QemudClientRecv) ( void* opaque, uint8_t* msg, int msglen, QemudClient* client );
75 /* A function that will be called when the state of the client should be
78 typedef void (*QemudClientSave) ( QEMUFile* f, QemudClient* client, void* opaque );
80 /* A function that will be called when the state of the client should be
83 typedef int (*QemudClientLoad) ( QEMUFile* f, QemudClient* client, void* opaque );
85 /* Register a new client fo
[all...]
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_message_loop_aura.cc12 #include "ui/aura/client/screen_position_client.h"
35 using aura::client::ScreenPositionClient;
49 : public aura::client::ActivationChangeObserver,
55 aura::client::GetActivationClient(root_)->AddObserver(this);
62 // aura::client::ActivationChangeObserver:
82 aura::client::ActivationClient* client =
83 aura::client::GetActivationClient(root_);
84 if (client)
85 client
[all...]
/external/chromium_org/content/browser/
H A Ddatabase_quota_client_unittest.cc140 int64 GetOriginUsage(storage::QuotaClient* client, argument
144 client->GetOriginUsage(
152 const std::set<GURL>& GetOriginsForType(storage::QuotaClient* client, argument
155 client->GetOriginsForType(
163 const std::set<GURL>& GetOriginsForHost(storage::QuotaClient* client, argument
167 client->GetOriginsForHost(
175 bool DeleteOriginData(storage::QuotaClient* client, argument
179 client->DeleteOriginData(
213 DatabaseQuotaClient client(base::MessageLoopProxy::current().get(),
216 EXPECT_EQ(0, GetOriginUsage(&client, kOrigin
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
H A DMockImageDecoder.h52 static PassOwnPtr<MockImageDecoder> create(MockImageDecoderClient* client) { return adoptPtr(new MockImageDecoder(client)); } argument
54 MockImageDecoder(MockImageDecoderClient* client) argument
56 , m_client(client)
118 static PassOwnPtr<MockImageDecoderFactory> create(MockImageDecoderClient* client, const SkISize& decodedSize) argument
120 return adoptPtr(new MockImageDecoderFactory(client, IntSize(decodedSize.width(), decodedSize.height())));
123 static PassOwnPtr<MockImageDecoderFactory> create(MockImageDecoderClient* client, const IntSize& decodedSize) argument
125 return adoptPtr(new MockImageDecoderFactory(client, decodedSize));
137 MockImageDecoderFactory(MockImageDecoderClient* client, const IntSize& decodedSize) argument
138 : m_client(client)
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceContainer.cpp115 RenderObject* client = *it; local
116 if (client->isSVGResourceContainer()) {
117 toRenderSVGResourceContainer(client)->removeAllClientsFromCache(markForInvalidation);
122 markClientForInvalidation(client, mode);
124 RenderSVGResource::markForLayoutAndParentResourceInvalidation(client, needsLayout);
139 void RenderSVGResourceContainer::markClientForInvalidation(RenderObject* client, InvalidationMode mode) argument
141 ASSERT(client);
147 client->setNeedsBoundariesUpdate();
150 client->setShouldDoFullPaintInvalidation(true);
157 void RenderSVGResourceContainer::addClient(RenderObject* client) argument
164 removeClient(RenderObject* client) argument
180 addClientRenderLayer(RenderLayer* client) argument
187 removeClientRenderLayer(RenderLayer* client) argument
[all...]
/external/chromium_org/media/audio/win/
H A Dcore_audio_util_win_unittest.cc219 ScopedComPtr<IAudioClient> client; local
220 client = CoreAudioUtil::CreateDefaultClient(data[i], eConsole);
221 EXPECT_TRUE(client);
233 ScopedComPtr<IAudioClient> client; local
237 client = CoreAudioUtil::CreateClient(device);
238 EXPECT_TRUE(client);
247 ScopedComPtr<IAudioClient> client; local
250 client = CoreAudioUtil::CreateClient(device);
251 EXPECT_TRUE(client);
255 EXPECT_TRUE(SUCCEEDED(CoreAudioUtil::GetSharedModeMixFormat(client,
300 ScopedComPtr<IAudioClient> client; local
324 ScopedComPtr<IAudioClient> client; local
407 ScopedComPtr<IAudioClient> client; local
[all...]
/external/chromium_org/ui/wm/core/
H A Dcompound_event_filter.cc9 #include "ui/aura/client/cursor_client.h"
104 // If drag and drop is in progress, let the drag drop client set the cursor
107 aura::client::DragDropClient* drag_drop_client =
108 aura::client::GetDragDropClient(root_window);
112 aura::client::CursorClient* cursor_client =
113 aura::client::GetCursorClient(root_window);
122 // Allow the OS to handle non client cursors if we don't have a
123 // a delegate to handle the non client hittest.
164 aura::client::CursorClient* client
196 aura::client::CursorClient* client = local
[all...]
H A Ddefault_activation_client.cc13 // Takes care of observing root window destruction & destroying the client.
16 Deleter(DefaultActivationClient* client, aura::Window* root_window) argument
17 : client_(client),
44 aura::client::SetActivationClient(root_window, this);
49 // DefaultActivationClient, client::ActivationClient implementation:
52 aura::client::ActivationChangeObserver* observer) {
57 aura::client::ActivationChangeObserver* observer) {
72 FOR_EACH_OBSERVER(aura::client::ActivationChangeObserver,
76 aura::client::ActivationChangeObserver* observer =
77 aura::client
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DSSLServerSocketImplTest.java56 Client client = null;
76 client = new Client(ssocket.getLocalPort());
77 client.start();
80 while (!client.handshakeStarted()) {
89 client.close();
100 if (client != null) {
102 client.close();
120 Client client = null;
140 client = new Client(ssocket.getLocalPort());
141 client
624 private Socket client = null; field in class:SSLServerSocketImplTest.Client
[all...]
/external/chromium_org/google_apis/
H A Dgoogle_api_keys.cc63 // variables. If set, they will be used to replace any of the client
105 // default OAuth2 client ID and secret using a command-line
173 std::string GetClientID(OAuth2Client client) const {
174 DCHECK_LT(client, CLIENT_NUM_ITEMS);
175 return client_ids_[client];
178 std::string GetClientSecret(OAuth2Client client) const {
179 DCHECK_LT(client, CLIENT_NUM_ITEMS);
180 return client_secrets_[client];
241 OAuth2Client client = static_cast<OAuth2Client>(client_id); local
242 if (GetOAuth2ClientID(client)
255 GetOAuth2ClientID(OAuth2Client client) argument
259 GetOAuth2ClientSecret(OAuth2Client client) argument
[all...]
/external/chromium_org/media/midi/
H A Dmidi_manager.cc29 void MidiManager::StartSession(MidiManagerClient* client, int client_id) { argument
38 // Do not accept a new request if the pending client list contains too
46 pending_clients_.insert(std::make_pair(client, client_id));
61 client->CompleteStartSession(client_id, MIDI_INITIALIZATION_ERROR);
75 clients_.insert(client);
78 client->CompleteStartSession(client_id, result);
81 void MidiManager::EndSession(MidiManagerClient* client) { argument
83 clients_.erase(client);
84 pending_clients_.erase(client);
87 void MidiManager::DispatchSendMidiData(MidiManagerClient* client, argument
[all...]

Completed in 5184 milliseconds

1234567891011>>