Searched refs:client (Results 176 - 200 of 313) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/view/autofill/
H A DIAutoFillManager.aidl34 int addClient(in IAutoFillManagerClient client, int userId);
/frameworks/base/core/tests/coretests/src/android/provider/
H A DDocumentsProviderTest.java61 try (ContentProviderClient client =
63 final Path actual = DocumentsContract.findDocumentPath(client, docUri);
/frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/
H A DBandwidthEnforcementTestService.java142 final SntpClient client = new SntpClient();
143 if (client.requestTime("0.pool.ntp.org", 10000)) {
/frameworks/native/libs/gui/
H A DLayerState.cpp85 output.writeStrongBinder(IInterface::asBinder(client));
90 client = interface_cast<ISurfaceComposerClient>(input.readStrongBinder());
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapMessage.java17 package android.bluetooth.client.map;
18 import android.bluetooth.client.map.utils.ObexTime;
/frameworks/av/camera/include/camera/android/hardware/
H A DICamera.h55 // connect new client with existing camera remote
56 virtual status_t connect(const sp<ICameraClient>& client) = 0;
72 // set a buffer interface to use for client-received preview frames instead
/frameworks/av/include/camera/android/hardware/
H A DICamera.h55 // connect new client with existing camera remote
56 virtual status_t connect(const sp<ICameraClient>& client) = 0;
72 // set a buffer interface to use for client-received preview frames instead
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DStreamingProcessor.h42 explicit StreamingProcessor(sp<Camera2Client> client);
H A DStreamingProcessor.cpp43 StreamingProcessor::StreamingProcessor(sp<Camera2Client> client): argument
44 mClient(client),
45 mDevice(client->getCameraDevice()),
46 mId(client->getCameraId()),
110 sp<Camera2Client> client = mClient.promote(); local
111 if (client == 0) {
H A DJpegProcessor.cpp39 sp<Camera2Client> client,
42 mDevice(client->getCameraDevice()),
44 mId(client->getCameraId()),
38 JpegProcessor( sp<Camera2Client> client, wp<CaptureSequencer> sequencer) argument
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DBmsgTokenizer.java17 package android.bluetooth.client.map.utils;
H A DObexTime.java17 package android.bluetooth.client.map.utils;
/frameworks/base/core/java/android/printservice/
H A DPrintJob.java55 @NonNull IPrintServiceClient client) {
58 mPrintServiceClient = client;
59 mDocument = new PrintDocument(mCachedInfo.getId(), client,
54 PrintJob(@onNull Context context, @NonNull PrintJobInfo jobInfo, @NonNull IPrintServiceClient client) argument
/frameworks/native/libs/vr/libpdx_uds/
H A Dclient_channel_tests.cpp13 #include <pdx/client.h>
138 auto worker = [](std::shared_ptr<TestClient> client,
143 ASSERT_EQ(expected, client->Sum(data));
147 // Start client threads.
/frameworks/native/libs/vr/libpdx_default_transport/
H A Dpdx_benchmarks.cpp11 #include <pdx/client.h>
138 // Opcodes for client/service protocol.
184 const char kOptionClient[] = "client";
407 // Implements the client side of the benchmark.
573 // Start the requested number of client threads.
604 std::cerr << "Starting client thread " << thread_id_counter << " service "
616 SetThreadName("client" + std::to_string(thread_id) + "/" +
621 auto client =
623 if (!client) {
624 std::cerr << "Failed to create client fo
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.h54 Antagonizer(notify_callback_f cb, void* client);
224 void removeMediaRecorderClient(const wp<MediaRecorderClient>& client);
227 virtual sp<IMediaPlayer> create(const sp<IMediaPlayerClient>& client,
235 const sp<IRemoteDisplayClient>& client, const String8& iface);
238 void removeClient(const wp<Client>& client);
239 bool hasClient(wp<Client> client);
413 const sp<IMediaPlayerClient>& client,
H A DMediaPlayerService.cpp293 ALOGV("Create new media recorder client from pid %d", pid);
297 void MediaPlayerService::removeMediaRecorderClient(const wp<MediaRecorderClient>& client) argument
300 mMediaRecorderClients.remove(client);
301 ALOGV("Delete media recorder client");
312 sp<IMediaPlayer> MediaPlayerService::create(const sp<IMediaPlayerClient>& client, argument
319 this, pid, connId, client, audioSessionId,
322 ALOGV("Create new client(%d) from pid %d, uid %d, ", connId, pid,
354 const sp<IRemoteDisplayClient>& client, const String8& iface) {
359 return new RemoteDisplay(opPackageName, client, iface.string());
415 SortedVector< sp<Client> > clients; //to serialise the mutex unlock & client destructio
352 listenForRemoteDisplay( const String16 &opPackageName, const sp<IRemoteDisplayClient>& client, const String8& iface) argument
542 removeClient(const wp<Client>& client) argument
548 hasClient(wp<Client> client) argument
554 Client( const sp<MediaPlayerService>& service, pid_t pid, int32_t connId, const sp<IMediaPlayerClient>& client, audio_session_t audioSessionId, uid_t uid) argument
1393 Client* client = static_cast<Client*>(cookie); local
1502 Antagonizer(notify_callback_f cb, void* client) argument
[all...]
/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DAutofillManagerServiceImpl.java256 boolean addClientLocked(IAutoFillManagerClient client) { argument
260 mClients.register(client);
650 final IAutoFillManagerClient client = clients.getBroadcastItem(i);
654 resetSession = resetClient || isClientSessionDestroyedLocked(client);
656 client.setState(isEnabled(), resetSession, resetClient);
666 private boolean isClientSessionDestroyedLocked(IAutoFillManagerClient client) { argument
670 if (session.getClient().equals(client)) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DRttService.java76 Slog.e(TAG, "Send failed, client connection lost");
80 if (DBG) Slog.d(TAG, "closing client " + msg.replyTo);
89 ClientInfo client = new ClientInfo(ac, msg.sendingUid);
91 mClients.put(msg.replyTo, client);
103 Slog.e(TAG, "Could not find client info for message " + msg.replyTo);
271 // When client is lost, clean up responder requests and send disable responder
364 ClientInfo client;
366 client = mClients.get(msg.replyTo);
368 if (client == null) {
369 Log.e(TAG, "client no
[all...]
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h218 // Return the package name for this client
221 // Notify client about a fatal error
225 // Get the UID of the application client using this
228 // Get the PID of the application client using this
231 // Check what API level is used for this client. This is used to determine which
274 explicit OpsCallback(wp<BasicClient> client);
298 virtual status_t connect(const sp<hardware::ICameraClient>& client) = 0;
332 // return our camera client
344 // Check what API level is used for this client. This is used to determine which
436 * This container does NOT represent an active camera client
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DSession.java66 * This class represents an active client session. There is generally one
93 IInputMethodClient client, IInputContext inputContext) {
96 mClient = client;
132 mService.mInputMethodManager.addClient(client, inputContext,
135 client.setUsingInputMethod(false);
137 client.asBinder().linkToDeath(this, 0);
142 mService.mInputMethodManager.removeClient(client);
92 Session(WindowManagerService service, IWindowSessionCallback callback, IInputMethodClient client, IInputContext inputContext) argument
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.h367 uint32_t setClientStateLocked(const sp<Client>& client, const layer_state_t& s);
373 status_t createLayer(const String8& name, const sp<Client>& client,
378 status_t createNormalLayer(const sp<Client>& client, const String8& name,
383 status_t createDimLayer(const sp<Client>& client, const String8& name,
391 status_t onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle);
402 status_t addClientLayer(const sp<Client>& client,
/frameworks/av/cmds/stagefright/
H A Dstream.cpp352 sp<MyClient> client = new MyClient; local
379 service->create(client, AUDIO_SESSION_ALLOCATE);
385 client->waitForEOS();
/frameworks/av/include/media/stagefright/
H A DNuCachedSource2.h46 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client);
/frameworks/av/media/libstagefright/foundation/include/
H A DNuCachedSource2.h46 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client);

Completed in 448 milliseconds

1234567891011>>