Searched refs:client (Results 1 - 25 of 2253) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dcallclient_unittest.cc38 CallClient *client = new CallClient(pump.client(), "app", "version"); local
39 delete client;
44 CallClient *client = new CallClient(pump.client(), "app", "version"); local
45 client->SetMediaEngine(new cricket::FileMediaEngine);
46 delete client;
/external/chromium_org/net/tools/quic/test_tools/
H A Dquic_client_peer.cc14 QuicCryptoClientConfig* QuicClientPeer::GetCryptoConfig(QuicClient* client) { argument
15 return &client->crypto_config_;
19 bool QuicClientPeer::CreateUDPSocket(QuicClient* client) { argument
20 return client->CreateUDPSocket();
24 void QuicClientPeer::SetClientPort(QuicClient* client, int port) { argument
25 client->client_address_ = IPEndPoint(client->client_address_.address(), port);
29 void QuicClientPeer::SetWriter(QuicClient* client, QuicPacketWriter* writer) { argument
30 client->writer_.reset(writer);
/external/chromium_org/ui/aura/client/
H A Dwindow_stacking_client.cc5 #include "ui/aura/client/window_stacking_client.h"
8 namespace client { namespace in namespace:aura
16 void SetWindowStackingClient(WindowStackingClient* client) { argument
17 instance = client;
24 } // namespace client
H A Dcursor_client.cc5 #include "ui/aura/client/cursor_client.h"
10 DECLARE_WINDOW_PROPERTY_TYPE(aura::client::CursorClient*)
13 namespace client { namespace in namespace:aura
15 // A property key to store a client that handles window moves.
19 void SetCursorClient(Window* window, CursorClient* client) { argument
20 window->SetProperty(kCursorClientKey, client);
27 } // namespace client
/external/chromium_org/ui/wm/public/
H A Dtransient_window_client.cc8 namespace client { namespace in namespace:aura
16 void SetTransientWindowClient(TransientWindowClient* client) { argument
17 instance = client;
24 } // namespace client
H A Dwindow_move_client.cc10 DECLARE_WINDOW_PROPERTY_TYPE(aura::client::WindowMoveClient*)
13 namespace client { namespace in namespace:aura
15 // A property key to store a client that handles window moves.
19 void SetWindowMoveClient(Window* window, WindowMoveClient* client) { argument
20 window->SetProperty(kWindowMoveClientKey, client);
27 } // namespace client
H A Dscoped_tooltip_disabler.cc11 namespace client { namespace in namespace:aura
17 TooltipClient* client = GetTooltipClient(root_); local
18 if (client)
19 client->SetTooltipsEnabled(false);
30 TooltipClient* client = GetTooltipClient(root_);
31 if (client)
32 client->SetTooltipsEnabled(true);
42 } // namespace client
/external/chromium_org/cc/scheduler/
H A Dscheduler_unittest.cc21 #define EXPECT_ACTION(action, client, action_index, expected_num_actions) \
23 EXPECT_EQ(expected_num_actions, client.num_actions_()); \
25 ASSERT_LT(action_index, client.num_actions_()) << scheduler; \
26 EXPECT_STREQ(action, client.Action(action_index)); \
28 for (int i = expected_num_actions; i < client.num_actions_(); ++i) \
29 ADD_FAILURE() << "Unexpected action: " << client.Action(i) \
30 << " with state:\n" << client.StateForAction(i); \
33 #define EXPECT_NO_ACTION(client) EXPECT_ACTION("", client, -1, 0)
35 #define EXPECT_SINGLE_ACTION(action, client) \
239 InitializeOutputSurfaceAndFirstCommit(Scheduler* scheduler, FakeSchedulerClient* client) argument
270 FakeSchedulerClient client; local
284 FakeSchedulerClient client; local
351 FakeSchedulerClient client; local
451 SchedulerClientThatsetNeedsDrawInsideDraw client; local
488 SchedulerClientThatsetNeedsDrawInsideDraw client; local
567 SchedulerClientThatSetNeedsCommitInsideDraw client; local
612 SchedulerClientThatsetNeedsDrawInsideDraw client; local
659 SchedulerClientThatSetNeedsCommitInsideDraw client; local
702 SchedulerClientNeedsManageTilesInDraw client; local
809 FakeSchedulerClient client; local
927 FakeSchedulerClient client; local
989 SchedulerClientNeedsManageTilesInDraw client; local
1180 FakeSchedulerClient client; local
1255 FakeSchedulerClient client; local
1347 FakeSchedulerClient client; local
1442 FakeSchedulerClient client; local
1536 FakeSchedulerClient client; local
1553 FakeSchedulerClient client; local
1590 FakeSchedulerClient client; local
1657 FakeSchedulerClient client; local
1708 FakeSchedulerClient client; local
1739 FakeSchedulerClient client; local
1798 FakeSchedulerClient client; local
1872 FakeSchedulerClient client; local
1913 FakeSchedulerClient client; local
[all...]
/external/qemu/telephony/
H A Dtest2.c52 Client client = calloc( sizeof(*client), 1 ); local
54 client->channel = channel;
55 return client;
59 client_free( Client client )
61 sys_channel_close( client->channel );
62 client->channel = NULL;
63 free( client );
67 client_append( Client client, const char* str, int len );
70 client_handle_line( Client client, cons argument
106 Client client = _client; local
157 client_append( Client client, const char* str, int len ) argument
181 Client client; local
[all...]
H A Dsimulator.c36 Client client = calloc( sizeof(*client), 1 ); local
38 client->channel = channel;
39 return client;
43 client_free( Client client )
45 sys_channel_close( client->channel );
46 client->channel = NULL;
47 free( client );
51 client_append( Client client, const char* str, int len );
75 client_handle_line( Client client, cons argument
94 Client client = _client; local
144 client_append( Client client, const char* str, int len ) argument
168 Client client; local
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DBackForwardClientImpl.cpp50 if (!m_webView->client())
53 return m_webView->client()->historyBackListCount();
58 if (!m_webView->client())
61 return m_webView->client()->historyForwardListCount();
66 if (!m_webView->client())
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DUserMediaController.cpp35 UserMediaController::UserMediaController(UserMediaClient* client) argument
36 : m_client(client)
42 PassOwnPtrWillBeRawPtr<UserMediaController> UserMediaController::create(UserMediaClient* client) argument
44 return adoptPtrWillBeNoop(new UserMediaController(client));
47 void provideUserMediaTo(LocalFrame& frame, UserMediaClient* client) argument
49 UserMediaController::provideTo(frame, UserMediaController::supplementName(), UserMediaController::create(client));
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechRecognitionController.cpp36 SpeechRecognitionController::SpeechRecognitionController(PassOwnPtr<SpeechRecognitionClient> client) argument
37 : m_client(client)
43 // FIXME: Call m_client->pageDestroyed(); once we have implemented a client.
46 PassOwnPtrWillBeRawPtr<SpeechRecognitionController> SpeechRecognitionController::create(PassOwnPtr<SpeechRecognitionClient> client) argument
48 return adoptPtrWillBeNoop(new SpeechRecognitionController(client));
51 void provideSpeechRecognitionTo(Page& page, PassOwnPtr<SpeechRecognitionClient> client) argument
53 SpeechRecognitionController::provideTo(page, SpeechRecognitionController::supplementName(), SpeechRecognitionController::create(client));
/external/chromium_org/ui/wm/core/
H A Dwm_state.cc16 aura::client::SetWindowStackingClient(window_stacking_client_.get());
17 aura::client::SetTransientWindowClient(transient_window_client_.get());
21 if (aura::client::GetWindowStackingClient() == window_stacking_client_.get())
22 aura::client::SetWindowStackingClient(NULL);
24 if (aura::client::GetTransientWindowClient() ==
26 aura::client::SetTransientWindowClient(NULL);
/external/chromium_org/extensions/browser/
H A Dextensions_browser_client.cc21 void ExtensionsBrowserClient::Set(ExtensionsBrowserClient* client) { argument
22 g_client = client;
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebScrollbarThemeGeometryNative.cpp53 WebScrollbarThemeClientImpl client(scrollbar);
54 return m_theme->thumbPosition(&client);
59 WebScrollbarThemeClientImpl client(scrollbar);
60 return m_theme->thumbLength(&client);
65 WebScrollbarThemeClientImpl client(scrollbar);
66 return m_theme->trackPosition(&client);
71 WebScrollbarThemeClientImpl client(scrollbar);
72 return m_theme->trackLength(&client);
77 WebScrollbarThemeClientImpl client(scrollbar);
78 return m_theme->hasButtons(&client);
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_quota_client_unittest.cc40 int64 GetOriginUsage(storage::QuotaClient* client, argument
44 AsyncGetOriginUsage(client, origin, type);
49 const std::set<GURL>& GetOriginsForType(storage::QuotaClient* client, argument
52 AsyncGetOriginsForType(client, type);
57 const std::set<GURL>& GetOriginsForHost(storage::QuotaClient* client, argument
61 AsyncGetOriginsForHost(client, type, host);
66 storage::QuotaStatusCode DeleteOriginData(storage::QuotaClient* client, argument
70 AsyncDeleteOriginData(client, type, origin);
75 void AsyncGetOriginUsage(storage::QuotaClient* client, argument
78 client
84 AsyncGetOriginsForType(storage::QuotaClient* client, storage::StorageType type) argument
92 AsyncGetOriginsForHost(storage::QuotaClient* client, storage::StorageType type, const std::string& host) argument
101 AsyncDeleteOriginData(storage::QuotaClient* client, storage::StorageType type, const GURL& origin) argument
118 Call_NotifyAppCacheReady(AppCacheQuotaClient* client) argument
122 Call_NotifyAppCacheDestroyed(AppCacheQuotaClient* client) argument
126 Call_OnQuotaManagerDestroyed(AppCacheQuotaClient* client) argument
159 AppCacheQuotaClient* client = CreateClient(); local
166 AppCacheQuotaClient* client = CreateClient(); local
183 AppCacheQuotaClient* client = CreateClient(); local
202 AppCacheQuotaClient* client = CreateClient(); local
214 AppCacheQuotaClient* client = CreateClient(); local
244 AppCacheQuotaClient* client = CreateClient(); local
265 AppCacheQuotaClient* client = CreateClient(); local
287 AppCacheQuotaClient* client = CreateClient(); local
330 AppCacheQuotaClient* client = CreateClient(); local
366 AppCacheQuotaClient* client = CreateClient(); local
401 AppCacheQuotaClient* client = CreateClient(); local
[all...]
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Ddebugger_tracker.cc12 DebuggerTracker::DebuggerTracker(DevToolsClient* client) { argument
13 client->AddListener(this);
18 Status DebuggerTracker::OnEvent(DevToolsClient* client, argument
23 return client->SendCommand("Debugger.resume", empty_params);
/external/chromium_org/third_party/WebKit/Source/platform/speech/
H A DPlatformSpeechSynthesisUtterance.cpp31 PlatformSpeechSynthesisUtterance* PlatformSpeechSynthesisUtterance::create(PlatformSpeechSynthesisUtteranceClient* client) argument
33 return new PlatformSpeechSynthesisUtterance(client);
36 PlatformSpeechSynthesisUtterance::PlatformSpeechSynthesisUtterance(PlatformSpeechSynthesisUtteranceClient* client) argument
37 : m_client(client)
/external/chromium_org/third_party/WebKit/Source/modules/push_messaging/
H A DPushController.cpp13 PushController::PushController(WebPushClient* client) argument
14 : m_client(client)
18 PassOwnPtrWillBeRawPtr<PushController> PushController::create(WebPushClient* client) argument
20 return adoptPtrWillBeNoop(new PushController(client));
26 return controller->client();
35 void providePushControllerTo(Page& page, WebPushClient* client) argument
37 PushController::provideTo(page, PushController::supplementName(), PushController::create(client));
/external/chromium_org/components/password_manager/core/browser/
H A Dbrowser_save_password_progress_logger_unittest.cc20 explicit TestLogger(PasswordManagerClient* client) argument
21 : BrowserSavePasswordProgressLogger(client) {}
34 MockPasswordManagerClient client; local
35 TestLogger logger(&client);
36 EXPECT_CALL(client, LogSavePasswordProgress(kTestText)).Times(1);
H A Dbrowser_save_password_progress_logger.cc12 PasswordManagerClient* client)
13 : client_(client) {
11 BrowserSavePasswordProgressLogger( PasswordManagerClient* client) argument
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/testing/
H A DInternalsGeolocation.cpp48 GeolocationClientMock* client = new GeolocationClientMock(); local
52 GeolocationController::from(toLocalFrame(childFrame))->setClientForTest(client);
59 GeolocationClientMock* client = geolocationClient(document); local
60 if (!client)
62 client->setPosition(GeolocationPosition::create(currentTime(), latitude, longitude, accuracy));
68 GeolocationClientMock* client = geolocationClient(document); local
69 if (!client)
71 client->setPositionUnavailableError(message);
77 GeolocationClientMock* client = geolocationClient(document); local
78 if (!client)
86 GeolocationClientMock* client = geolocationClient(document); local
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIController.cpp44 MIDIController::MIDIController(PassOwnPtr<MIDIClient> client) argument
45 : m_client(client)
54 PassOwnPtrWillBeRawPtr<MIDIController> MIDIController::create(PassOwnPtr<MIDIClient> client) argument
56 return adoptPtrWillBeNoop(new MIDIController(client));
69 void provideMIDITo(LocalFrame& frame, PassOwnPtr<MIDIClient> client) argument
71 MIDIController::provideTo(frame, MIDIController::supplementName(), MIDIController::create(client));
/external/chromium_org/ui/views/ime/
H A Dinput_method_bridge.cc27 const ui::TextInputClient* client) OVERRIDE {}
31 const ui::TextInputClient* client) OVERRIDE {}
33 const ui::TextInputClient* client) OVERRIDE {}
181 // to the text input |client|, which is e.g. views::Textfield.
184 TextInputClient* client = GetTextInputClient(); local
185 if (client)
186 client->SetCompositionText(composition);
190 TextInputClient* client = GetTextInputClient(); local
191 if (client)
192 client
196 TextInputClient* client = GetTextInputClient(); local
202 TextInputClient* client = GetTextInputClient(); local
208 TextInputClient* client = GetTextInputClient(); local
214 TextInputClient* client = GetTextInputClient(); local
220 TextInputClient* client = GetTextInputClient(); local
225 TextInputClient* client = GetTextInputClient(); local
230 TextInputClient* client = GetTextInputClient(); local
235 TextInputClient* client = GetTextInputClient(); local
245 TextInputClient* client = GetTextInputClient(); local
253 TextInputClient* client = GetTextInputClient(); local
258 TextInputClient* client = GetTextInputClient(); local
263 TextInputClient* client = GetTextInputClient(); local
268 TextInputClient* client = GetTextInputClient(); local
273 TextInputClient* client = GetTextInputClient(); local
278 TextInputClient* client = GetTextInputClient(); local
284 TextInputClient* client = GetTextInputClient(); local
289 TextInputClient* client = GetTextInputClient(); local
296 TextInputClient* client = GetTextInputClient(); local
302 TextInputClient* client = GetTextInputClient(); local
308 TextInputClient* client = GetTextInputClient(); local
[all...]

Completed in 524 milliseconds

1234567891011>>