HomeSort by relevance Sort by last modified time
    Searched refs:Stub (Results 1 - 25 of 1010) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/mclinker/include/mcld/LD/
StubFactory.h 22 class Stub;
25 * \brief the clone factory of Stub
32 /// addPrototype - register a stub prototype
33 void addPrototype(Stub* pPrototype);
35 /// create - create a stub if needed, otherwise return NULL
36 Stub* create(Relocation& pReloc,
41 Stub* create(FragmentRef& pFragRef,
46 /// findPrototype - find if there is a registered stub prototype for the given
48 Stub* findPrototype(const Relocation& pReloc,
52 Stub* findPrototype(const FragmentRef& pFragRef) const
    [all...]
BranchIsland.h 17 #include "mcld/Fragment/Stub.h"
28 class Stub;
89 /// findStub - return true if there is a stub built from the given prototype
91 Stub* findStub(const Stub* pPrototype, const Relocation& pReloc);
93 /// addStub - add a stub into the island
94 bool addStub(const Stub* pPrototype, const Relocation& pReloc, Stub& pStub);
96 void addStub(Stub& pStub);
103 * \brief Key to recognize a stub in the island
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
EventHandler.java 28 return new Stub<T>(reply);
31 public static final class Stub<T> implements EventHandler<T> {
35 private Stub(boolean reply) {
  /packages/apps/Settings/tests/robotests/src/android/content/om/
IOverlayManager.java 21 public static class Stub {
  /frameworks/compile/mclinker/lib/Fragment/
Stub.cpp 1 //===- Stub.cpp -----------------------------------------------------------===//
9 #include "mcld/Fragment/Stub.h"
20 Stub::Stub() : Fragment(Fragment::Stub), m_pSymInfo(NULL) {
23 Stub::~Stub() {
28 void Stub::setSymInfo(ResolveInfo* pSymInfo) {
32 void Stub::applyFixup(Relocation& pSrcReloc,
35 // build a name for stub symbo
    [all...]
  /frameworks/base/telephony/java/android/telephony/ims/stub/
ImsStreamMediaSessionImplBase.java 17 package android.telephony.ims.stub;
24 * Base implementation of ImsStreamMediaSession, which implements stub versions of the methods
34 public class ImsStreamMediaSessionImplBase extends IImsStreamMediaSession.Stub {
ImsEcbmImplBase.java 17 package android.telephony.ims.stub;
25 * Base implementation of ImsEcbm, which implements stub versions of the methods
34 public class ImsEcbmImplBase extends IImsEcbm.Stub {
ImsMultiEndpointImplBase.java 17 package android.telephony.ims.stub;
25 * Base implementation of ImsMultiEndpoint, which implements stub versions of the methods
35 public class ImsMultiEndpointImplBase extends IImsMultiEndpoint.Stub {
  /cts/hostsidetests/devicepolicy/app/CorpOwnedManagedProfile/src/com/android/cts/comp/
ProtectedCrossUserService.java 30 private final ICrossUserService.Stub mBinder = new ICrossUserService.Stub() {
  /cts/tests/tests/os/src/android/os/cts/
EmptyService.java 28 private final IEmptyService.Stub mBinder = new IEmptyService.Stub() {
CtsRemoteService.java 29 android.util.Log.d("Process test stub", "CtsRemoteServiceProcessPid:" + Process.myPid());
32 private final ISecondary.Stub mSecondaryBinder = new ISecondary.Stub() {
  /frameworks/base/location/lib/java/com/android/location/provider/
FusedProvider.java 33 private IFusedProvider.Stub mProvider = new IFusedProvider.Stub() {
GeofenceProvider.java 39 private IGeofenceProvider.Stub mProvider = new IGeofenceProvider.Stub() {
  /frameworks/compile/mclinker/include/mcld/Fragment/
Stub.h 1 //===- Stub.h -------------------------------------------------------------===//
28 class Stub : public Fragment {
59 Stub();
61 virtual ~Stub();
63 /// clone - clone function for stub factory to create the corresponding stub
64 Stub* clone() { return doClone(); }
66 /// isMyDuty - return true when the pReloc is problematic and the stub is able
78 /// name - name of this stub
81 /// getContent - content of the stub
    [all...]
  /frameworks/compile/mclinker/lib/LD/
StubFactory.cpp 14 #include "mcld/Fragment/Stub.h"
34 /// addPrototype - register a stub prototype
35 void StubFactory::addPrototype(Stub* pPrototype) {
39 /// create - create a stub if needed, otherwise return NULL
40 Stub* StubFactory::create(Relocation& pReloc,
44 // find if there is a prototype stub for the input relocation
45 Stub* stub = NULL; local
46 Stub* prototype = findPrototype(pReloc, pReloc.place(), pTargetSymValue);
57 // find if there is such a stub in the backward island first
94 Stub* stub = prototype->clone(); local
    [all...]
  /frameworks/base/core/java/android/service/carrier/
CarrierService.java 55 private final ICarrierService.Stub mStubWrapper;
60 sRegistry = ITelephonyRegistry.Stub.asInterface(
137 private class ICarrierServiceWrapper extends ICarrierService.Stub {
  /cts/tests/app/app/src/android/app/stubs/
StubRemoteService.java 29 android.util.Log.d("Process test stub", "StubRemoteServiceProcessPid:" + Process.myPid());
32 private final ISecondary.Stub mSecondaryBinder = new ISecondary.Stub() {
  /frameworks/base/core/java/android/app/
PackageDeleteObserver.java 24 private final IPackageDeleteObserver2.Stub mBinder = new IPackageDeleteObserver2.Stub() {
PackageInstallObserver.java 25 private final IPackageInstallObserver2.Stub mBinder = new IPackageInstallObserver2.Stub() {
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLA25Stub.h 12 #include "mcld/Fragment/Stub.h"
23 * \brief Mips stub for a non-PIC interface to a PIC function.
25 class MipsLA25Stub : public Stub {
30 // Stub
31 Stub* doClone();
  /frameworks/support/customtabs/src/android/support/customtabs/
PostMessageService.java 29 private IPostMessageService.Stub mBinder = new IPostMessageService.Stub() {
  /packages/services/Car/tests/usb/AoapHostApp/src/com/google/android/car/usb/aoap/host/
AoapSupportCheckService.java 29 private final IUsbAoapSupportCheckService.Stub mBinder =
30 new IUsbAoapSupportCheckService.Stub() {
  /frameworks/base/core/java/android/app/admin/
DeviceAdminService.java 61 private class IDeviceAdminServiceImpl extends IDeviceAdminService.Stub {
  /external/flatbuffers/tests/
monster_test.grpc.fb.cc 25 std::unique_ptr< MonsterStorage::Stub> MonsterStorage::NewStub(const std::shared_ptr< ::grpc::ChannelInterface>& channel, const ::grpc::StubOptions& options) {
26 std::unique_ptr< MonsterStorage::Stub> stub(new MonsterStorage::Stub(channel));
27 return stub;
30 MonsterStorage::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel)
35 ::grpc::Status MonsterStorage::Stub::Store(::grpc::ClientContext* context, const flatbuffers::BufferRef<Monster>& request, flatbuffers::BufferRef<Stat>* response) {
39 ::grpc::ClientAsyncResponseReader< flatbuffers::BufferRef<Stat>>* MonsterStorage::Stub::AsyncStoreRaw(::grpc::ClientContext* context, const flatbuffers::BufferRef<Monster>& request, ::grpc::CompletionQueue* cq) {
43 ::grpc::ClientReader< flatbuffers::BufferRef<Monster>>* MonsterStorage::Stub::RetrieveRaw(::grpc::ClientContext* context, const flatbuffers::BufferRef<Stat>& request)
    [all...]
  /frameworks/base/telephony/java/android/telephony/
SubscriptionManager.java 406 IOnSubscriptionsChangedListener callback = new IOnSubscriptionsChangedListener.Stub() {
455 ITelephonyRegistry tr = ITelephonyRegistry.Stub.asInterface(ServiceManager.getService(
481 ITelephonyRegistry tr = ITelephonyRegistry.Stub.asInterface(ServiceManager.getService(
509 ISub iSub = ISub.Stub.asInterface(ServiceManager.getService("isub"));
537 ISub iSub = ISub.Stub.asInterface(ServiceManager.getService("isub"));
563 ISub iSub = ISub.Stub.asInterface(ServiceManager.getService("isub"));
586 ISub iSub = ISub.Stub.asInterface(ServiceManager.getService("isub"));
624 ISub iSub = ISub.Stub.asInterface(ServiceManager.getService("isub"));
645 ISub iSub = ISub.Stub.asInterface(ServiceManager.getService("isub"));
665 ISub iSub = ISub.Stub.asInterface(ServiceManager.getService("isub"))
    [all...]

Completed in 668 milliseconds

1 2 3 4 5 6 7 8 91011>>