Searched defs:stub (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/base/tests/Internal/src/stub/
H A DDummyWallpaperService.java17 package stub; package
/frameworks/base/telephony/java/android/telephony/ims/stub/
H A DImsStreamMediaSessionImplBase.java17 package android.telephony.ims.stub;
24 * Base implementation of ImsStreamMediaSession, which implements stub versions of the methods
H A DImsEcbmImplBase.java17 package android.telephony.ims.stub;
27 * Base implementation of ImsEcbm, which implements stub versions of the methods
H A DImsMultiEndpointImplBase.java17 package android.telephony.ims.stub;
30 * Base implementation of ImsMultiEndpoint, which implements stub versions of the methods
H A DImsFeatureConfiguration.java17 package android.telephony.ims.stub;
H A DImsConfigImplBase.java17 package android.telephony.ims.stub;
H A DImsRegistrationImplBase.java17 package android.telephony.ims.stub;
H A DImsSmsImplBase.java17 package android.telephony.ims.stub;
H A DImsUtImplBase.java17 package android.telephony.ims.stub;
H A DImsCallSessionImplBase.java17 package android.telephony.ims.stub;
34 * Base implementation of IImsCallSession, which implements stub versions of the methods available.
/frameworks/compile/mclinker/lib/LD/
H A DStubFactory.cpp34 /// addPrototype - register a stub prototype
39 /// create - create a stub if needed, otherwise return NULL
44 // find if there is a prototype stub for the input relocation
45 Stub* stub = NULL; local
57 // find if there is such a stub in the backward island first.
59 stub = islands.second->findStub(prototype, pReloc);
62 if (stub == NULL) {
63 // find if there is such a stub in the forward island.
64 stub = islands.first->findStub(prototype, pReloc);
65 if (stub
94 Stub* stub = prototype->clone(); local
[all...]
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/
H A DImsUtListenerImplBase.java17 package android.telephony.ims.compat.stub;
30 * Base implementation of ImsUtListener, which implements stub versions of the methods
H A DImsConfigImplBase.java17 package android.telephony.ims.compat.stub;
H A DImsCallSessionImplBase.java17 package android.telephony.ims.compat.stub;
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DCarrierServicesSmsFilterTest.java161 private void mockCarrierAppStubResults(final int result, ICarrierMessagingService.Stub stub) argument
163 when(stub.queryLocalInterface(anyString())).thenReturn(stub);
164 when(stub.asBinder()).thenReturn(stub);
173 }).when(stub).filterSms(
/frameworks/base/core/java/android/service/quicksettings/
H A DTile.java87 public void setService(IQSService service, IBinder stub) { argument
89 mToken = stub;
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DViewStubCompat.java263 * @param stub The ViewStub that initiated the inflation.
266 void onInflate(ViewStubCompat stub, View inflated); argument
/frameworks/base/core/java/android/view/
H A DViewStub.java45 * <ViewStub android:id="@+id/stub"
52 * The ViewStub thus defined can be found using the id "stub." After inflation of
61 * ViewStub stub = findViewById(R.id.stub);
62 * View inflated = stub.inflate();
343 * @param stub The ViewStub that initiated the inflation.
346 void onInflate(ViewStub stub, View inflated); argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationsQuickSettingsContainer.java146 public void onInflate(ViewStub stub, View inflated) { argument
147 if (stub == mUserSwitcher) {
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionManagerServiceImpl.java121 VoiceInteractionManagerService.VoiceInteractionManagerServiceStub stub,
125 mServiceStub = stub;
120 VoiceInteractionManagerServiceImpl(Context context, Handler handler, VoiceInteractionManagerService.VoiceInteractionManagerServiceStub stub, int userHandle, ComponentName service) argument
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64LDBackend.cpp316 // stub and simplify the logics.
328 Stub* stub = getStubFactory()->create(*frag_ref, local
331 if (stub != NULL) {
332 // A stub symbol should be local
333 assert(stub->symInfo() != NULL && stub->symInfo()->isLocal());
335 reinterpret_cast<const AArch64CA53ErratumStub*>(stub);
337 // Rewrite the erratum instruction as a branch to the stub.
344 reloc->setSymInfo(stub->symInfo());
349 stubs_strlen += stub
406 Stub* stub = getStubFactory()->create(*relocation, // relocation local
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp859 Stub* stub = getStubFactory()->create(*relocation, // relocation local
863 if (stub != NULL) {
864 assert(stub->symInfo() != NULL);
865 // reset the branch target of the reloc to this stub instead
866 relocation->setSymInfo(stub->symInfo());
873 // a stub symbol should be local
874 assert(stub->symInfo() != NULL && stub->symInfo()->isLocal());
881 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() +
899 // find the first fragment w/ invalid offset due to stub insertio
[all...]
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp575 Stub* stub = getStubFactory()->create(*relocation, // relocation local
579 if (stub != NULL) {
580 assert(stub->symInfo() != NULL);
581 // reset the branch target of the reloc to this stub instead
582 relocation->setSymInfo(stub->symInfo());
588 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);
600 // find the first fragment w/ invalid offset due to stub insertion
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DListenerBindingObject.java227 public void onInflate(ViewStub stub, View inflated) { argument
/frameworks/base/media/java/android/media/session/
H A DMediaSession.java1404 public final ResultReceiver stub; field in class:MediaSession.Command
1406 public Command(String command, Bundle extras, ResultReceiver stub) { argument
1409 this.stub = stub;
1468 mCallback.onCommand(cmd.command, cmd.extras, cmd.stub);

Completed in 1141 milliseconds

12