HomeSort by relevance Sort by last modified time
    Searched refs:Stub (Results 76 - 100 of 229) sorted by null

1 2 34 5 6 7 8 910

  /external/grpc-grpc/examples/cpp/helloworld/
greeter_async_client2.cc 112 // Out of the passed in Channel comes the stub, stored here, our view of the
114 std::unique_ptr<Greeter::Stub> stub_;
  /external/grpc-grpc/src/ruby/end2end/
end2end_common.rb 82 control_stub = ClientControl::ClientController::Stub.new(
  /external/grpc-grpc/test/cpp/interop/
metrics_client.cc 50 bool PrintMetrics(std::unique_ptr<MetricsService::Stub> stub, bool total_only,
61 stub->GetAllGauges(&context, message));
  /external/ims/rcs/rcsservice/src/com/android/service/ims/
RcsService.java 196 IRcsPresence.Stub mIRcsPresenceImpl = new IRcsPresence.Stub(){
342 private final IRcsService.Stub mBinder = new IRcsService.Stub() {
  /external/tensorflow/tensorflow/compiler/xla/rpc/
grpc_client_test.cc 74 std::unique_ptr<grpc::XlaService::Stub> xla_service_;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFX86_64.h 144 auto Stub = Stubs.find(OriginalRelValueRef);
145 if (Stub == Stubs.end()) {
146 LLVM_DEBUG(dbgs() << " Create a new stub function for "
154 LLVM_DEBUG(dbgs() << " Stub function found for " << TargetName.data()
156 StubOffset = Stub->second;
160 // to ignore the __ImageBase requirement and just forward to the stub
165 // Resolve original relocation to stub function.
169 // adjust relocation info so resolution writes to the stub function
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/eager/
grpc_eager_service.h 37 // and the gRPC generated stub and service classes.
68 class Stub final : public StubInterface {
70 Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel);
103 static std::unique_ptr<Stub> NewStub(
  /external/tensorflow/tensorflow/core/profiler/rpc/client/
capture_profile.cc 95 std::unique_ptr<grpc::ProfilerService::Stub> stub = local
101 FromGrpcStatus(stub->Profile(&context, request, &response)));
149 std::unique_ptr<grpc::ProfileAnalysis::Stub> stub = local
155 stub->NewSession(&context, new_session_request, &new_session_response)));
254 std::unique_ptr<grpc::ProfilerService::Stub> stub = local
259 TF_QCHECK_OK(FromGrpcStatus(stub->Monitor(&context, request, &response)));
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCAsmPrinter.cpp 468 // Remove $stub suffix, add $lazy_ptr.
475 // Add $tmp suffix to $stub, yielding $stub$tmp.
502 MCSymbol *Stub = Stubs[i].first;
504 MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
505 MCSymbol *AnonSymbol = GetAnonSym(Stub, OutContext);
507 OutStreamer.EmitLabel(Stub);
546 MCSymbol *Stub = Stubs[i].first;
548 MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
552 OutStreamer.EmitLabel(Stub);
    [all...]
  /external/llvm/lib/ExecutionEngine/Orc/
OrcABISupport.cpp 129 // Stub format is:
172 uint64_t *Stub = reinterpret_cast<uint64_t *>(StubsBlock.base());
177 Stub[I] = 0xd61f020058000010 | PtrOffsetField;
211 // Stub format is:
254 uint64_t *Stub = reinterpret_cast<uint64_t *>(StubsBlock.base());
258 Stub[I] = 0xF1C40000000025ff | PtrOffsetField;
479 // Stub format is:
522 uint64_t *Stub = reinterpret_cast<uint64_t *>(StubsBlock.base());
525 Stub[I] = 0xF1C40000000025ff | (PtrAddr << 16);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/
OrcABISupport.cpp 128 // Stub format is:
171 uint64_t *Stub = reinterpret_cast<uint64_t *>(StubsBlock.base());
176 Stub[I] = 0xd61f020058000010 | PtrOffsetField;
210 // Stub format is:
253 uint64_t *Stub = reinterpret_cast<uint64_t *>(StubsBlock.base());
257 Stub[I] = 0xF1C40000000025ff | PtrOffsetField;
478 // Stub format is:
521 uint64_t *Stub = reinterpret_cast<uint64_t *>(StubsBlock.base());
524 Stub[I] = 0xF1C40000000025ff | (PtrAddr << 16);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
DeviceAdminTestReceiver.java 228 consumer.accept(ICrossUserService.Stub.asInterface(service));
242 private final ICrossUserService.Stub mBinder = new ICrossUserService.Stub() {
  /cts/tests/tests/os/src/android/os/cts/
SeccompTest.java 290 set(ISeccompIsolatedService.Stub.asInterface(service));
308 private final ISeccompIsolatedService.Stub mService = new ISeccompIsolatedService.Stub() {
  /external/grpc-grpc/test/cpp/microbenchmarks/
fullstack_streaming_ping_pong.h 65 std::unique_ptr<EchoTestService::Stub> stub(
77 auto request_rw = stub->AsyncBidiStream(&cli_ctx, fixture->cq(), tag(1));
158 std::unique_ptr<EchoTestService::Stub> stub(
169 auto request_rw = stub->AsyncBidiStream(&cli_ctx, fixture->cq(), tag(1));
262 std::unique_ptr<EchoTestService::Stub> stub(
277 auto request_rw = stub->AsyncBidiStream(&cli_ctx, fixture->cq(), tag(1));
  /external/libchrome/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Interface.java 268 * Base implementation of Stub. Stubs are message receivers that deserialize the payload and
269 * call the appropriate method in the implementation. If the method returns result, the stub
274 abstract class Stub<I extends Interface> implements MessageReceiverWithResponder {
292 public Stub(Core core, I impl) {
497 * Constructs a Stub delegating to the given implementation.
499 protected abstract Stub<I> buildStub(Core core, I impl);
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_master_service_impl.h 36 // and the gRPC generated stub and service classes.
74 class Stub final : public StubInterface {
76 Stub(const std::shared_ptr< ::grpc::ChannelInterface>& channel);
121 static std::unique_ptr<Stub> NewStub(
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/util/
WindowFocusStealer.java 108 queue.add(IWindowFocusStealer.Stub.asInterface(service));
  /cts/tests/tests/content/src/android/content/cts/
MockSyncAdapter.java 30 public class MockSyncAdapter extends ISyncAdapter.Stub {
  /cts/tests/tests/security/src/android/security/cts/
IsolatedProcessTest.java 63 mService = IIsolatedService.Stub.asInterface(service);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyNetworkMonitor.java 33 public class MonkeyNetworkMonitor extends IIntentReceiver.Stub {
  /external/flatbuffers/grpc/samples/greeter/
client.cpp 64 std::unique_ptr<Greeter::Stub> stub_;
  /external/grpc-grpc/test/cpp/end2end/
client_crash_test.cc 52 std::unique_ptr<grpc::testing::EchoTestService::Stub> CreateServerAndStub() {
73 auto stub = CreateServerAndStub(); local
80 auto stream = stub->BidiStream(&context);
99 auto stub = CreateServerAndStub(); local
106 auto stream = stub->BidiStream(&context);
exception_test.cc 80 std::unique_ptr<grpc::testing::EchoTestService::Stub> stub_;
  /external/grpc-grpc/test/cpp/qps/
report.h 144 std::unique_ptr<ReportQpsScenarioService::Stub> stub_;
  /external/llvm/test/ExecutionEngine/RuntimeDyld/ARM/
MachO_ARM_PIC_relocations.s 20 # Check stub generation for external symbols by referencing a common symbol, 'baz'.
21 # Check both the content of the stub, and the reference to the stub.
22 # Stub should contain '0xe51ff004' (ldr pc, [pc, #-4]), followed by the target.
31 # Check stub generation for internal symbols by referencing 'bar'.

Completed in 1091 milliseconds

1 2 34 5 6 7 8 910