Searched refs:stub (Results 1 - 13 of 13) sorted by relevance

/frameworks/compile/linkloader/tests/stubs/
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;
H A Darm-stub.c11 uint32_t stub[] = { variable
22 int (*f)() = (int (*)())stub;
23 stub[1] = (uint32_t)(uintptr_t)test;
/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/base/core/tests/coretests/src/android/view/
H A DViewStubTest.java42 final View stub = activity.findViewById(R.id.viewStub);
43 assertNotNull("The ViewStub does not exist", stub);
51 final ViewStub stub = (ViewStub) activity.findViewById(R.id.viewStub);
52 final View swapped = stub.inflate();
62 final ViewStub stub = (ViewStub) activity.findViewById(R.id.viewStubWithId);
63 final View swapped = stub.inflate();
75 final ViewStub stub = (ViewStub) activity.findViewById(R.id.viewStubWithId);
76 final View swapped = stub.inflate();
80 assertEquals("Both stub and inflated should same width",
81 stub
[all...]
/frameworks/compile/linkloader/include/
H A DStubLayout.h41 virtual void setStubAddress(void *stub, void *addr) = 0;
51 virtual void setStubAddress(void *stub, void *addr);
60 virtual void setStubAddress(void *stub, void *addr);
/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);
/frameworks/compile/linkloader/
H A DAndroid.mk183 # stub-layout-unit-test
189 LOCAL_MODULE := stub-layout-unit-test
200 tests/stub-test.cpp
/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/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1691 final ViewStub stub = (ViewStub) mStatusBarWindow.findViewById(R.id.status_bar_cling_stub);
1692 if (stub == null) {
1702 mCling = (ViewGroup) stub.inflate();
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java2291 ViewStub stub = (ViewStub) findViewById(
2293 if (stub != null) {
2294 mActionModeView = (ActionBarContextView) stub.inflate();

Completed in 165 milliseconds