Searched defs:client (Results 26 - 50 of 164) sorted by relevance

1234567

/frameworks/base/services/core/java/com/android/server/am/
H A DAppBindRecord.java24 * An association between a service and one of its client applications.
29 final ProcessRecord client; // Who has started/bound the service. field in class:AppBindRecord
32 // All ConnectionRecord for this client.
36 pw.println(prefix + "client=" + client);
55 client = _client;
61 + " " + service.shortName + ":" + client.processName + "}";
H A DContentProviderConnection.java24 * Represents a link between a content provider and client.
28 public final ProcessRecord client; field in class:ContentProviderConnection
32 // The client of this connection is currently waiting for the provider to appear.
44 client = _client;
75 sb.append(client.toShortString());
/frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/jdwp/
H A DJDWPClassDataRetriever.java36 private final Client client; field in class:JDWPClassDataRetriever
42 public JDWPClassDataRetriever(Client client) { argument
43 this.client = client;
53 public Map<String, String> getClassData(Client client) { argument
54 return new JDWPClassDataRetriever(client).retrieve();
58 if (client == null) {
62 settings = createTestOptions("localhost:" + String.valueOf(client.getDebuggerListenPort()));
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapRfcommTransport.java17 package android.bluetooth.client.map;
H A DBluetoothMasRequestPushMessage.java17 package android.bluetooth.client.map;
26 import android.bluetooth.client.map.BluetoothMasClient.CharsetType;
27 import android.bluetooth.client.map.utils.ObexAppParameters;
H A DBluetoothMasRequestGetMessagesListing.java17 package android.bluetooth.client.map;
19 import android.bluetooth.client.map.BluetoothMasClient.MessagesFilter;
20 import android.bluetooth.client.map.utils.ObexAppParameters;
21 import android.bluetooth.client.map.utils.ObexTime;
H A DBluetoothMnsObexServer.java17 package android.bluetooth.client.map;
22 import android.bluetooth.client.map.utils.ObexAppParameters;
H A DBluetoothMnsService.java17 package android.bluetooth.client.map;
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DCursorFilter.java39 CursorFilter(CursorFilterClient client) { argument
40 mClient = client;
/frameworks/av/include/media/stagefright/
H A DThrottledSource.h61 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client) { argument
62 mSource->getDrmInfo(handle, client);
/frameworks/av/media/libstagefright/
H A DFileSource.cpp197 void FileSource::getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client) { argument
200 *client = mDrmManagerClient;
H A DStagefrightMediaScanner.cpp59 MediaScannerClient &client) {
62 client.setLocale(locale());
63 client.beginFile();
64 MediaScanResult result = processFileInternal(path, mimeType, client);
65 client.endFile();
71 MediaScannerClient &client) {
101 status = client.setMimeType(value);
134 status = client.addStringTag(kKeyMap[i].tag, value);
57 processFile( const char *path, const char *mimeType, MediaScannerClient &client) argument
69 processFileInternal( const char *path, const char * , MediaScannerClient &client) argument
/frameworks/av/media/libstagefright/foundation/include/
H A DThrottledSource.h61 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client) { argument
62 mSource->getDrmInfo(handle, client);
/frameworks/av/media/libstagefright/include/
H A DThrottledSource.h61 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client) { argument
62 mSource->getDrmInfo(handle, client);
/frameworks/av/radio/
H A DIRadioService.cpp80 const sp<IRadioClient>& client,
88 data.writeStrongBinder(IInterface::asBinder(client));
155 sp<IRadioClient> client = local
166 status_t status = attach(handle, client, configPtr, withAudio, radio);
79 attach(radio_handle_t handle, const sp<IRadioClient>& client, const struct radio_band_config *config, bool withAudio, sp<IRadio>& radio) argument
/frameworks/av/soundtrigger/
H A DISoundTriggerHwService.cpp81 const sp<ISoundTriggerClient>& client,
87 data.writeStrongBinder(IInterface::asBinder(client));
156 sp<ISoundTriggerClient> client = local
159 status_t status = attach(handle, client, module);
80 attach(const sound_trigger_module_handle_t handle, const sp<ISoundTriggerClient>& client, sp<ISoundTrigger>& module) argument
/frameworks/base/core/java/android/hardware/display/
H A DWifiDisplaySessionInfo.java43 boolean client = (in.readInt() != 0);
49 return new WifiDisplaySessionInfo(client, session, group, pp, ip);
63 boolean client, int session, String group, String pp, String ip) {
64 mClient = client;
62 WifiDisplaySessionInfo( boolean client, int session, String group, String pp, String ip) argument
/frameworks/base/core/tests/coretests/src/android/os/
H A DFileBridgeTest.java38 private FileBridgeOutputStream client; field in class:FileBridgeTest
52 client = new FileBridgeOutputStream(bridge.getClientSocket());
66 client.close();
84 client.flush();
90 client.write("meow".getBytes(StandardCharsets.UTF_8));
97 client.write("cake".getBytes(StandardCharsets.UTF_8));
98 client.flush();
105 client.write("meow".getBytes(StandardCharsets.UTF_8));
106 client.flush();
107 client
[all...]
/frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/hprof/
H A DHprof.java48 public static File doHprof(Client client, int timeout) { argument
49 GetHprof gh = new GetHprof(client, timeout);
119 private Client client; field in class:Hprof.GetHprof
121 public GetHprof(Client client, long timeout) { argument
122 this.client = client;
129 client.dumpHprof();
152 if (client == arg0) {
168 if (client == arg1) {
187 if (client
213 getClassData(Client client) argument
[all...]
/frameworks/native/libs/vr/libdvr/
H A Ddvr_surface.cpp160 auto client = DisplayClient::Create(); local
161 if (!client) {
162 ALOGE("dvrGetNamedBuffer: Failed to create display client!");
172 auto status = client->GetNamedBuffer(name);
/frameworks/native/services/vr/hardware_composer/impl/
H A Dvr_composer_client.cpp41 VrComposerClient::VrCommandReader::VrCommandReader(VrComposerClient& client) argument
42 : CommandReader(client), mVrClient(client), mVrHal(client.mVrHal) {}
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DBmsgTokenizer.java17 package android.bluetooth.client.map.utils;
H A DObexAppParameters.java17 package android.bluetooth.client.map.utils;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
H A DWifiAwareRttStateManager.java88 WifiAwareClientState client = mPendingOperations.get(rangingId);
90 return client;
94 * Start a ranging operation for the client + peer MAC.
96 public void startRanging(int rangingId, WifiAwareClientState client, argument
105 client.onRangingFailure(rangingId, RttManager.REASON_NOT_AVAILABLE,
110 mPendingOperations.put(rangingId, client);
144 WifiAwareClientState client = getAndRemovePendingOperationClient(msg.arg2);
145 if (client == null) {
147 + ") -- cannot find registered pending operation client for ID "
167 client
[all...]
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DPlaybackGlueHostImplWithViewHolder.java95 public void setPlaybackSeekUiClient(Client client) { argument
96 mSeekClient = client;

Completed in 320 milliseconds

1234567