HomeSort by relevance Sort by last modified time
    Searched refs:client (Results 51 - 75 of 5616) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/support/media/version-compat-tests/current/client/src/androidTest/java/androidx/media/test/client/
MockActivity.java 17 package androidx.media.test.client;
  /frameworks/support/webkit-codegen/src/test/resources/codegen/
FilterMethods.java 26 public void method3(WebViewClient client) {
  /packages/apps/Nfc/tests/src/com/android/nfc/snep/
SnepCustomClientTests.java 47 SnepClient client = getSnepClient(); local
48 client.connect();
49 client.put(getSmallNdef());
50 client.close();
54 SnepClient client = getSnepClient(); local
55 client.connect();
56 client.put(getLargeNdef());
57 client.close();
61 SnepClient client = getSnepClient(); local
62 client.connect()
69 SnepClient client = getSnepClient(); local
    [all...]
SnepDefaultClientTests.java 47 SnepClient client = new SnepClient(); local
48 client.connect();
49 client.put(getSmallNdef());
50 client.close();
54 SnepClient client = new SnepClient(); local
55 client.connect();
56 client.put(getLargeNdef());
57 client.close();
61 SnepClient client = new SnepClient(); local
62 client.connect()
69 SnepClient client = new SnepClient(); local
    [all...]
  /system/core/libsysutils/include/sysutils/
SocketClientCommand.h 24 virtual void runSocketCommand(SocketClient *client) = 0;
  /external/adhd/cras/src/server/
cras_rclient.h 7 * A remote client to the server.
17 * fd - The file descriptor used for communication with the client.
18 * id - Unique identifier for this client.
26 * client - The client to destroy.
28 void cras_rclient_destroy(struct cras_rclient *client);
30 /* Handles a message from the client.
32 * client - The client that received this message.
33 * msg - The message that was sent by the remote client
    [all...]
cras_observer.c 88 struct cras_observer_client *client; local
92 DL_FOREACH(g_observer->clients, client) {
93 if (client->ops.output_volume_changed)
94 client->ops.output_volume_changed(
95 client->context,
102 struct cras_observer_client *client; local
106 DL_FOREACH(g_observer->clients, client) {
107 if (client->ops.output_mute_changed)
108 client->ops.output_mute_changed(
109 client->context
118 struct cras_observer_client *client; local
132 struct cras_observer_client *client; local
152 struct cras_observer_client *client; local
162 struct cras_observer_client *client; local
177 struct cras_observer_client *client; local
192 struct cras_observer_client *client; local
207 struct cras_observer_client *client; local
222 struct cras_observer_client *client; local
236 struct cras_observer_client *client; local
372 struct cras_observer_client *client; local
    [all...]
  /external/autotest/client/bin/
sysinfo.py 1 from autotest_lib.client.common_lib import utils
2 from autotest_lib.client.bin import base_sysinfo
3 from autotest_lib.client.bin import site_sysinfo
6 "autotest_lib.client.bin.site_sysinfo",
  /external/autotest/client/site_tests/audio_Aconnect/
audio_Aconnect.py 5 from autotest_lib.client.bin import test
6 from autotest_lib.client.common_lib import error
7 from autotest_lib.client.cros.audio import alsa_utils
16 """Ensure we can access at least 1 seq client.
19 client.
23 raise error.TestFail('There is no MIDI seq client')
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_TouchMTB.py 7 from autotest_lib.client.bin import test
8 from autotest_lib.client.bin import utils
9 from autotest_lib.client.common_lib import error
  /external/autotest/frontend/client/src/autotest/afe/
ITextArea.java 3 import com.google.gwt.event.dom.client.HasChangeHandlers;
4 import com.google.gwt.user.client.ui.HasText;
5 import com.google.gwt.user.client.ui.TextArea;
ITextBox.java 3 import com.google.gwt.event.dom.client.HasBlurHandlers;
4 import com.google.gwt.event.dom.client.HasChangeHandlers;
5 import com.google.gwt.event.dom.client.HasKeyPressHandlers;
6 import com.google.gwt.user.client.ui.HasText;
7 import com.google.gwt.user.client.ui.TextBox;
ControlTypeSelectDisplay.java 5 import com.google.gwt.user.client.ui.Composite;
6 import com.google.gwt.user.client.ui.HorizontalPanel;
7 import com.google.gwt.user.client.ui.Panel;
12 private RadioButtonImpl client = new RadioButtonImpl(RADIO_GROUP); field in class:ControlTypeSelectDisplay
17 panel.add(client);
19 client.setValue(true); // client is default
24 return client;
  /frameworks/base/core/java/android/app/servertransaction/
BaseClientRequest.java 23 * Base interface for individual requests from server to client.
30 * Prepare the client request before scheduling.
33 * @param client Target client handler.
36 default void preExecute(ClientTransactionHandler client, IBinder token) {
41 * @param client Target client handler.
45 void execute(ClientTransactionHandler client, IBinder token,
50 * @param client Target client handler
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/chatserver/
NameReader.java 44 * The first state a newly connected {@code Client} is in, this
48 * client.
61 * Writes the welcoming message to the client the first time this method
64 * @param client the client to receive the message
67 public void beforeRead(Client client) {
70 client.writeStringMessage("Name: ");
84 public void onData(Client client, ByteBuffer buffer, int bytes)
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/chatserver/
NameReader.java 44 * The first state a newly connected {@code Client} is in, this
48 * client.
61 * Writes the welcoming message to the client the first time this method
64 * @param client the client to receive the message
67 public void beforeRead(Client client) {
70 client.writeStringMessage("Name: ");
84 public void onData(Client client, ByteBuffer buffer, int bytes)
    [all...]
  /tools/test/connectivity/acts/framework/tests/controllers/sl4a_lib/
rpc_client_test.py 38 client = rpc_client.RpcClient(session.uid, session.adb.serial,
41 client._log = mock.Mock()
42 client._working_connections = [mock.Mock()]
44 client.terminate()
46 self.assertTrue(client._log.warning.called)
55 client = rpc_client.RpcClient(session.uid, session.adb.serial,
58 client._log = mock.Mock()
61 client._free_connections = free_connections
62 client._working_connections = working_connections
64 client.terminate(
    [all...]
  /external/autotest/server/site_tests/enterprise_KioskEnrollmentServer/
enterprise_KioskEnrollmentServer.py 5 from autotest_lib.client.common_lib.cros import tpm_utils
15 self.client = host
17 tpm_utils.ClearTPMOwnerRequest(self.client)
18 autotest.Autotest(self.client).run_test('enterprise_KioskEnrollment',
21 tpm_utils.ClearTPMOwnerRequest(self.client)
  /external/autotest/server/site_tests/network_WiFi_RandomMACAddress/
network_WiFi_RandomMACAddress.py 5 from autotest_lib.client.common_lib import error
19 client = self.context.client
20 dut_hw_mac = client.wifi_mac
23 with client.mac_address_randomization(True):
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
ClientWakelockTracker.java 39 ClientWakelockAccountant client = getClientWakelockAccountant(clientId); local
41 client.startAttributingWakelock(requestId, token, numRequestsInQueue, uptime);
44 if (!mActiveClients.contains(client)) {
45 mActiveClients.add(client);
52 ClientWakelockAccountant client = getClientWakelockAccountant(clientId); local
54 client.stopAttributingWakelock(requestId, token, uptime);
55 if(client.getPendingRequestCount() == 0) {
57 mActiveClients.remove(client);
67 for (ClientWakelockAccountant client : mActiveClients) {
68 client.stopAllPendingRequests(uptime)
80 ClientWakelockAccountant client = mClients.get(key); local
89 ClientWakelockAccountant client; local
112 ClientWakelockAccountant client = getClientWakelockAccountant(clientId); local
    [all...]
  /hardware/qcom/gps/msm8909w_3100/core/data-items/common/
IClientIndex.h 43 // Checks if client is subscribed
44 virtual bool isSubscribedClient (CT client) = 0;
47 virtual void getSubscribedList (CT client, std :: list <DIT> & out) = 0;
50 virtual int remove (CT client) = 0;
60 // removes list of data items indexed by client and returns list
64 CT client,
72 CT client,
  /system/core/logd/
FlushCommand.cpp 29 // runSocketCommand is called once for every open client on the
31 // client tracking and log region locks LastLogTimes list of
32 // LogTimeEntrys, and spawn a transitory per-client thread to
38 void FlushCommand::runSocketCommand(SocketClient* client) {
46 if (entry->mClient == client) {
82 entry = new LogTimeEntry(mReader, client, mNonBlock, mTail, mLogMask,
87 client->incRef();
89 // release client and entry reference counts once done
94 bool FlushCommand::hasReadLogs(SocketClient* client) {
95 return clientHasLogCredentials(client);
    [all...]
  /external/wayland/tests/
compositor-introspection-test.c 34 #include "wayland-client.h"
51 struct wl_client *client; member in struct:compositor
58 c->client = data;
65 struct wl_client *client, *client_it; local
71 client = client_it;
74 /* 'client_it' is not valid here, so we took a copy of the client in the loop.
77 * so that there is only one client but the wrong one. */
78 assert(compositor->client == client);
100 wl_client_destroy(compositor->client);
110 } client; local
148 } client; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
SocketTest.java 98 Socket client = socket.accept(); local
99 client.close();
129 ClientThread client = new ClientThread(); local
130 Thread clientThread = new Thread(client);
262 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local
264 client.setSoLinger(false, 100);
266 client.close();
268 client.getOutputStream();
346 Socket client = new Socket(); local
347 client.connect(boundAddress)
447 Socket client = new Socket(); local
535 Socket client = new Socket(InetAddress.getLocalHost().getHostName(), local
571 Socket client = new Socket(InetAddress.getLocalHost().getHostAddress(), local
588 Socket client = new Socket(InetAddress.getLocalHost(), server local
663 Socket client = new Socket(InetAddress.getLocalHost(), server local
679 Socket client = new Socket(InetAddress.getLocalHost(), server local
741 Socket client = new Socket(InetAddress.getLocalHost(), server local
799 Socket client = new Socket(InetAddress.getLocalHost(), server local
890 Socket client = new Socket(InetAddress.getLocalHost(), serverPort); local
900 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local
917 Socket client = new Socket(InetAddress.getLocalHost(), serverPort); local
1009 Socket client = new Socket(InetAddress.getLocalHost(), server local
1054 Socket client = new Socket(InetAddress.getLocalHost(), server local
1085 Socket client = new Socket(InetAddress.getLocalHost(), server local
1120 Socket client = new Socket(InetAddress.getLocalHost(), server local
1157 Socket client = new Socket(InetAddress.getLocalHost(), server local
1212 Socket client = new Socket(); local
1419 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local
1447 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local
1479 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local
1493 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local
1503 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local
1515 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local
1558 Socket client = new Socket(InetAddress.getLocalHost(), port); local
1601 Socket client = new Socket(InetAddress.getLocalHost(), port); local
1638 Socket client = new Socket(InetAddress.getLocalHost(), server.getLocalPort()); local
    [all...]
  /external/adhd/cras/src/libcras/
cras_helpers.c 20 static int play_buffer_callback(struct cras_client *client,
46 static int play_buffer_error(struct cras_client *client,
55 int cras_helper_create_connect_async(struct cras_client **client,
61 rc = cras_client_create(client);
65 cras_client_set_connection_status_cb(*client, connection_cb, user_arg);
67 rc = cras_client_run_thread(*client);
71 rc = cras_client_connect_async(*client);
78 cras_client_destroy(*client);
82 int cras_helper_create_connect(struct cras_client **client)
86 rc = cras_client_create(client);
    [all...]

Completed in 823 milliseconds

1 23 4 5 6 7 8 91011>>