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

1 2 3 4

  /libcore/support/src/test/java/tests/net/
StuckServer.java 48 private ArrayList<Socket> clients = new ArrayList<Socket>(); field in class:StuckServer
67 clients.add(client);
90 for (Socket client : clients) {
  /packages/apps/Camera2/src/com/android/camera/one/v2/core/
ObservableFrameServer.java 43 * The total number of clients which either have an exclusive Session or are
70 int clients = mClientCount.decrementAndGet(); local
71 mAvailability.update(clients == 0);
86 int clients = mClientCount.incrementAndGet(); local
87 mAvailability.update(clients == 0);
96 clients = mClientCount.decrementAndGet();
97 mAvailability.update(clients == 0);
109 int clients = mClientCount.incrementAndGet(); local
110 mAvailability.update(clients == 0);
  /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...]
  /system/bt/hci/src/
hci_inject.c 56 static list_t *clients; variable
66 assert(clients == NULL);
75 clients = list_new(client_free);
76 if (!clients)
96 list_free(clients);
101 clients = NULL;
135 if (!list_append(clients, client)) {
152 list_remove(clients, client);
  /external/libdrm/nouveau/
nouveau.c 200 uint32_t *clients; local
210 clients = realloc(nvdev->client, sizeof(uint32_t) * (i + 1));
211 if (!clients)
213 nvdev->client = clients;
  /frameworks/av/services/mediaresourcemanager/
ResourceManagerService.cpp 209 int callingPid, const MediaResource *res, Vector<sp<IResourceManagerClient>> *clients) {
215 clients->push_back(client);
225 Vector<sp<IResourceManagerClient>> clients; local
245 if (!getAllClients_l(callingPid, String8(kResourceSecureCodec), &clients)) {
250 if (!getAllClients_l(callingPid, String8(kResourceNonSecureCodec), &clients)) {
257 if (!getAllClients_l(callingPid, String8(kResourceSecureCodec), &clients)) {
263 if (clients.size() == 0) {
265 getClientForResource_l(callingPid, graphicMemory, &clients);
268 if (clients.size() == 0) {
270 getClientForResource_l(callingPid, secureCodec, &clients);
    [all...]
  /frameworks/av/services/mediaresourcemanager/test/
ResourceManagerService_test.cpp 238 Vector<sp<IResourceManagerClient> > clients; local
239 EXPECT_FALSE(mService->getAllClients_l(kLowPriorityPid, type, &clients));
242 EXPECT_FALSE(mService->getAllClients_l(kMidPriorityPid, type, &clients));
243 EXPECT_TRUE(mService->getAllClients_l(kHighPriorityPid, unknowType, &clients));
244 EXPECT_TRUE(mService->getAllClients_l(kHighPriorityPid, type, &clients));
246 EXPECT_EQ(2u, clients.size());
247 EXPECT_EQ(mTestClient3, clients[0]);
248 EXPECT_EQ(mTestClient1, clients[1]);
  /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...]
  /system/bt/bta/jv/
bta_jv_act.c 69 struct fc_client *clients; member in struct:fc_channel
    [all...]
  /device/generic/goldfish/qemud/
qemud.c 34 * other channel numbers correspond to clients. More specifically,
1205 /** CLIENTS
1237 Client* clients; member in struct:Multiplexer
    [all...]
  /external/libvncserver/x11vnc/
appshare.c 96 " desired clients in the file, one per line. If you add\n"
104 " cmd=quit Disconnect all clients and exit.\n"
117 " cmd=list_clients List all connected clients.\n"
125 " that tracks connected clients internally (not in a file.)\n"
144 " -control internal Manage connected clients internally, see below.\n"
157 " If you want your setup to survive periods of time where there are no clients\n"
160 " clients (e.g. empty control file) will work without -args '-forever'.\n"
172 " and client tracking is done internally. You must add and delete clients\n"
257 static char *clients[CMAX]; variable
322 if (clients[i] == NULL)
    [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
290 * These counters are the sum over all clients.
411 struct radius_client *client = data->clients;
1532 struct radius_client *clients, *tail, *entry; local
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.cpp 439 SortedVector< sp<Client> > clients; //to serialise the mutex unlock & client destruction. local
453 clients.add(c);
    [all...]
  /bionic/libc/kernel/uapi/sound/
asequencer.h 236 int clients; member in struct:snd_seq_system_info
asound.h 654 unsigned int clients; member in struct:snd_timer_ginfo
    [all...]
  /external/kernel-headers/original/uapi/sound/
asequencer.h 141 /* 150-151: kernel events with quote - DO NOT use in user clients */
157 unsigned char client; /**< Client number: 0..255, 255 = broadcast to all clients */
170 #define SNDRV_SEQ_ADDRESS_BROADCAST 255 /* send event to all queues/clients/ports/channels */
312 int clients; /* maximum clients count */ member in struct:snd_seq_system_info
315 int cur_clients; /* current clients */
476 * etc. if the queue is locked for other clients
asound.h 663 unsigned int clients; /* active timer clients */ member in struct:snd_timer_ginfo
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiScanningServiceImpl.java 446 Collection<ClientInfo> clients = mClients.values(); local
447 for (ClientInfo ci2 : clients) {
455 Collection<ClientInfo> clients = mClients.values(); local
456 for (ClientInfo ci2 : clients) {
465 Collection<ClientInfo> clients = mClients.values(); local
466 for (ClientInfo ci2 : clients) {
474 Collection<ClientInfo> clients = mClients.values(); local
475 for (ClientInfo ci2 : clients) {
492 Collection<ClientInfo> clients = mClients.values(); local
493 for (ClientInfo ci2 : clients) {
1152 Collection<ClientInfo> clients = mClients.values(); local
1295 Collection<ClientInfo> clients = mClients.values(); local
1304 Collection<ClientInfo> clients = mClients.values(); local
1354 Collection<ClientInfo> clients = mClients.values(); local
1373 Collection<ClientInfo> clients = mClients.values(); local
1380 Collection<ClientInfo> clients = mClients.values(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sound/
asequencer.h 141 /* 150-151: kernel events with quote - DO NOT use in user clients */
157 unsigned char client; /**< Client number: 0..255, 255 = broadcast to all clients */
170 #define SNDRV_SEQ_ADDRESS_BROADCAST 255 /* send event to all queues/clients/ports/channels */
312 int clients; /* maximum clients count */ member in struct:snd_seq_system_info
315 int cur_clients; /* current clients */
476 * etc. if the queue is locked for other clients
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/sound/
asequencer.h 141 /* 150-151: kernel events with quote - DO NOT use in user clients */
157 unsigned char client; /**< Client number: 0..255, 255 = broadcast to all clients */
170 #define SNDRV_SEQ_ADDRESS_BROADCAST 255 /* send event to all queues/clients/ports/channels */
312 int clients; /* maximum clients count */ member in struct:snd_seq_system_info
315 int cur_clients; /* current clients */
476 * etc. if the queue is locked for other clients
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
CameraStreamer.java 49 * The CameraStreamer streams Frames from a camera to connected clients.
53 * number of connected clients. Typically, these are CameraSource filters that are part of a
54 * graph, but other clients can be written as well.
92 /** Map of set of clients (one for each target context) */
96 /** List of clients that are consuming camera frames. */
142 Set<FrameClient> clients = mContextClients.get(context); local
143 if (clients == null) {
144 clients = new HashSet<FrameClient>();
145 mContextClients.put(context, clients);
147 return clients;
    [all...]
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
AccessibilityManagerService.java 455 // to clients as being installed - it really is not.
479 // to clients as being enabled. The automation service is always the
    [all...]
  /hardware/qcom/msm8x26/kernel-headers/sound/
asound.h 650 unsigned int clients; member in struct:snd_timer_ginfo
    [all...]

Completed in 4653 milliseconds

1 2 3 4