Searched defs:stub (Results 1 - 22 of 22) sorted by last modified time

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DViewStubCompat.java260 * @param stub The ViewStub that initiated the inflation.
263 void onInflate(ViewStubCompat stub, View inflated); argument
/frameworks/support/media-compat/java/android/support/v4/media/session/
H A DMediaSessionCompat.java2790 public final ResultReceiver stub; field in class:MediaSessionCompat.MediaSessionImplBase.Command
2792 public Command(String command, Bundle extras, ResultReceiver stub) { argument
2795 this.stub = stub;
2867 cb.onCommand(cmd.command, cmd.extras, cmd.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/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/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/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/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp776 Stub* stub = getStubFactory()->create( local
779 if (stub == NULL)
782 assert(stub->symInfo() != NULL);
783 // reset the branch target of the reloc to this stub instead
784 pRel.setSymInfo(stub->symInfo());
790 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);
827 // find the first fragment w/ invalid offset due to stub insertion
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationsQuickSettingsContainer.java148 public void onInflate(ViewStub stub, View inflated) { argument
149 if (stub == mUserSwitcher) {
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionManagerServiceImpl.java119 VoiceInteractionManagerService.VoiceInteractionManagerServiceStub stub,
123 mServiceStub = stub;
118 VoiceInteractionManagerServiceImpl(Context context, Handler handler, VoiceInteractionManagerService.VoiceInteractionManagerServiceStub stub, int userHandle, ComponentName service) argument
/frameworks/base/telephony/java/android/telephony/ims/stub/
H A DImsCallSessionImplBase.java17 package android.telephony.ims.stub;
30 * Base implementation of IImsCallSession, which implements stub versions of the methods in the
H A DImsCallSessionListenerImplBase.java17 package android.telephony.ims.stub;
28 * Base implementation of ImsCallSessionListenerBase, which implements stub versions of the methods
H A DImsConfigImplBase.java17 package android.telephony.ims.stub;
26 * Base implementation of ImsConfig, which implements stub versions of the methods
H A DImsEcbmImplBase.java17 package android.telephony.ims.stub;
25 * Base implementation of ImsEcbm, which implements stub versions of the methods
H A DImsMultiEndpointImplBase.java17 package android.telephony.ims.stub;
25 * Base implementation of ImsMultiEndpoint, which implements stub versions of the methods
H A DImsStreamMediaSessionImplBase.java17 package android.telephony.ims.stub;
24 * Base implementation of ImsStreamMediaSession, which implements stub versions of the methods
H A DImsUtImplBase.java17 package android.telephony.ims.stub;
26 * Base implementation of ImsUt, which implements stub versions of the methods
H A DImsUtListenerImplBase.java17 package android.telephony.ims.stub;
29 * Base implementation of ImsUtListener, which implements stub versions of the methods
/frameworks/base/media/java/android/media/session/
H A DMediaSession.java1264 public final ResultReceiver stub; field in class:MediaSession.Command
1266 public Command(String command, Bundle extras, ResultReceiver stub) { argument
1269 this.stub = stub;
1329 mCallback.onCommand(cmd.command, cmd.extras, cmd.stub);
/frameworks/base/core/java/android/service/quicksettings/
H A DTile.java87 public void setService(IQSService service, IBinder stub) { argument
89 mToken = stub;
/frameworks/base/core/java/android/view/
H A DViewStub.java45 * &lt;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

Completed in 453 milliseconds