HomeSort by relevance Sort by last modified time
    Searched refs:client (Results 401 - 425 of 4928) sorted by null

<<11121314151617181920>>

  /external/autotest/client/site_tests/network_WlanDriver/
network_WlanDriver.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
10 from autotest_lib.client.common_lib.cros.network import interface
11 from autotest_lib.client.cros.networking import shill_proxy
  /external/autotest/client/site_tests/ui_SettingsPage/
ui_SettingsPage.py 7 from autotest_lib.client.bin import utils
8 from autotest_lib.client.common_lib.cros import chrome
9 from autotest_lib.client.cros.cellular import test_environment
10 from autotest_lib.client.cros.ui import ui_test_base
11 from autotest_lib.client.common_lib import error
  /external/autotest/client/site_tests/video_VideoCorruption/
video_VideoCorruption.py 8 from autotest_lib.client.bin import test
9 from autotest_lib.client.common_lib.cros import chrome
10 from autotest_lib.client.cros.video import constants
11 from autotest_lib.client.cros.video import native_html5_player
12 from autotest_lib.client.cros.video import helper_logger
  /external/autotest/client/site_tests/video_VideoReload/
video_VideoReload.py 8 from autotest_lib.client.bin import test
9 from autotest_lib.client.common_lib.cros import chrome
10 from autotest_lib.client.cros.video import constants
11 from autotest_lib.client.cros.video import native_html5_player
12 from autotest_lib.client.cros.video import helper_logger
  /external/autotest/frontend/client/src/autotest/tko/
EmbeddedTkoClient.java 9 import com.google.gwt.core.client.EntryPoint;
10 import com.google.gwt.core.client.GWT;
11 import com.google.gwt.core.client.JavaScriptObject;
12 import com.google.gwt.core.client.GWT.UncaughtExceptionHandler;
13 import com.google.gwt.dom.client.Element;
  /external/autotest/server/site_tests/brillo_DecodingAudioTest/
brillo_DecodingAudioTest.py 10 from autotest_lib.client.common_lib import error
11 from autotest_lib.client.common_lib.feedback import client
37 @param fb_client: A feedback client implementation.
45 fb_query = fb_client.new_query(client.QUERY_AUDIO_PLAYBACK_SILENT)
56 fb_query = fb_client.new_query(client.QUERY_AUDIO_PLAYBACK_AUDIBLE)
  /external/autotest/server/site_tests/network_WiFi_DisconnectClearsIP/
