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

  /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 475 // Remove $stub suffix, add $lazy_ptr.
482 // Add $tmp suffix to $stub, yielding $stub$tmp.
509 MCSymbol *Stub = Stubs[i].first;
511 MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
512 MCSymbol *AnonSymbol = GetAnonSym(Stub, OutContext);
514 OutStreamer.EmitLabel(Stub);
553 MCSymbol *Stub = Stubs[i].first;
555 MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
559 OutStreamer.EmitLabel(Stub);
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 486 // full FFI, we have to codegen a nullary stub function that just calls the
492 Function *Stub = Function::Create(STy, Function::InternalLinkage, "",
496 BasicBlock *StubBB = BasicBlock::Create(F->getContext(), "", Stub);
545 // Finally, call our nullary stub function.
546 GenericValue Result = runFunction(Stub, std::vector<GenericValue>());
548 Stub->eraseFromParent();
632 // the stub with real address of the function.
JITEmitter.cpp 99 /// FunctionToLazyStubMap - Keep track of the lazy stub created for a
135 // The address given to us for the stub may not be exactly right, it
136 // might be a little bit after the stub. As such, use upper_bound to
159 // unregister the stub addresses from the StubToResolverMap in
179 /// a lazy stub. It's actually here to make it more likely that far calls
180 /// succeed, but no single stub can guarantee that. I'll remove this in a
202 /// lazy-compilation stub if it has already been created.
206 /// lazy-compilation stub, creating one on demand as needed.
209 /// getExternalFunctionStub - Return a stub for the function at the
222 /// JITCompilerFn - This function is called to resolve a stub to a compile
    [all...]
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.cpp 838 // Return the function stub if it's already created.
843 // TODO(llvm.org): Yes, this is wrong. The lazy stub isn't
855 // And once the real address of stub is greater than 64-bit
869 // Otherwise, we may need a to emit a stub, and, conservatively, we
918 // function. If not, compile it, or use a stub to implement lazy compilation
926 // Get a stub if the target supports it.
932 // If we already have a lazy stub for this function, recycle it.
933 void *&Stub = mFunctionToLazyStubMap[F];
934 if (Stub)
935 return Stub;
    [all...]

Completed in 427 milliseconds