HomeSort by relevance Sort by last modified time
    Searched defs:clients (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/extensions/api/push_messaging/
sync_setup_helper.cc 42 // 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/third_party/WebKit/Source/core/css/
CSSImageGeneratorValue.h 77 const RenderObjectSizeCountMap& clients() const { return m_clients; } function in class:WebCore::CSSImageGeneratorValue
86 // there are clients in the RenderObjectSizeCountMap.
CSSFontSelector.cpp 83 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/WebKit/Source/modules/serviceworkers/
ServiceWorkerClients.cpp 28 Vector<RefPtr<Client> > clients; local
30 clients.append(Client::create(webClients->clientIDs[i]));
32 return clients;
ServiceWorkerGlobalScope.cpp 104 PassRefPtr<ServiceWorkerClients> ServiceWorkerGlobalScope::clients() function in class:WebCore::ServiceWorkerGlobalScope
  /external/chromium_org/third_party/WebKit/Source/web/
WorkerPermissionClient.cpp 81 WorkerClients* clients = toWorkerGlobalScope(context).clients(); local
82 ASSERT(clients);
83 return static_cast<WorkerPermissionClient*>(WillBeHeapSupplement<WorkerClients>::from(*clients, supplementName()));
91 void providePermissionClientToWorker(WorkerClients* clients, PassOwnPtr<WebWorkerPermissionClientProxy> proxy)
93 ASSERT(clients);
94 WorkerPermissionClient::provideTo(*clients, WorkerPermissionClient::supplementName(), WorkerPermissionClient::create(proxy));
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
main.cc 94 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();
  /libcore/support/src/test/java/tests/net/
StuckServer.java 34 private ArrayList<Socket> clients = new ArrayList<Socket>(); field in class:StuckServer
53 clients.add(client);
81 for (Socket client : clients) {
  /external/chromium_org/android_webview/browser/
global_tile_manager_unittest.cc 56 MockGlobalTileManagerClient clients[2]; local
59 manager()->RequestTiles(clients[i].GetTileRequest(), clients[i].GetKey());
60 manager()->DidUse(clients[i].GetKey());
62 // Ensure clients get what they asked for when the manager is under tile
64 EXPECT_EQ(clients[i].GetNumTiles(), kDefaultNumTiles);
69 MockGlobalTileManagerClient clients[4]; local
72 manager()->RequestTiles(clients[i].GetTileRequest(), clients[i].GetKey());
73 manager()->DidUse(clients[i].GetKey())
87 MockGlobalTileManagerClient clients[100]; local
115 MockGlobalTileManagerClient clients[10]; local
132 MockGlobalTileManagerClient clients[20]; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IntRangeManager.java 23 * Clients can enable reception of SMS-CB messages for specific ranges of
35 * Clients are identified by String (the name associated with the User ID
42 * Initial capacity for IntRange clients array list. There will be
48 * One or more clients forming the continuous range [startId, endId].
107 * to the clients array list directly, instead of via this method.
109 * number of clients grows large enough that it would make a difference.
446 // search for it in the clients list
447 ArrayList<ClientRange> clients = range.mClients; local
450 int crLength = clients.size();
452 ClientRange cr = clients.get(0)
    [all...]
  /external/chromium_org/content/common/gpu/
gpu_memory_manager.cc 82 // 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.insert(clients.end()
    [all...]
  /external/chromium_org/content/common/gpu/media/
rendering_helper.h 146 // The clients who provide the content for rendering.
147 std::vector<base::WeakPtr<RenderingHelper::Client> > clients; member in struct:content::RenderingHelperParams
video_encode_accelerator_unittest.cc 899 ScopedVector<VEAClient> clients; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerGlobalScope.h 135 WorkerClients* clients() { return m_workerClients.get(); } function in class:WebCore::WorkerGlobalScope
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
ContextTrackingValidationCheck.java 26 private final List<ContextTrackingChecker> clients = new ArrayList<>(5); field in class:ContextTrackingValidationCheck
70 this.clients.add(client);
75 for (ContextTrackingChecker client : clients) {
81 for (ContextTrackingChecker client : clients) {
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontCache.cpp 247 DEFINE_STATIC_LOCAL(Persistent<HeapHashSet<WeakMember<FontCacheClient> > >, clients, (new HeapHashSet<WeakMember<FontCacheClient> >()));
249 DEFINE_STATIC_LOCAL(HashSet<RawPtr<FontCacheClient> >*, clients, (new HashSet<RawPtr<FontCacheClient> >()));
252 return *clients;
290 WillBeHeapVector<RefPtrWillBeMember<FontCacheClient> > clients; local
292 clients.reserveInitialCapacity(numClients);
295 clients.append(*it);
297 ASSERT(numClients == clients.size());
299 clients[i]->fontCacheInvalidated();
  /external/qemu/android/
hw-sensors.c 174 HwSensorClient* clients; member in struct:__anon32869
192 HwSensorClient** pnode = &cl->sensors->clients;
237 cl->next = sensors->clients;
238 sensors->clients = cl;
console.c 108 /* the list of current clients */
109 ControlClient clients; member in struct:ControlGlobalRec_
217 ControlClient *pnode = &global->clients;
318 client->next = global->clients;
319 global->clients = client;
    [all...]
hw-qemud.c 72 * channel between clients running in the emulated system and 'services'
581 /** CLIENTS
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 b
1074 QemudClient* clients; member in struct:QemudService
1291 QemudClient* clients; member in struct:QemudMultiplexer
    [all...]
  /external/qemu/ui/
vnc.h 92 VncState *clients; member in struct:VncDisplay
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DeviceChooserDialog.java 624 * Sent when a device data changed, or when clients are started/terminated on the device.
733 * clients on each device and finding one similar to the one being launched.
744 Client[] clients = device.getClients(); local
746 for (Client client : clients) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
DdmsPlugin.java 114 * @param selectedClient The selected client. If null, no clients are selected.
621 // any change in the devices/clients, will be handled by the UI, and we'll receive
641 // any change in the devices/clients, will be handled by the UI, and we'll receive
666 * Sent when a device data changed, or when clients are started/terminated on the device.
677 // any change in the devices/clients, will be handled by the UI, and we'll receive
686 // get the clients and make sure ours is still in there.
687 Client[] clients = device.getClients(); local
689 for (Client client : clients) {
709 * @param selectedClient The selected client. If null, no clients are selected.
762 Client[] clients = device.getClients()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
DeviceView.java 595 Client[] clients = device.getClients(); local
596 List<String> apps = new ArrayList<String>(clients.length);
597 for (int i = 0; i < clients.length; i++) {
598 String name = clients[i].getClientData().getClientDescription();
708 * @param selectedClient The selected client. If null, no clients are
    [all...]
  /device/generic/goldfish/qemud/
qemud.c 33 * other channel numbers correspond to clients. More specifically,
1204 /** CLIENTS
1236 Client* clients; member in struct:Multiplexer
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius_server.c 126 * 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;
1517 struct radius_client *clients, *tail, *entry; local
    [all...]

Completed in 1134 milliseconds

1 2 3