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

/frameworks/compile/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/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();
314 * @param stub The ViewStub that initiated the inflation.
317 void onInflate(ViewStub stub, View inflated); argument
/frameworks/compile/linkloader/include/impl/
H A DELFObject.hxx230 // Get the stub for this function
234 llvm::errs() << "unable to get stub layout." << "\n";
238 void *stub = stub_layout->allocateStub(callee_addr); local
240 if (!stub) {
241 llvm::errs() << "unable to allocate stub." << "\n";
245 //LOGI("Function %s: using stub %p\n", sym->getName(), stub);
246 S = (uint32_t)(uintptr_t)stub;
523 void *stub = text->getStubLayout()->allocateStub((void *)A); local
524 rsl_assert(stub
534 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.cpp322 // for interfaces, also add the stub and proxy types, we don't
329 Type* stub = new Type(c->package ? c->package : "", local
332 NAMES.Add(stub);

Completed in 102 milliseconds