Searched refs:client (Results 251 - 275 of 372) sorted by relevance

<<1112131415

/frameworks/base/core/java/android/printservice/
H A DPrintService.java435 public void setClient(IPrintServiceClient client) {
436 mHandler.obtainMessage(ServiceHandler.MSG_SET_CLIENT, client)
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DMediaInserterTest.java88 final ContentProviderClient client = new ContentProviderClient(
90 mMediaInserter = new MediaInserter(client, TEST_BUFFER_SIZE);
/frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/
H A DBandwidthEnforcementTestService.java145 final SntpClient client = new SntpClient();
149 if (client.requestTime("0.pool.ntp.org", 10000, network)) {
/frameworks/native/libs/vr/libdisplay/
H A Ddisplay_client.cpp184 if (auto client = Surface::Create(attributes, &error))
185 return {std::move(client)};
/frameworks/native/libs/vr/libpdx/
H A Dclient.cpp1 #include "pdx/client.h"
128 Transaction::Transaction(Client& client) : client_{client} {} argument
/frameworks/support/browser/src/main/java/androidx/browser/customtabs/
H A DCustomTabsClient.java144 ComponentName name, CustomTabsClient client) {
145 client.warmup(0);
182 * then later with a Custom Tab. The client can then send later service calls or intents to
184 * @param callback The callback through which the client will receive updates about the created
186 * @return The session object that was created as a result of the transaction. The client can
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityInteractionClient.java48 * Rationale: The content retrieval APIs are synchronous from a client's
49 * perspective but internally they are asynchronous. The client thread
56 * the blocked client thread and the main UI thread of the target view
62 * when making a call the client also passes its process and thread ids so
63 * the accessed view hierarchy can detect if the client making the request
67 * interaction client through which all interactions occur and the latter is
113 * @return The client for the current thread.
124 * look up the correct client knowing a thread id. See ViewRootImpl for details.
126 * @return The client for a given <code>threadId</code>.
130 AccessibilityInteractionClient client
[all...]
H A DAccessibilityNodeInfo.java873 AccessibilityInteractionClient client = AccessibilityInteractionClient.getInstance();
874 AccessibilityNodeInfo refreshedInfo = client.findAccessibilityNodeInfoByAccessibilityId(
955 * <strong>Note:</strong> It is a client responsibility to recycle the
975 AccessibilityInteractionClient client = AccessibilityInteractionClient.getInstance();
976 return client.findAccessibilityNodeInfoByAccessibilityId(mConnectionId, mWindowId,
1486 AccessibilityInteractionClient client = AccessibilityInteractionClient.getInstance();
1487 return client.performAccessibilityAction(mConnectionId, mWindowId, mSourceNodeId,
1509 AccessibilityInteractionClient client = AccessibilityInteractionClient.getInstance();
1510 return client.performAccessibilityAction(mConnectionId, mWindowId, mSourceNodeId,
1520 * <strong>Note:</strong> It is a client responsibilit
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java466 * Windows that are being resized. Used so we can tell the client about
1126 public int addWindow(Session session, IWindow client, int seq, argument
1161 if (mWindowMap.containsKey(client.asBinder())) {
1162 Slog.w(TAG_WM, "Window " + client + " is already added");
1243 final IBinder binder = attrs.token != null ? attrs.token : client.asBinder();
1313 token = new WindowToken(this, client.asBinder(), type, false, displayContent,
1317 final WindowState win = new WindowState(this, session, client, token, parentWindow,
1323 Slog.w(TAG_WM, "Adding window client " + client.asBinder()
1394 mWindowMap.put(client
1640 removeWindow(Session session, IWindow client) argument
1762 setTransparentRegionWindow(Session session, IWindow client, Region region) argument
1779 setInsetsWindow(Session session, IWindow client, int touchableInsets, Rect contentInsets, Rect visibleInsets, Region touchableRegion) argument
1816 getWindowDisplayFrame(Session session, IWindow client, Rect outDisplayFrame) argument
1856 relayoutWindow(Session session, IWindow client, int seq, LayoutParams attrs, int requestedWidth, int requestedHeight, int viewVisibility, int flags, long frameNumber, Rect outFrame, Rect outOverscanInsets, Rect outContentInsets, Rect outVisibleInsets, Rect outStableInsets, Rect outOutsets, Rect outBackdropFrame, DisplayCutout.ParcelableWrapper outCutout, MergedConfiguration mergedConfiguration, Surface outSurface) argument
2265 outOfMemoryWindow(Session session, IWindow client) argument
2281 finishDrawingWindow(Session session, IWindow client) argument
4137 viewServerListWindows(Socket client) argument
4192 viewServerGetFocusedWindow(Socket client) argument
4250 viewServerWindowCommand(Socket client, String command, String parameters) argument
5097 openSession(IWindowSessionCallback callback, IInputMethodClient client, IInputContext inputContext) argument
5106 inputMethodClientHasFocus(IInputMethodClient client) argument
5505 windowForClientLocked(Session session, IWindow client, boolean throwOnError) argument
5509 windowForClientLocked(Session session, IBinder client, boolean throwOnError) argument
7013 updatePointerIcon(IWindow client) argument
7077 updateTapExcludeRegion(IWindow client, int regionId, int left, int top, int width, int height) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DWifiScanningServiceImpl.java148 ExternalClientInfo client = (ExternalClientInfo) mClients.get(msg.replyTo);
149 if (client != null) {
150 logw("duplicate client connection: " + msg.sendingUid + ", messenger="
152 client.mChannel.replyToMessage(msg, AsyncChannel.CMD_CHANNEL_FULLY_CONNECTED,
160 client = new ExternalClientInfo(msg.sendingUid, msg.replyTo, ac);
161 client.register();
165 localLog("client connected: " + client);
169 ExternalClientInfo client = (ExternalClientInfo) mClients.get(msg.replyTo);
170 if (client !
[all...]
/frameworks/base/core/java/android/content/
H A DContentProviderClient.java504 * Closes this client connection, indicating to the system that the
552 * client. If the {@link ContentProvider} is running in a different process then
564 public static void releaseQuietly(ContentProviderClient client) { argument
565 if (client != null) {
567 client.release();
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DSupplicantP2pIfaceCallback.java334 WifiP2pDevice client = new WifiP2pDevice();
337 client.deviceAddress = NativeUtil.macAddressFromByteArray(srcAddress);
343 group.addClient(client);
/frameworks/av/services/audioflinger/
H A DTrackBase.h63 const sp<Client>& client,
/frameworks/base/services/core/java/com/android/server/am/
H A DIntentBindRecord.java70 pw.print(' '); pw.print(a.client); pw.println('}');
/frameworks/base/services/core/java/com/android/server/location/
H A DContextHubService.java96 // The default client for old API clients
168 IContextHubClient client = mClientManager.registerClient(
170 defaultClientMap.put(contextHubId, client);
188 * Creates a default client callback for old API clients.
190 * @param contextHubId the ID of the hub to attach this client to
429 * cache or as a result of an explicit query requested by a client through the sendMessage API.
483 IContextHubClient client = mDefaultClientMap.get(contextHubHandle);
484 success = (client.sendMessageToNanoApp(message) ==
600 * Creates and registers a client at the service for the specified Context Hub.
602 * @param clientCallback the client interfac
[all...]
/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/
H A DRemoteLayoutlibCallbackAdapter.java17 package com.android.layoutlib.bridge.remote.client.adapters;
H A DRemoteRenderParamsAdapter.java17 package com.android.layoutlib.bridge.remote.client.adapters;
/frameworks/layoutlib/remote/tests/src/
H A DRemoteBridgeTest.java26 import com.android.layoutlib.bridge.remote.client.RemoteBridgeClient;
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dpayload.h6 #include <pdx/client.h>
112 // Implements the payload interface for client-side RPCs. Handles gathering file
/frameworks/support/media/version-compat-tests/current/client/src/androidTest/java/android/support/mediacompat/client/
H A DAudioAttributesCompatTest.java16 package android.support.mediacompat.client;
/frameworks/support/media/version-compat-tests/previous/client/src/androidTest/java/android/support/mediacompat/client/
H A DAudioAttributesCompatTest.java16 package android.support.mediacompat.client;
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java236 public void setWebViewClient(WebViewClient client); argument
242 public void setWebChromeClient(WebChromeClient client); argument
/frameworks/native/libs/gui/
H A DLayerState.cpp93 output.writeStrongBinder(IInterface::asBinder(client));
98 client = interface_cast<ISurfaceComposerClient>(input.readStrongBinder());
/frameworks/support/media/version-compat-tests/current/client/src/androidTest/java/androidx/media/test/client/
H A DMediaSession2TestBase.java17 package androidx.media.test.client;
42 import androidx.media.test.client.TestUtils.SyncHandler;
/frameworks/base/drm/jni/
H A Dandroid_drm_DrmManagerClient.cpp182 JNIEnv* env, jobject thiz, const sp<DrmManagerClientImpl>& client) {
189 if (client.get()) {
190 client->incStrong(thiz);
195 env->SetLongField(thiz, fieldId, reinterpret_cast<jlong>(client.get()));
205 DrmManagerClientImpl* const client = reinterpret_cast<DrmManagerClientImpl*>(clientHandle); local
206 return sp<DrmManagerClientImpl>(client);
181 setDrmManagerClientImpl( JNIEnv* env, jobject thiz, const sp<DrmManagerClientImpl>& client) argument

Completed in 679 milliseconds

<<1112131415