/frameworks/base/config/ |
D | hiddenapi-greylist.txt | 1 Landroid/accessibilityservice/IAccessibilityServiceConnection$Stub;->asInterface(Landroid/os/IBinde… 2 Landroid/accounts/IAccountAuthenticator$Stub$Proxy;-><init>(Landroid/os/IBinder;)V 3 Landroid/accounts/IAccountAuthenticator$Stub$Proxy;->mRemote:Landroid/os/IBinder; 4 Landroid/accounts/IAccountAuthenticator$Stub;-><init>()V 5 Landroid/accounts/IAccountAuthenticator$Stub;->asInterface(Landroid/os/IBinder;)Landroid/accounts/I… 6 Landroid/accounts/IAccountAuthenticatorResponse$Stub$Proxy;-><init>(Landroid/os/IBinder;)V 7 Landroid/accounts/IAccountAuthenticatorResponse$Stub$Proxy;->mRemote:Landroid/os/IBinder; 8 Landroid/accounts/IAccountAuthenticatorResponse$Stub;-><init>()V 9 Landroid/accounts/IAccountAuthenticatorResponse$Stub;->asInterface(Landroid/os/IBinder;)Landroid/ac… 10 Landroid/accounts/IAccountManager$Stub$Proxy;-><init>(Landroid/os/IBinder;)V [all …]
|
D | hiddenapi-greylist-max-p.txt | 1 Landroid/app/IInstrumentationWatcher$Stub;->asInterface(Landroid/os/IBinder;)Landroid/app/IInstrume… 2 Landroid/app/ISearchManager$Stub;-><init>()V 3 Landroid/app/IUiModeManager$Stub;->asInterface(Landroid/os/IBinder;)Landroid/app/IUiModeManager; 4 Landroid/bluetooth/IBluetooth$Stub;-><init>()V 5 Landroid/bluetooth/IBluetoothA2dp$Stub;-><init>()V 6 Landroid/content/IIntentReceiver$Stub;->asInterface(Landroid/os/IBinder;)Landroid/content/IIntentRe… 7 Landroid/content/IIntentSender$Stub;->asInterface(Landroid/os/IBinder;)Landroid/content/IIntentSend… 8 Landroid/os/storage/IObbActionListener$Stub;->asInterface(Landroid/os/IBinder;)Landroid/os/storage/… 9 Landroid/service/carrier/ICarrierMessagingCallback$Stub;-><init>()V 10 Landroid/view/IGraphicsStats$Stub$Proxy;-><init>(Landroid/os/IBinder;)V [all …]
|
D | preloaded-classes | 27 android.accessibilityservice.IAccessibilityServiceClient$Stub$Proxy 28 android.accessibilityservice.IAccessibilityServiceClient$Stub 65 android.accounts.IAccountAuthenticator$Stub$Proxy 66 android.accounts.IAccountAuthenticator$Stub 68 android.accounts.IAccountAuthenticatorResponse$Stub$Proxy 69 android.accounts.IAccountAuthenticatorResponse$Stub 71 android.accounts.IAccountManager$Stub$Proxy 72 android.accounts.IAccountManager$Stub 74 android.accounts.IAccountManagerResponse$Stub$Proxy 75 android.accounts.IAccountManagerResponse$Stub [all …]
|
/frameworks/compile/mclinker/lib/Fragment/ |
D | Stub.cpp | 20 Stub::Stub() : Fragment(Fragment::Stub), m_pSymInfo(NULL) { in Stub() function in mcld::Stub 23 Stub::~Stub() { in ~Stub() 28 void Stub::setSymInfo(ResolveInfo* pSymInfo) { in setSymInfo() 32 void Stub::applyFixup(Relocation& pSrcReloc, in applyFixup() 67 void Stub::applyFixup(FragmentRef& pSrcFragRef, in applyFixup() 75 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType) { in addFixup() 80 void Stub::addFixup(const Fixup& pFixup) { in addFixup()
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | BranchIsland.h | 28 class Stub; variable 91 Stub* findStub(const Stub* pPrototype, const Relocation& pReloc); 94 bool addStub(const Stub* pPrototype, const Relocation& pReloc, Stub& pStub); 96 void addStub(Stub& pStub); 108 Key(const Stub* pPrototype, const LDSymbol* pSymbol, Stub::SWord pAddend) in Key() 113 const Stub* prototype() const { return m_pPrototype; } in prototype() 117 Stub::SWord addend() const { return m_Addend; } in addend() 152 const Stub* m_pPrototype; 154 Stub::SWord m_Addend; 157 typedef HashEntry<Key, Stub*, Key::Compare> StubEntryType;
|
D | StubFactory.h | 22 class Stub; variable 33 void addPrototype(Stub* pPrototype); 36 Stub* create(Relocation& pReloc, 41 Stub* create(FragmentRef& pFragRef, 48 Stub* findPrototype(const Relocation& pReloc, 52 Stub* findPrototype(const FragmentRef& pFragRef) const; 55 typedef std::vector<Stub*> StubPoolType;
|
/frameworks/compile/mclinker/lib/LD/ |
D | StubFactory.cpp | 35 void StubFactory::addPrototype(Stub* pPrototype) { in addPrototype() 40 Stub* StubFactory::create(Relocation& pReloc, in create() 45 Stub* stub = NULL; in create() 46 Stub* prototype = findPrototype(pReloc, pReloc.place(), pTargetSymValue); in create() 80 Stub* StubFactory::create(FragmentRef& pFragRef, in create() 83 Stub* prototype = findPrototype(pFragRef); in create() 94 Stub* stub = prototype->clone(); in create() 109 Stub* StubFactory::findPrototype(const Relocation& pReloc, in findPrototype() 120 Stub* StubFactory::findPrototype(const FragmentRef& pFragRef) const { in findPrototype()
|
D | BranchIsland.cpp | 86 Stub* BranchIsland::findStub(const Stub* pPrototype, const Relocation& pReloc) { in findStub() 97 bool BranchIsland::addStub(const Stub* pPrototype, in addStub() 99 Stub& pStub) { in addStub() 126 void BranchIsland::addStub(Stub& pStub) { in addStub()
|
/frameworks/compile/mclinker/include/mcld/Fragment/ |
D | Stub.h | 28 class Stub : public Fragment { 59 Stub(); 61 virtual ~Stub(); 64 Stub* clone() { return doClone(); } in clone() 122 return F->getKind() == Fragment::Stub; in classof() 125 static bool classof(const Stub*) { return true; } in classof() argument 139 virtual Stub* doClone() = 0;
|
/frameworks/base/core/java/com/android/internal/inputmethod/ |
D | ResultCallbacks.java | 60 public static IIntResultCallback.Stub of(@NonNull CancellationGroup.Completable.Int value) { in of() 64 return new IIntResultCallback.Stub() { in of() 87 public static ICharSequenceResultCallback.Stub of( 92 return new ICharSequenceResultCallback.Stub() { 115 public static IExtractedTextResultCallback.Stub of( 120 return new IExtractedTextResultCallback.Stub() {
|
/frameworks/base/telephony/java/android/telephony/euicc/ |
D | EuiccCardManager.java | 151 return IEuiccCardController.Stub.asInterface( in getIEuiccCardController() 169 new IGetAllProfilesCallback.Stub() { in requestAllProfiles() 198 new IGetProfileCallback.Stub() { in requestProfile() 228 refresh, new IDisableProfileCallback.Stub() { in disableProfile() 259 refresh, new ISwitchToProfileCallback.Stub() { in switchToProfile() 289 nickname, new ISetNicknameCallback.Stub() { in setNickname() 318 new IDeleteProfileCallback.Stub() { in deleteProfile() 348 new IResetMemoryCallback.Stub() { in resetMemory() 376 new IGetDefaultSmdpAddressCallback.Stub() { in requestDefaultSmdpAddress() 404 new IGetSmdsAddressCallback.Stub() { in requestSmdsAddress() [all …]
|
/frameworks/base/core/java/android/app/ |
D | SystemServiceRegistry.java | 265 IAccountManager service = IAccountManager.Stub.asInterface(b); in registerService() 297 IAlarmManager service = IAlarmManager.Stub.asInterface(b); in registerService() 327 return new HdmiControlManager(IHdmiControlService.Stub.asInterface(b)); in registerService() 355 IConnectivityManager service = IConnectivityManager.Stub.asInterface(b); in registerService() 380 IIpSecService service = IIpSecService.Stub.asInterface(b); in registerService() 389 IConnectivityManager service = IConnectivityManager.Stub.asInterface(b); in registerService() 401 IConnectivityManager service = IConnectivityManager.Stub.asInterface(b); in registerService() 415 IConnectivityManager.Stub.asInterface(csBinder); in registerService() 423 ITestNetworkManager tnMgr = ITestNetworkManager.Stub.asInterface(tnBinder); in registerService() 433 return new CountryDetector(ICountryDetector.Stub.asInterface(b)); in registerService() [all …]
|
/frameworks/base/wifi/java/android/net/wifi/ |
D | WifiFrameworkInitializer.java | 76 IWifiManager service = IWifiManager.Stub.asInterface(serviceBinder); in registerServiceWrappers() 84 IWifiP2pManager service = IWifiP2pManager.Stub.asInterface(serviceBinder); in registerServiceWrappers() 92 IWifiAwareManager service = IWifiAwareManager.Stub.asInterface(serviceBinder); in registerServiceWrappers() 100 IWifiScanner service = IWifiScanner.Stub.asInterface(serviceBinder); in registerServiceWrappers() 108 IWifiRttManager service = IWifiRttManager.Stub.asInterface(serviceBinder); in registerServiceWrappers()
|
/frameworks/base/core/java/android/net/ |
D | CaptivePortal.java | 128 ICaptivePortal.Stub.asInterface(mBinder).appResponse(APP_RETURN_DISMISSED); in reportCaptivePortalDismissed() 142 ICaptivePortal.Stub.asInterface(mBinder).appResponse(APP_RETURN_UNWANTED); in ignoreNetwork() 160 ICaptivePortal.Stub.asInterface(mBinder).appResponse(APP_RETURN_WANTED_AS_IS); in useNetwork() 174 ICaptivePortal.Stub.asInterface(mBinder).appRequest(APP_REQUEST_REEVALUATION_REQUIRED); in reevaluateNetwork() 189 ICaptivePortal.Stub.asInterface(mBinder).logEvent(eventId, packageName); in logEvent()
|
/frameworks/base/core/tests/coretests/src/android/service/controls/ |
D | ControlProviderServiceTest.java | 73 private IControlsActionCallback.Stub mActionCallback; 75 private IControlsSubscriber.Stub mSubscriber; 111 mControlsProvider = IControlsProvider.Stub.asInterface( in setUp() 121 ArgumentCaptor<IControlsSubscription.Stub> subscriptionCaptor = in testOnLoad_allStateless() 122 ArgumentCaptor.forClass(IControlsSubscription.Stub.class); in testOnLoad_allStateless() 153 ArgumentCaptor<IControlsSubscription.Stub> subscriptionCaptor = in testOnLoad_statefulConvertedToStateless() 154 ArgumentCaptor.forClass(IControlsSubscription.Stub.class); in testOnLoad_statefulConvertedToStateless() 183 ArgumentCaptor<IControlsSubscription.Stub> subscriptionCaptor = in testOnLoadSuggested_allStateless() 184 ArgumentCaptor.forClass(IControlsSubscription.Stub.class); in testOnLoadSuggested_allStateless() 216 ArgumentCaptor<IControlsSubscription.Stub> subscriptionCaptor = in testSubscribe() [all …]
|
/frameworks/base/services/core/java/com/android/server/biometrics/ |
D | AuthService.java | 69 final IAuthService.Stub mImpl; 83 return IBiometricService.Stub.asInterface( in getBiometricService() 91 public void publishBinderService(AuthService service, IAuthService.Stub impl) { in publishBinderService() 110 return IFingerprintService.Stub.asInterface( in getFingerprintService() 119 return IFaceService.Stub.asInterface( in getFaceService() 128 return IIrisService.Stub.asInterface( in getIrisService() 133 private final class AuthServiceImpl extends IAuthService.Stub { 335 final IBiometricAuthenticator.Stub authenticator; in registerAuthenticator()
|
/frameworks/base/wifi/tests/src/android/net/wifi/ |
D | WifiManagerTest.java | 890 any(ISoftApCallback.Stub.class), anyInt()); in registerSoftApCallbackCallGoesToWifiServiceImpl() 901 any(ISoftApCallback.Stub.class), callbackIdentifier.capture()); in unregisterSoftApCallbackCallGoesToWifiServiceImpl() 912 ArgumentCaptor<ISoftApCallback.Stub> callbackCaptor = in softApCallbackProxyCallsOnStateChanged() 913 ArgumentCaptor.forClass(ISoftApCallback.Stub.class); in softApCallbackProxyCallsOnStateChanged() 928 ArgumentCaptor<ISoftApCallback.Stub> callbackCaptor = in softApCallbackProxyCallsOnConnectedClientsChanged() 929 ArgumentCaptor.forClass(ISoftApCallback.Stub.class); in softApCallbackProxyCallsOnConnectedClientsChanged() 949 ArgumentCaptor<ISoftApCallback.Stub> callbackCaptor = in softApCallbackProxyCallsOnSoftApInfoChanged() 950 ArgumentCaptor.forClass(ISoftApCallback.Stub.class); in softApCallbackProxyCallsOnSoftApInfoChanged() 968 ArgumentCaptor<ISoftApCallback.Stub> callbackCaptor = in softApCallbackProxyCallsOnCapabilityChanged() 969 ArgumentCaptor.forClass(ISoftApCallback.Stub.class); in softApCallbackProxyCallsOnCapabilityChanged() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/controller/ |
D | ControlsProviderLifecycleManager.kt | 60 private val actionCallbackService: IControlsActionCallback.Stub, 121 wrapper = ServiceWrapper(IControlsProvider.Stub.asInterface(service)) in onServiceConnected() 180 fun maybeBindAndLoad(subscriber: IControlsSubscriber.Stub) { in maybeBindAndLoad() 199 fun maybeBindAndLoadSuggested(subscriber: IControlsSubscriber.Stub) { in maybeBindAndLoadSuggested() 303 inner class Load(val subscriber: IControlsSubscriber.Stub) : ServiceMethod() { in callWrapper() 312 inner class Suggest(val subscriber: IControlsSubscriber.Stub) : ServiceMethod() {
|
/frameworks/base/services/core/java/com/android/server/location/ |
D | LocationProviderProxy.java | 72 private final ILocationProviderManager.Stub mManager = new ILocationProviderManager.Stub() { 164 ILocationProvider provider = ILocationProvider.Stub.asInterface(binder); in onBind() 194 ILocationProvider service = ILocationProvider.Stub.asInterface(binder); in onSetRequest() 202 ILocationProvider service = ILocationProvider.Stub.asInterface(binder); in onExtraCommand()
|
/frameworks/base/core/tests/coretests/src/android/os/ |
D | BinderWorkSourceNestedService.java | 33 private final IBinderWorkSourceNestedService.Stub mBinder = 34 new IBinderWorkSourceNestedService.Stub() { 56 blockingQueue.add(IBinderWorkSourceService.Stub.asInterface(service));
|
D | BinderWorkSourceService.java | 26 private final IBinderWorkSourceService.Stub mBinder = 27 new IBinderWorkSourceService.Stub() {
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonAbsoluteStub.cpp | 40 : Stub(), m_Name("HexagonTrampoline"), m_pData(NULL), m_Size(0x0) { in HexagonAbsoluteStub() 52 : Stub(), m_Name("AbsVeneer"), m_pData(pData), m_Size(pSize) { in HexagonAbsoluteStub() 108 Stub* HexagonAbsoluteStub::doClone() { in doClone()
|
/frameworks/base/services/tests/servicestests/test-apps/ConnTestApp/src/com/android/servicestests/apps/conntestapp/ |
D | CmdReceiverService.java | 25 private ICmdReceiverService.Stub mBinder = new ICmdReceiverService.Stub() {
|
/frameworks/base/location/lib/java/com/android/location/provider/ |
D | GeofenceProvider.java | 40 private IGeofenceProvider.Stub mProvider = new IGeofenceProvider.Stub() {
|
/frameworks/base/core/tests/coretests/BinderProxyCountingTestApp/src/com/android/frameworks/coretests/binderproxycountingtestapp/ |
D | BpcTestAppCmdService.java | 50 private IBpcTestAppCmdService.Stub mBinder = new IBpcTestAppCmdService.Stub() { 89 ITestRemoteCallback cb = new ITestRemoteCallback.Stub() {}; 144 mBpcService = IBinderProxyCountingService.Stub.asInterface(service);
|