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

1 2

  /external/webkit/Source/WebCore/platform/graphics/win/
QTMovieTask.cpp 76 Vector<QTMovieTaskClient*> clients; local
77 copyToVector(m_taskList, clients);
78 for (Vector<QTMovieTaskClient*>::iterator i = clients.begin(); i != clients.end(); ++i)
  /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) {
  /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/net/tools/fetch/
fetch_client.cc 29 printf("usage: %s --url=<url> [--n=<clients>] [--stats] [--use_cache]\n",
173 Client** clients = new Client*[client_limit]; local
175 clients[i] = new Client(factory, url);
186 printf("Clients : %d\n", num_clients);
  /external/webkit/Source/WebKit/android/jni/
WebIconDatabase.cpp 166 // Swap the clients queue
167 Vector<WebIconDatabaseClient*> clients; local
168 clients.swap(mClients);
171 for (unsigned j = 0; j < clients.size(); ++j) {
172 clients[j]->didAddIconForPageUrl(queue[i]);
  /external/webkit/Source/WebCore/css/
CSSFontSelector.cpp 360 Vector<FontSelectorClient*> clients; local
361 copyToVector(m_clients, clients);
362 for (size_t i = 0; i < clients.size(); ++i)
363 clients[i]->fontsNeedUpdate(this);
  /hardware/msm7k/librpc/
clnt.c 72 static volatile struct CLIENT *clients; variable in typeref:struct:CLIENT
202 CLIENT *client = (CLIENT *)clients;
276 V("rx thread timeout (%d clients):\n", num_clients);
279 CLIENT *trav = (CLIENT *)clients;
572 client->next = (CLIENT *)clients;
573 clients = client;
620 CLIENT *trav = (CLIENT *)clients, *prev = NULL;
629 clients = trav->next;
  /external/webkit/Source/WebCore/platform/graphics/
FontCache.cpp 455 Vector<RefPtr<FontSelector> > clients; local
457 clients.reserveInitialCapacity(numClients);
460 clients.append(*it);
462 ASSERT(numClients == clients.size());
464 clients[i]->fontCacheInvalidated();
  /external/qemu/android/
hw-sensors.c 174 HwSensorClient* clients; member in struct:__anon13058
192 HwSensorClient** pnode = &cl->sensors->clients;
237 cl->next = sensors->clients;
238 sensors->clients = cl;
console.c 111 /* the list of current clients */
112 ControlClient clients; member in struct:ControlGlobalRec_
232 ControlClient *pnode = &global->clients;
333 client->next = global->clients;
334 global->clients = client;
    [all...]
hw-qemud.c 71 * channel between clients running in the emulated system and 'services'
580 /** CLIENTS
610 * There is a global list of serial clients used to multiplex incoming
612 * clients don't need multiplexing, because they are communicated via qemud pipes
829 * guest_close - For pipe clients control whether or not the disconnect is
831 * this parameter). For serial clients this parameter is ignored.
844 * client. Since pipe clients are controlled strictly by the guest, we
891 * NOTE: channel_id valie is used as a selector between serial and pipe clients.
948 * Note that we save only serial clients here. The pipe clients will b
1073 QemudClient* clients; member in struct:QemudService
1290 QemudClient* clients; member in struct:QemudMultiplexer
    [all...]
  /external/quake/quake/src/WinQuake/
server.h 26 struct client_s *clients; // [maxclients] member in struct:__anon14655
67 sizebuf_t reliable_datagram; // copied to all clients at end of frame
  /external/kernel-headers/original/linux/
i2c.h 240 struct list_head clients; member in struct:i2c_adapter
317 /* call the i2c_client->command() of all attached clients with
  /external/qemu/
vnc.h 92 VncState *clients; member in struct:VncDisplay
  /external/quake/quake/src/QW/server/
sv_main.c 117 Sends a datagram to all the clients informing them of the server crash,
150 clients before the server goes down. The messages are sent immediately,
166 for (i=0, cl = svs.clients ; i<MAX_CLIENTS ; i++, cl++)
229 // send notification to all remaining clients
278 i = client - svs.clients;
353 cl = &svs.clients[i];
513 int clients, spectators; local
603 for (i=0,cl=svs.clients ; i<MAX_CLIENTS ; i++,cl++)
623 // count up the clients and spectators
624 clients = 0
    [all...]
server.h 75 // the multicast buffer is used to send a message to a set of clients
232 client_t clients[MAX_CLIENTS]; member in struct:__anon14371
  /external/wpa_supplicant_8/src/radius/
radius_server.c 102 * clients - List of authorized RADIUS clients
104 struct radius_client *clients; member in struct:radius_server_data
247 * These counters are the sum over all clients.
317 struct radius_client *client = data->clients;
1058 struct radius_client *clients)
1062 client = clients;
1080 struct radius_client *clients, *tail, *entry; local
1100 clients = tail = NULL;
1208 clients = tail = entry
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DeviceChooserDialog.java 622 * Sent when a device data changed, or when clients are started/terminated on the device.
731 * clients on each device and finding one similar to the one being launched.
742 Client[] clients = device.getClients(); local
744 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.
617 // any change in the devices/clients, will be handled by the UI, and we'll receive
637 // any change in the devices/clients, will be handled by the UI, and we'll receive
662 * Sent when a device data changed, or when clients are started/terminated on the device.
673 // any change in the devices/clients, will be handled by the UI, and we'll receive
682 // get the clients and make sure ours is still in there.
683 Client[] clients = device.getClients(); local
685 for (Client client : clients) {
705 * @param selectedClient The selected client. If null, no clients are selected.
758 Client[] clients = device.getClients()
    [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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
asequencer.h 177 /* 150-151: kernel events with quote - DO NOT use in user clients */
193 unsigned char client; /**< Client number: 0..255, 255 = broadcast to all clients */
206 #define SNDRV_SEQ_ADDRESS_BROADCAST 255 /* send event to all queues/clients/ports/channels */
484 int clients; /* maximum clients count */ member in struct:snd_seq_system_info
487 int cur_clients; /* current clients */
648 * etc. if the queue is locked for other clients
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
asequencer.h 177 /* 150-151: kernel events with quote - DO NOT use in user clients */
193 unsigned char client; /**< Client number: 0..255, 255 = broadcast to all clients */
206 #define SNDRV_SEQ_ADDRESS_BROADCAST 255 /* send event to all queues/clients/ports/channels */
484 int clients; /* maximum clients count */ member in struct:snd_seq_system_info
487 int cur_clients; /* current clients */
648 * etc. if the queue is locked for other clients
    [all...]
  /bionic/libc/kernel/common/sound/
asound.h 570 unsigned int clients; member in struct:snd_timer_ginfo
    [all...]
  /external/kernel-headers/original/sound/
asound.h 594 unsigned int clients; /* active timer clients */ member in struct:snd_timer_ginfo
    [all...]
  /frameworks/base/services/java/com/android/server/accessibility/
AccessibilityManagerService.java 413 // to clients as being installed - it really is not.
434 // to clients as being enabled. The automation service is always the
    [all...]

Completed in 2247 milliseconds

1 2