/frameworks/native/libs/binder/ |
D | LazyServiceRegistrar.cpp | 48 Status onClients(const sp<IBinder>& service, bool clients) override; 58 bool clients = false; member 243 Status ClientCounterCallbackImpl::onClients(const sp<IBinder>& service, bool clients) { in onClients() argument 246 if (registered.clients == clients) { in onClients() 248 "notified has clients: %d", name.c_str(), registered.clients, clients); in onClients() 250 registered.clients = clients; in onClients() 257 if (registered.clients) numWithClients++; in onClients() 263 mNumConnectedServices, mRegisteredServices.size(), name.c_str(), clients); in onClients()
|
/frameworks/av/services/mediaresourcemanager/ |
D | ResourceManagerService.cpp | 606 Vector<std::shared_ptr<IResourceManagerClient>> *clients) { in getClientForResource_l() argument 612 clients->push_back(client); in getClientForResource_l() 623 Vector<std::shared_ptr<IResourceManagerClient>> clients; in reclaimResource() local 659 secureCodec->subType, &clients)) { in reclaimResource() 665 secureCodec->subType, &clients)) { in reclaimResource() 673 nonSecureCodec->subType, &clients)) { in reclaimResource() 679 getClientForResource_l(callingPid, drmSession, &clients); in reclaimResource() 680 if (clients.size() == 0) { in reclaimResource() 685 if (clients.size() == 0) { in reclaimResource() 687 getClientForResource_l(callingPid, graphicMemory, &clients); in reclaimResource() [all …]
|
D | ResourceManagerService.h | 121 bool reclaimUnconditionallyFrom(const Vector<std::shared_ptr<IResourceManagerClient>> &clients); 127 Vector<std::shared_ptr<IResourceManagerClient>> *clients); 155 Vector<std::shared_ptr<IResourceManagerClient>> *clients);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | IntRangeManager.java | 463 ArrayList<ClientRange> clients = range.mClients; in disableRange() local 466 int crLength = clients.size(); in disableRange() 468 ClientRange cr = clients.get(0); in disableRange() 496 ClientRange cr = clients.get(crIndex); in disableRange() 503 clients.remove(crIndex); in disableRange() 507 clients.remove(crIndex); in disableRange() 512 clients.add(crIndex, cr); in disableRange() 530 int nextStartId = clients.get(1).mStartId; in disableRange() 536 largestEndId = clients.get(1).mEndId; in disableRange() 547 ClientRange nextCr = clients.get(nextIndex); in disableRange()
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
D | AudioInputDescriptor.cpp | 397 RecordClientVector clients; in getClientsForSession() local 400 clients.push_back(client); in getClientsForSession() 403 return clients; in getClientsForSession() 409 RecordClientVector clients; in clientsList() local 414 clients.push_back(client); in clientsList() 417 return clients; in clientsList() 435 RecordClientVector clients = getClientsForSession((audio_session_t)effect->mSession); in trackEffectEnabled() local 438 for (const auto& client : clients) { in trackEffectEnabled() 468 RecordClientVector clients = clientsList(false /*activeOnly*/); in setAppState() local 471 for (const auto& client : clients) { in setAppState()
|
/frameworks/hardware/interfaces/stats/aidl/test_client/ |
D | README | 2 it would be called from other clients.
|
D | Android.bp | 17 // it would be called from other clients.
|
/frameworks/native/libs/binderdebug/ |
D | BinderDebug.cpp | 161 const std::string clients = match.str(2); in getBinderClientPids() local 162 for (const std::string& pidStr : base::Split(clients, " ")) { in getBinderClientPids()
|
/frameworks/base/media/lib/remotedisplay/ |
D | README.txt | 5 library which provides build-time APIs to the unbundled clients. 20 break clients of the library because they cannot see the internal platform classes.
|
/frameworks/hardware/interfaces/stats/1.0/test_client/ |
D | README | 2 it would be called from other clients.
|
/frameworks/base/media/lib/signer/ |
D | README.txt | 7 which provides build-time APIs to the unbundled clients. 22 break clients of the library because they cannot see the internal platform classes.
|
/frameworks/hardware/interfaces/sensorservice/1.0/ |
D | README | 94 - Single-threaded clients receive events in the correct order in the same 96 - Multi-threaded clients receive events in the correct order but in 97 different threads; it is the clients' responsibility to deal with
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/taptotransfer/ |
D | README.md | 12 **only** displays an informational chip; external clients are responsible for performing the media 16 External clients notify System UI about the transfer status by calling `@SystemApi`s in
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | HotspotControllerImpl.java | 298 public void onConnectedClientsChanged(List<WifiClient> clients) { in onConnectedClientsChanged() argument 299 mNumConnectedDevices = clients.size(); in onConnectedClientsChanged()
|
/frameworks/opt/setupwizard/library/ |
D | standalone-rules.gradle | 17 // For standalone project clients, since the source may not be available, we fetch the
|
D | rules.gradle | 63 // For standalone project clients, since the source may not be available, we
|
/frameworks/native/cmds/servicemanager/ |
D | ServiceManager.cpp | 728 int clients = handleServiceClientCallback(name, false); in tryUnregisterService() local 735 if (clients < 0 || clients > 2) { in tryUnregisterService() 737 LOG(INFO) << "Tried to unregister " << name << ", but there are clients: " << clients; in tryUnregisterService()
|
/frameworks/base/media/lib/tvremote/ |
D | README.txt | 11 break clients of the library because they cannot see the internal platform classes.
|
/frameworks/base/core/proto/android/view/inputmethod/ |
D | inputmethodeditortrace.proto | 34 * Represents a file full of trace entries for clients that use InputMethod. 55 /* One dump entry for clients that use InputMethod. */
|
/frameworks/base/location/lib/ |
D | README.txt | 11 (or by extending them via inheritance). This would break clients of the
|
/frameworks/av/services/mediaresourcemanager/test/ |
D | ResourceManagerService_test.cpp | 439 Vector<std::shared_ptr<IResourceManagerClient> > clients; in testGetAllClients() local 440 EXPECT_FALSE(mService->getAllClients_l(kLowPriorityPid, type, subType, &clients)); in testGetAllClients() 443 EXPECT_FALSE(mService->getAllClients_l(kMidPriorityPid, type, subType, &clients)); in testGetAllClients() 444 EXPECT_TRUE(mService->getAllClients_l(kHighPriorityPid, type, subType, &clients)); in testGetAllClients() 446 EXPECT_EQ(2u, clients.size()); in testGetAllClients() 448 EXPECT_EQ(mTestClient3, clients[0]); in testGetAllClients() 449 EXPECT_EQ(mTestClient1, clients[1]); in testGetAllClients()
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
D | CameraStreamer.java | 142 Set<FrameClient> clients = mContextClients.get(context); in clientsForContext() local 143 if (clients == null) { in clientsForContext() 144 clients = new HashSet<FrameClient>(); in clientsForContext() 145 mContextClients.put(context, clients); in clientsForContext() 147 return clients; in clientsForContext()
|
/frameworks/base/services/core/java/com/android/server/soundtrigger_middleware/ |
D | README.md | 8 - Isolating the soundtrigger HAL from potentially untrusted clients. 9 - Enforcing correct behavior of the clients. 79 The `SoundTriggerMiddlewarePermission` class would reject any calls from unauthorized clients,
|
/frameworks/base/packages/SystemUI/docs/ |
D | corestartable.md | 34 5) Include the new module in any clients that may need it. For AOSP, this is the
|
/frameworks/av/services/camera/libcameraservice/ |
D | CameraService.cpp | 2546 const auto clients = mActiveClientManager.getAll(); in notifyDisplayConfigurationChange() local 2547 for (auto& current : clients) { in notifyDisplayConfigurationChange() 4879 const auto clients = mActiveClientManager.getAll(); in blockClientsForUid() local 4880 for (auto& current : clients) { in blockClientsForUid() 4891 const auto clients = mActiveClientManager.getAll(); in blockAllClients() local 4892 for (auto& current : clients) { in blockAllClients() 5014 const auto clients = mActiveClientManager.getAll(); in handleSetRotateAndCrop() local 5015 for (auto& current : clients) { in handleSetRotateAndCrop() 5036 const auto clients = mActiveClientManager.getAll(); in handleSetCameraServiceWatchdog() local 5037 for (auto& current : clients) { in handleSetCameraServiceWatchdog() [all …]
|