HomeSort by relevance Sort by last modified time
    Searched defs:Stub (Results 1 - 11 of 11) sorted by null

  /frameworks/compile/mclinker/lib/Fragment/
Stub.cpp 1 //===- Stub.cpp -----------------------------------------------------------===//
10 #include <mcld/Fragment/Stub.h>
14 Stub::Stub()
15 : Fragment(Fragment::Stub),
20 Stub::~Stub()
26 void Stub::setSymInfo(ResolveInfo* pSymInfo)
31 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType)
37 void Stub::addFixup(const Fixup& pFixup
    [all...]
  /frameworks/compile/mclinker/include/mcld/Fragment/
Fragment.h 37 Stub,
Stub.h 1 //===- Stub.h -------------------------------------------------------------===//
28 class Stub: public Fragment
63 Stub();
65 virtual ~Stub();
67 /// clone - clone function for stub factory to create the corresponding stub
68 Stub* clone() { return doClone(); }
70 /// isMyDuty - return true when the pReloc is problematic and the stub is able
76 /// name - name of this stub
79 /// getContent - content of the stub
    [all...]
  /frameworks/base/core/java/android/os/storage/
IMountServiceListener.java 32 /** Local-side IPC implementation stub class. */
33 public static abstract class Stub extends Binder implements IMountServiceListener {
36 /** Construct the stub at attach it to the interface. */
37 public Stub() {
53 return new IMountServiceListener.Stub.Proxy(obj);
118 mRemote.transact(Stub.TRANSACTION_onUsbMassStorageConnectionChanged, _data,
145 mRemote.transact(Stub.TRANSACTION_onStorageStateChanged, _data, _reply, 0);
IMountShutdownObserver.java 31 /** Local-side IPC implementation stub class. */
32 public static abstract class Stub extends Binder implements IMountShutdownObserver {
35 /** Construct the stub at attach it to the interface. */
36 public Stub() {
52 return new IMountShutdownObserver.Stub.Proxy(obj);
106 mRemote.transact(Stub.TRANSACTION_onShutDownComplete, _data, _reply, 0);
IObbActionListener.java 32 /** Local-side IPC implementation stub class. */
33 public static abstract class Stub extends Binder implements IObbActionListener {
36 /** Construct the stub at attach it to the interface. */
37 public Stub() {
53 return new IObbActionListener.Stub.Proxy(obj);
115 mRemote.transact(Stub.TRANSACTION_onObbResult, _data, _reply,
IMountService.java 36 /** Local-side IPC implementation stub class. */
37 public static abstract class Stub extends Binder implements IMountService {
63 mRemote.transact(Stub.TRANSACTION_registerListener, _data, _reply, 0);
80 mRemote.transact(Stub.TRANSACTION_unregisterListener, _data, _reply, 0);
97 mRemote.transact(Stub.TRANSACTION_isUsbMassStorageConnected, _data, _reply, 0);
118 mRemote.transact(Stub.TRANSACTION_setUsbMassStorageEnabled, _data, _reply, 0);
136 mRemote.transact(Stub.TRANSACTION_isUsbMassStorageEnabled, _data, _reply, 0);
157 mRemote.transact(Stub.TRANSACTION_mountVolume, _data, _reply, 0);
181 mRemote.transact(Stub.TRANSACTION_unmountVolume, _data, _reply, 0);
200 mRemote.transact(Stub.TRANSACTION_formatVolume, _data, _reply, 0)
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp 781 // L_foo$stub:
    [all...]
  /frameworks/base/core/java/android/security/
IKeystoreService.java 32 public static abstract class Stub extends Binder implements IKeystoreService {
54 mRemote.transact(Stub.TRANSACTION_test, _data, _reply, 0);
71 mRemote.transact(Stub.TRANSACTION_get, _data, _reply, 0);
91 mRemote.transact(Stub.TRANSACTION_insert, _data, _reply, 0);
109 mRemote.transact(Stub.TRANSACTION_del, _data, _reply, 0);
127 mRemote.transact(Stub.TRANSACTION_exist, _data, _reply, 0);
145 mRemote.transact(Stub.TRANSACTION_saw, _data, _reply, 0);
170 mRemote.transact(Stub.TRANSACTION_reset, _data, _reply, 0);
187 mRemote.transact(Stub.TRANSACTION_password, _data, _reply, 0);
203 mRemote.transact(Stub.TRANSACTION_lock, _data, _reply, 0)
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 492 // full FFI, we have to codegen a nullary stub function that just calls the
498 Function *Stub = Function::Create(STy, Function::InternalLinkage, "",
502 BasicBlock *StubBB = BasicBlock::Create(F->getContext(), "", Stub);
552 // Finally, call our nullary stub function.
553 GenericValue Result = runFunction(Stub, std::vector<GenericValue>());
555 Stub->eraseFromParent();
639 // the stub with real address of the function.
JITEmitter.cpp 98 /// FunctionToLazyStubMap - Keep track of the lazy stub created for a
139 // The address given to us for the stub may not be exactly right, it
140 // might be a little bit after the stub. As such, use upper_bound to
163 // unregister the stub addresses from the StubToResolverMap in
183 /// a lazy stub. It's actually here to make it more likely that far calls
184 /// succeed, but no single stub can guarantee that. I'll remove this in a
206 /// lazy-compilation stub if it has already been created.
210 /// lazy-compilation stub, creating one on demand as needed.
213 /// getExternalFunctionStub - Return a stub for the function at the
226 /// JITCompilerFn - This function is called to resolve a stub to a compile
    [all...]

Completed in 2683 milliseconds