Searched defs:clients (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DServiceWorkerGlobalScopeClient.cpp46 return static_cast<ServiceWorkerGlobalScopeClient*>(WillBeHeapSupplement<WorkerClients>::from(toWorkerGlobalScope(context)->clients(), supplementName()));
49 void provideServiceWorkerGlobalScopeClientToWorker(WorkerClients* clients, PassOwnPtrWillBeRawPtr<ServiceWorkerGlobalScopeClient> client) argument
51 clients->provideSupplement(ServiceWorkerGlobalScopeClient::supplementName(), client);
H A DServiceWorkerClients.cpp27 HeapVector<Member<ServiceWorkerClient> > clients; local
29 clients.append(ServiceWorkerClient::create(webClients->clientIDs[i]));
31 return clients;
H A DServiceWorkerContainerClient.cpp48 return static_cast<ServiceWorkerContainerClient*>(WillBeHeapSupplement<WorkerClients>::from(toWorkerGlobalScope(context)->clients(), supplementName()));
56 void provideServiceWorkerContainerClientToWorker(WorkerClients* clients, PassOwnPtr<WebServiceWorkerProvider> provider) argument
58 clients->provideSupplement(ServiceWorkerContainerClient::supplementName(), ServiceWorkerContainerClient::create(provider));
H A DServiceWorkerGlobalScope.cpp156 ServiceWorkerClients* ServiceWorkerGlobalScope::clients() function in class:blink::ServiceWorkerGlobalScope
/external/chromium_org/chrome/browser/extensions/api/push_messaging/
H A Dsync_setup_helper.cc42 // Because clients may modify sync data as part of startup (for example local
44 // changes have propagated between the clients.
78 std::vector<ProfileSyncServiceHarness*> clients; local
79 clients.push_back(client_.get());
80 return ProfileSyncServiceHarness::AwaitQuiescence(clients);
/external/chromium_org/chrome/browser/sync/test/integration/performance/
H A Dsync_timing_helper.cc37 std::vector<ProfileSyncServiceHarness*>& clients) {
39 EXPECT_TRUE(ProfileSyncServiceHarness::AwaitQuiescence(clients));
36 TimeUntilQuiescence( std::vector<ProfileSyncServiceHarness*>& clients) argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DWorkerPermissionClient.cpp72 WorkerClients* clients = toWorkerGlobalScope(context).clients(); local
73 ASSERT(clients);
74 return static_cast<WorkerPermissionClient*>(WillBeHeapSupplement<WorkerClients>::from(*clients, supplementName()));
82 void providePermissionClientToWorker(WorkerClients* clients, PassOwnPtr<WebWorkerPermissionClientProxy> proxy) argument
84 ASSERT(clients);
85 WorkerPermissionClient::provideTo(*clients, WorkerPermissionClient::supplementName(), WorkerPermissionClient::create(proxy));
/external/chromium_org/android_webview/browser/
H A Dglobal_tile_manager_unittest.cc59 MockGlobalTileManagerClient clients[2]; local
62 manager()->RequestTiles(clients[i].GetTileRequest(), clients[i].GetKey());
63 manager()->DidUse(clients[i].GetKey());
65 // Ensure clients get what they asked for when the manager is under tile
67 EXPECT_EQ(clients[i].GetMemoryPolicy().num_resources_limit,
73 MockGlobalTileManagerClient clients[4]; local
76 manager()->RequestTiles(clients[i].GetTileRequest(), clients[i].GetKey());
77 manager()->DidUse(clients[
91 MockGlobalTileManagerClient clients[100]; local
119 MockGlobalTileManagerClient clients[10]; local
137 MockGlobalTileManagerClient clients[20]; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSImageGeneratorValue.h76 const RenderObjectSizeCountMap& clients() const { return m_clients; } function in class:blink::CSSImageGeneratorValue
85 // there are clients in the RenderObjectSizeCountMap.
H A DCSSFontSelector.cpp83 WillBeHeapVector<RawPtrWillBeMember<CSSFontSelectorClient> > clients; local
84 copyToVector(m_clients, clients);
85 for (size_t i = 0; i < clients.size(); ++i)
86 clients[i]->fontsNeedUpdate(this);
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
H A Dmain.cc94 PeerChannel clients; local
118 ChannelMember* member = clients.Lookup(s);
122 clients.AddMember(s);
133 ChannelMember* target = clients.IsTargetedRequest(s);
151 clients.CloseAll();
161 clients.OnClosing(s);
171 clients.CheckForTimeout();
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
H A DContextTrackingValidationCheck.java16 private final List<ContextTrackingChecker> clients = new ArrayList<>(5); field in class:ContextTrackingValidationCheck
61 this.clients.add(client);
66 for (ContextTrackingChecker client : clients) {
72 for (ContextTrackingChecker client : clients) {
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerGlobalScope.h123 WorkerClients* clients() { return m_workerClients.get(); } function in class:blink::WorkerGlobalScope
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dprofile_sync_service_harness.cc260 std::vector<ProfileSyncServiceHarness*>& clients) {
262 if (clients.empty()) {
266 for (std::vector<ProfileSyncServiceHarness*>::iterator it = clients.begin();
267 it != clients.end(); ++it) {
259 AwaitQuiescence( std::vector<ProfileSyncServiceHarness*>& clients) argument
/external/chromium_org/content/common/gpu/
H A Dgpu_memory_manager.cc82 // Only use the clients that are visible, because otherwise the set of clients
107 // Ignore what the system said and give all clients the same maximum
263 // Determine which clients are "hibernated" (which determines the
264 // distribution of frontbuffers and memory among clients that don't have
268 // Assign memory allocations to clients that have surfaces.
271 // Assign memory allocations to clients that don't have surfaces.
278 // Send that allocation to the clients.
279 ClientStateList clients = clients_visible_mru_; local
280 clients
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DLocalFileSystem.cpp211 return static_cast<LocalFileSystem*>(WillBeHeapSupplement<WorkerClients>::from(toWorkerGlobalScope(context).clients(), supplementName()));
219 void provideLocalFileSystemToWorker(WorkerClients* clients, PassOwnPtr<FileSystemClient> client) argument
221 clients->provideSupplement(LocalFileSystem::supplementName(), LocalFileSystem::create(client));
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontCache.cpp240 DEFINE_STATIC_LOCAL(OwnPtrWillBePersistent<WillBeHeapHashSet<RawPtrWillBeWeakMember<FontCacheClient> > >, clients, (adoptPtrWillBeNoop(new WillBeHeapHashSet<RawPtrWillBeWeakMember<FontCacheClient> >())));
242 return *clients;
280 WillBeHeapVector<RefPtrWillBeMember<FontCacheClient> > clients; local
282 clients.reserveInitialCapacity(numClients);
285 clients.append(*it);
287 ASSERT(numClients == clients.size());
289 clients[i]->fontCacheInvalidated();
/external/chromium_org/content/renderer/media/
H A Dvideo_capture_impl.cc108 // outstanding clients of a capture session support resolution change.
313 // told all clients that we have started there's nothing to do.
433 bool VideoCaptureImpl::RemoveClient(int client_id, ClientInfoMap* clients) { argument
437 ClientInfoMap::iterator it = clients->find(client_id);
438 if (it != clients->end()) {
440 clients->erase(it);
/external/chromium_org/storage/browser/quota/
H A Dusage_tracker.cc73 UsageTracker::UsageTracker(const QuotaClientList& clients, argument
80 for (QuotaClientList::const_iterator iter = clients.begin();
81 iter != clients.end();
116 // all clients (because info->pending_clients may reach 0
130 // Fire the sentinel as we've now called GetGlobalUsage for all clients.
142 // all clients (because info->pending_clients may reach 0
156 // Fire the sentinel as we've now called GetGlobalUsage for all clients.
169 // all clients (because info->pending_clients may reach 0
183 // Fire the sentinel as we've now called GetHostUsage for all clients.
228 // All the clients hav
[all...]
/external/chromium_org/content/browser/renderer_host/media/
H A Dvideo_capture_controller.cc684 const ControllerClients& clients) {
685 for (ControllerClients::const_iterator client_it = clients.begin();
686 client_it != clients.end(); ++client_it) {
698 const ControllerClients& clients) {
699 for (ControllerClients::const_iterator client_it = clients.begin();
700 client_it != clients.end(); ++client_it) {
681 FindClient( const VideoCaptureControllerID& id, VideoCaptureControllerEventHandler* handler, const ControllerClients& clients) argument
696 FindClient( int session_id, const ControllerClients& clients) argument
/external/qemu/android/
H A Dhw-sensors.c174 HwSensorClient* clients; member in struct:__anon29151
192 HwSensorClient** pnode = &cl->sensors->clients;
237 cl->next = sensors->clients;
238 sensors->clients = cl;
H A Dhw-qemud.c72 * channel between clients running in the emulated system and 'services'
611 * There is a global list of serial clients used to multiplex incoming
613 * clients don't need multiplexing, because they are communicated via qemud pipes
830 * guest_close - For pipe clients control whether or not the disconnect is
832 * this parameter). For serial clients this parameter is ignored.
845 * client. Since pipe clients are controlled strictly by the guest, we
892 * NOTE: channel_id valie is used as a selector between serial and pipe clients.
949 * Note that we save only serial clients here. The pipe clients will be
979 * Note that we load only serial clients her
1074 QemudClient* clients; member in struct:QemudService
1291 QemudClient* clients; member in struct:QemudMultiplexer
[all...]
/external/qemu/ui/
H A Dvnc.h92 VncState *clients; member in struct:VncDisplay
/external/chromium_org/content/common/gpu/media/
H A Dvideo_encode_accelerator_unittest.cc1076 ScopedVector<VEAClient> clients; local
1089 clients.push_back(new VEAClient(g_env->test_streams_[test_stream_index],
1101 base::Unretained(clients.back())));
1122 base::Bind(&VEAClient::DestroyEncoder, base::Unretained(clients[i])));
/external/wpa_supplicant_8/hostapd/src/radius/
H A Dradius_server.c126 * clients - List of authorized RADIUS clients
128 struct radius_client *clients; member in struct:radius_server_data
276 * These counters are the sum over all clients.
397 struct radius_client *client = data->clients;
1495 struct radius_client *clients)
1499 client = clients;
1517 struct radius_client *clients, *tail, *entry; local
1537 clients = tail = NULL;
1645 clients
1494 radius_server_free_clients(struct radius_server_data *data, struct radius_client *clients) argument
[all...]

Completed in 3387 milliseconds

12