network_WiFi_DisconnectClearsIP.py 8 from autotest_lib.client.common_lib import error
9 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
30 if self.context.client.wifi_ip is None:
34 disconnect_check = self.context.client.shill.disconnect(
41 wifi_ip = self.context.client.wifi_ip
  /external/autotest/server/site_tests/network_WiFi_Powersave/
network_WiFi_Powersave.py 7 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
24 if should_be_on != self.context.client.powersave_on:
48 self.context.client.powersave_switch(True)
53 self.context.client.shill.disconnect(assoc_params.ssid)
54 self.context.client.powersave_switch(False)
  /external/autotest/server/site_tests/network_WiFi_Prefer5Ghz/
network_WiFi_Prefer5Ghz.py 5 from autotest_lib.client.common_lib.cros.network import iw_runner
6 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
18 self.context.client.clear_supplicant_blacklist()
27 # to discover both BSSes in the initial scan, which results in client
29 self.context.client.wait_for_bsses(ssid, 2)
32 self.context.client.check_iw_link_value(
  /external/autotest/server/site_tests/network_WiFi_WakeOnDisconnect/
network_WiFi_WakeOnDisconnect.py 8 from autotest_lib.client.common_lib import error
21 client = self.context.client
25 with client.wake_on_wifi_features(wifi_client.WAKE_ON_WIFI_DARKCONNECT):
38 if client.host.wait_up(
40 raise error.TestFail('Client woke up fully.')
43 raise error.TestFail('Client failed to wake up.')
45 logging.info('Client woke up successfully.')
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_clnt_call/
tirpc_bottomlevel_clnt_call.c 51 CLIENT *client = NULL; local
87 client = clnt_dg_create(sock, &svcaddr,
90 if (client == NULL) {
97 cs = clnt_call(client, PROCNUM,
105 clnt_destroy(client);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_clnt_dg_create/
tirpc_clnt_dg_create.c 51 CLIENT *client = NULL; local
80 client = clnt_dg_create(sock, &svcaddr,
82 test_status = ((CLIENT *) client != NULL) ? 0 : 1;
84 if (client != NULL)
85 clnt_destroy(client);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_clnt_vc_create/
tirpc_clnt_vc_create.c 54 CLIENT *client = NULL; local
81 client = clnt_vc_create(sock, &svcaddr,
83 test_status = ((CLIENT *) client != NULL) ? 0 : 1;
85 if (client != NULL)
86 clnt_destroy(client);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_expertlevel_clnt_call/
tirpc_expertlevel_clnt_call.c 55 CLIENT *client = NULL; local
94 client = clnt_tli_create(RPC_ANYFD, nconf, &svcaddr,
97 if (client == NULL) {
102 cs = clnt_call(client, PROCNUM,
112 clnt_destroy(client);
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
CacheResponse.java 26 private final OkHttpClient client; field in class:CacheResponse
32 client = new OkHttpClient();
33 client.setCache(cache);
41 Response response1 = client.newCall(request).execute();
49 Response response2 = client.newCall(request).execute();
  /external/walt/ios/WALT/
MIDIClient.h 32 - (void)MIDIClient:(MIDIClient *)client receivedData:(NSData *)message;
35 /** Called when a MIDI I/O error occurs on the client's endpoints. */
36 - (void)MIDIClient:(MIDIClient *)client receivedError:(NSError *)error;
39 - (void)MIDIClientEndpointAdded:(MIDIClient *)client;
42 - (void)MIDIClientEndpointRemoved:(MIDIClient *)client;
45 - (void)MIDIClientConfigurationChanged:(MIDIClient *)client;
48 /** A MIDI client that can read data from a MIDI source and write data to a MIDI destination. */
59 * Creates a new MIDI client with a friendly name.
65 /** Attaches an input source to the client. */
68 /** Attaches an output destination to the client. *
    [all...]
MIDIClient.m 32 /** Returns whether the client's source or destination is attached to a particular device. */
38 MIDIClient *client = (__bridge MIDIClient *)context;
47 [client.delegate respondsToSelector:@selector(MIDIClientEndpointAdded:)]) {
48 [client.delegate MIDIClientEndpointAdded:client];
60 [client.delegate respondsToSelector:@selector(MIDIClientEndpointRemoved:)]) {
61 [client.delegate MIDIClientEndpointRemoved:client];
72 if ([client.delegate respondsToSelector:@selector(MIDIClientConfigurationChanged:)]) {
73 [client.delegate MIDIClientConfigurationChanged:client]
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
pubsubtasks_unittest.cc 79 client = new buzz::FakeXmppClient(runner.get());
84 // Client deleted by deleting runner.
85 buzz::FakeXmppClient* client; member in class:PubSubTasksTest
94 new buzz::PubSubRequestTask(client, pubsubjid, node);
101 "xmlns:cli=\"jabber:client\">"
107 ASSERT_EQ(1U, client->sent_stanzas().size());
108 EXPECT_EQ(expected_iq, client->sent_stanzas()[0]->Str());
111 "<iq xmlns='jabber:client' id='0' type='result' from='room@domain.com'>"
124 client->HandleStanza(buzz::XmlElement::ForStr(result_iq));
137 "<iq xmlns='jabber:client' id='0' type='error' from='room@domain.com'>
    [all...]
  /hardware/qcom/gps/msm8998/gnss/
GnssAdapter.h 82 /* ==== CLIENT ========================================================================= */
129 /* ==== CLIENT ========================================================================= */
130 /* ======== COMMANDS ====(Called from Client Thread)==================================== */
131 void addClientCommand(LocationAPI* client, const LocationCallbacks& callbacks);
132 void removeClientCommand(LocationAPI* client);
133 void requestCapabilitiesCommand(LocationAPI* client);
135 void saveClient(LocationAPI* client, const LocationCallbacks& callbacks);
136 void eraseClient(LocationAPI* client);
138 void stopClientSessions(LocationAPI* client);
139 LocationCallbacks getClientCallbacks(LocationAPI* client);
    [all...]
  /hardware/qcom/gps/sdm845/gnss/
GnssAdapter.h 82 /* ==== CLIENT ========================================================================= */
129 /* ==== CLIENT ========================================================================= */
130 /* ======== COMMANDS ====(Called from Client Thread)==================================== */
131 void addClientCommand(LocationAPI* client, const LocationCallbacks& callbacks);
132 void removeClientCommand(LocationAPI* client);
133 void requestCapabilitiesCommand(LocationAPI* client);
135 void saveClient(LocationAPI* client, const LocationCallbacks& callbacks);
136 void eraseClient(LocationAPI* client);
138 void stopClientSessions(LocationAPI* client);
139 LocationCallbacks getClientCallbacks(LocationAPI* client);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
httpresponse.go 33 client := http.DefaultClient
34 res, err := client.Get("http://foo.com")
42 client := http.DefaultClient
43 resp, err := client.Get("http://foo.com")
51 client := http.Client{}
52 resp, err := client.Get("http://foo.com")
60 client := http.DefaultClient
66 resp, err := client.Do(req)
74 var client http.Clien
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
httpresponse.go 33 client := http.DefaultClient
34 res, err := client.Get("http://foo.com")
42 client := http.DefaultClient
43 resp, err := client.Get("http://foo.com")
51 client := http.Client{}
52 resp, err := client.Get("http://foo.com")
60 client := http.DefaultClient
66 resp, err := client.Do(req)
74 var client http.Clien
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteProviderService.java 185 ClientRecord client = new ClientRecord(messenger, version); local
186 if (client.register()) {
187 mClients.add(client);
189 Log.d(TAG, client + ": Registered, version=" + version);
196 client.mVersion), null);
208 ClientRecord client = mClients.remove(index); local
210 Log.d(TAG, client + ": Unregistered");
212 client.dispose();
222 ClientRecord client = mClients.remove(index); local
224 Log.d(TAG, client + ": Binder died")
232 ClientRecord client = getClient(messenger); local
248 ClientRecord client = getClient(messenger); local
264 ClientRecord client = getClient(messenger); local
283 ClientRecord client = getClient(messenger); local
302 ClientRecord client = getClient(messenger); local
321 ClientRecord client = getClient(messenger); local
340 final ClientRecord client = getClient(messenger); local
398 ClientRecord client = getClient(messenger); local
415 ClientRecord client = mClients.get(i); local
481 ClientRecord client = mClients.get(i); local
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/http-client/google-http-client-jackson2/1.19.0/
google-http-client-jackson2-1.19.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/http-client/google-http-client-jackson2/1.22.0/
google-http-client-jackson2-1.22.0.jar 

Completed in 672 milliseconds

<<11121314151617181920>>