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

/frameworks/compile/mclinker/lib/LD/
H A DStubFactory.cpp32 /// addPrototype - register a stub prototype
38 /// 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 // reset the branch target to the stub instead!
64 pReloc.setSymInfo(stub->symInfo());
66 // find if there is such a stub i
[all...]
/frameworks/rs/cpu_ref/linkloader/lib/
H A DStubLayout.cpp35 // Check if we have created this stub or not.
42 // We have to create a new stub
44 // No free stub slot is available
48 // Initialize the stub
49 unsigned char *stub = table; local
50 setStubAddress(stub, addr);
51 stub_index.insert(std::make_pair(addr, stub));
53 // Increase the free stub slot pointer
57 return stub;
69 uint8_t *stub local
106 uint8_t *stub = (uint8_t *)stub_; local
125 uint32_t *stub = (uint32_t *)stub_; local
137 uint8_t *stub = (uint8_t *)stub_; local
153 uint8_t *stub = (uint8_t*)stub_; local
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationsQuickSettingsContainer.java95 public void onInflate(ViewStub stub, View inflated) { argument
96 if (stub == mUserSwitcher) {
/frameworks/av/media/libstagefright/timedtext/test/
H A DTimedTextSRTSource_test.cpp84 sp<DataSource> stub= new SRTDataSourceStub( local
87 mSource = new TimedTextSRTSource(stub);
/frameworks/base/core/java/android/view/
H A DViewStub.java43 * &lt;ViewStub android:id="@+id/stub"
50 * The ViewStub thus defined can be found using the id "stub." After inflation of
59 * ViewStub stub = (ViewStub) findViewById(R.id.stub);
60 * View inflated = stub.inflate();
320 * @param stub The ViewStub that initiated the inflation.
323 void onInflate(ViewStub stub, View inflated); argument
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DViewStubCompat.java257 * @param stub The ViewStub that initiated the inflation.
260 void onInflate(ViewStubCompat stub, View inflated); argument
/frameworks/base/tools/aidl/
H A Dgenerate_java_binder.cpp27 this->comment = "/** Local-side IPC implementation stub class. */";
43 ctor->comment = "/** Construct the stub at attach it to the "
291 // == the stub method ====================================================
496 generate_interface_descriptors(StubClass* stub, ProxyClass* proxy) argument
500 c->statements->Add(new MethodCall(stub->transact_reply, "writeString",
503 stub->transact_switch->cases.push_back(c);
530 // the stub inner class
531 StubClass* stub = new StubClass( local
534 interface->elements.push_back(stub);
541 stub
[all...]
H A Daidl.cpp329 // for interfaces, also add the stub and proxy types, we don't
336 Type* stub = new Type(c->package ? c->package : "", local
339 NAMES.Add(stub);
/frameworks/rs/cpu_ref/linkloader/include/impl/
H A DELFObject.hxx235 // Get the stub for this function
239 llvm::errs() << "unable to get stub layout." << "\n";
243 void *stub = stub_layout->allocateStub(callee_addr); local
245 if (!stub) {
246 llvm::errs() << "unable to allocate stub." << "\n";
250 //LOGI("Function %s: using stub %p\n", sym->getName(), stub);
251 S = (uint32_t)(uintptr_t)stub;
509 bool call_via_stub = false; // Call via a stub (linker veneer).
545 // See if we can do the branch without a stub
570 void *stub = stub_layout->allocateStub(callee_addr); local
713 void *stub = stub_layout->allocateStub((void *)S); local
913 void* stub = NULL; local
930 void* stub = NULL; local
932 void *stub = text->getStubLayout()->allocateStub((void *)S); local
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp650 Stub* stub = getStubFactory()->create(*relocation, // relocation local
654 if (NULL != stub) {
660 // a stub symbol should be local
661 assert(NULL != stub->symInfo() && stub->symInfo()->isLocal());
671 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);
689 // find the first fragment w/ invalid offset due to stub insertion
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp607 Stub* stub = getStubFactory()->create(*relocation, // relocation local
611 if (NULL != stub) {
612 assert(NULL != stub->symInfo());
617 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);
630 // find the first fragment w/ invalid offset due to stub insertion
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp697 Stub* stub = local
700 if (NULL == stub)
703 assert(NULL != stub->symInfo());
708 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);
744 // find the first fragment w/ invalid offset due to stub insertion
/frameworks/base/media/java/android/media/session/
H A DMediaSession.java1129 public final ResultReceiver stub; field in class:MediaSession.Command
1131 public Command(String command, Bundle extras, ResultReceiver stub) { argument
1134 this.stub = stub;
1231 mCallback.onCommand(cmd.command, cmd.extras, cmd.stub);
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaSessionCompat.java1675 public final ResultReceiver stub; field in class:MediaSessionCompat.MediaSessionImplBase.Command
1677 public Command(String command, Bundle extras, ResultReceiver stub) { argument
1680 this.stub = stub;
1776 mCallback.onCommand(cmd.command, cmd.extras, cmd.stub);

Completed in 2938 milliseconds