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

/frameworks/rs/driver/linkloader/tests/stubs/
H A Darm-stub.c11 uint32_t stub[] = { variable
22 int (*f)() = (int (*)())stub;
23 stub[1] = (uint32_t)(uintptr_t)test;
H A Dmips-stub.c29 uint32_t stub[] = { variable
42 int (*f)() = (int (*)())stub;
43 stub[0] |= (((uint32_t)(uintptr_t)test) >> 16) & 0xffff;
44 stub[1] |= (((uint32_t)(uintptr_t)test)) & 0xffff;
/frameworks/compile/mclinker/lib/LD/
H A DStubFactory.cpp33 /// addPrototype - register a stub prototype
39 /// create - create a stub if needed, otherwise return NULL
45 // find if there is a prototype stub for the input relocation
56 // find if there is such a stub in the island already
58 Stub* stub = island->findStub(prototype, pReloc); local
59 if (NULL != stub) {
60 // reset the branch target to the stub instead!
61 pReloc.setSymInfo(stub->symInfo());
64 // create a stub from the prototype
65 stub
[all...]
/frameworks/rs/driver/linkloader/lib/
H A DStubLayout.cpp36 // Check if we have created this stub or not.
43 // We have to create a new stub
45 // No free stub slot is available
49 // Initialize the stub
50 unsigned char *stub = table; local
51 setStubAddress(stub, addr);
52 stub_index.insert(std::make_pair(addr, stub));
54 // Increase the free stub slot pointer
58 return stub;
70 uint8_t *stub local
89 uint32_t *stub = (uint32_t *)stub_; local
[all...]
/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();
315 * @param stub The ViewStub that initiated the inflation.
318 void onInflate(ViewStub stub, View inflated); argument
/frameworks/rs/driver/linkloader/include/impl/
H A DELFObject.hxx233 // Get the stub for this function
237 llvm::errs() << "unable to get stub layout." << "\n";
241 void *stub = stub_layout->allocateStub(callee_addr); local
243 if (!stub) {
244 llvm::errs() << "unable to allocate stub." << "\n";
248 //LOGI("Function %s: using stub %p\n", sym->getName(), stub);
249 S = (uint32_t)(uintptr_t)stub;
526 void *stub = text->getStubLayout()->allocateStub((void *)A); local
527 rsl_assert(stub
537 void *stub = text->getStubLayout()->allocateStub((void *)S); local
[all...]
/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.cpp328 // for interfaces, also add the stub and proxy types, we don't
335 Type* stub = new Type(c->package ? c->package : "", local
338 NAMES.Add(stub);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp994 Stub* stub = getStubFactory()->create(*relocation, // relocation local
998 if (NULL != stub) {
999 // a stub symbol should be local
1000 assert(NULL != stub->symInfo() && stub->symInfo()->isLocal());
1010 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);
1024 // find the first fragment w/ invalid offset due to stub insertion

Completed in 288 milliseconds