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

1 2 3 45 6 7 8 910

  /external/swiftshader/third_party/llvm-7.0/llvm/test/ExecutionEngine/RuntimeDyld/ARM/
MachO_ARM_PIC_relocations.s 21 # Check stub generation for external symbols by referencing a common symbol, 'baz'.
22 # Check both the content of the stub, and the reference to the stub.
23 # Stub should contain '0xe51ff004' (ldr pc, [pc, #-4]), followed by the target.
32 # Check stub generation for internal symbols by referencing 'bar'.
  /frameworks/base/cmds/appwidget/src/com/android/commands/appwidget/
AppWidget.java 151 IAppWidgetService appWidgetService = IAppWidgetService.Stub.asInterface(binder);
  /external/flatbuffers/grpc/tests/
grpctest.cpp 101 void StoreRPC(MonsterStorage::Stub *stub) {
112 auto status = stub->Store(&context, request, &response);
123 void RetrieveRPC(MonsterStorage::Stub *stub) {
132 auto stream = stub->Retrieve(&context, request);
150 auto stub = MyGame::Example::MonsterStorage::NewStub(channel); local
152 StoreRPC<MessageBuilder>(stub.get());
153 StoreRPC<FlatBufferBuilder>(stub.get());
155 RetrieveRPC<MessageBuilder>(stub.get())
    [all...]
  /external/grpc-grpc/examples/ruby/pubsub/
pubsub_demo.rb 53 # Creates a stub for accessing the publisher service.
56 stub_clz = Tech::Pubsub::PublisherService::Stub # shorter
64 # Creates a stub for accessing the subscriber service.
67 stub_clz = Tech::Pubsub::SubscriberService::Stub # shorter
81 # @param pub [Stub] a stub for accessing the publisher service
82 # @param sub [Stub] a stub for accessing the publisher service
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
test_case.py     [all...]
  /external/grpc-grpc/test/cpp/end2end/
thread_stress_test.cc 74 grpc::testing::EchoTestService::Stub* GetStub() { return stub_.get(); }
77 std::unique_ptr<grpc::testing::EchoTestService::Stub> stub_;
271 static void SendRpc(grpc::testing::EchoTestService::Stub* stub, int num_rpcs,
279 Status s = stub->Echo(&context, request, &response);
nonblocking_test.cc 166 std::unique_ptr<grpc::testing::EchoTestService::Stub> stub_;
proto_server_reflection_test.cc 120 std::unique_ptr<grpc::testing::EchoTestService::Stub> stub_;
shutdown_test.cc 111 std::unique_ptr<grpc::testing::EchoTestService::Stub> stub_;
streaming_throughput_test.cc 153 std::unique_ptr<grpc::testing::EchoTestService::Stub> stub_;
  /external/grpc-grpc/test/cpp/qps/
client_sync.cc 46 static std::unique_ptr<BenchmarkService::Stub> BenchmarkStubCreator(
52 : public ClientImpl<BenchmarkService::Stub, SimpleRequest> {
55 : ClientImpl<BenchmarkService::Stub, SimpleRequest>(
127 auto* stub = channels_[thread_idx % channels_.size()].get_stub(); variable
132 stub->UnaryCall(&context, request_, &responses_[thread_idx]);
232 auto* stub = channels_[thread_idx % channels_.size()].get_stub(); variable
235 stream_[thread_idx] = stub->StreamingCall(&context_[thread_idx]);
264 auto* stub = channels_[thread_idx % channels_.size()].get_stub(); variable
267 stream_[thread_idx] = stub->StreamingCall(&context_[thread_idx]);
291 auto* stub = channels_[thread_idx % channels_.size()].get_stub() variable
317 auto* stub = channels_[thread_idx % channels_.size()].get_stub(); variable
341 auto* stub = channels_[thread_idx % channels_.size()].get_stub(); variable
362 auto* stub = channels_[thread_idx % channels_.size()].get_stub(); variable
388 auto* stub = channels_[thread_idx % channels_.size()].get_stub(); variable
    [all...]
  /external/v8/src/
code-factory.cc 17 // TODO(ishell): make it (const Stub& stub) once CodeStub::GetCode() is const.
18 template <typename Stub>
19 Callable make_callable(Stub& stub) {
20 typedef typename Stub::Descriptor Descriptor;
21 return Callable(stub.GetCode(), Descriptor{});
86 CallApiCallbackStub stub(isolate, argc);
87 return make_callable(stub);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/
ProjectionActivity.java 59 mService = IProjectionService.Stub.asInterface(binder);
ProjectionService.java 74 private class ProjectionServiceBinder extends IProjectionService.Stub {
  /cts/common/device-side/util/src/com/android/compatibility/common/util/devicepolicy/provisioning/
SilentProvisioningTestManager.java 44 private final IBooleanCallback mProvisioningResultCallback = new IBooleanCallback.Stub() {
  /cts/common/device-side/util-axt/src/com/android/compatibility/common/util/devicepolicy/provisioning/
SilentProvisioningTestManager.java 45 private final IBooleanCallback mProvisioningResultCallback = new IBooleanCallback.Stub() {
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorPeer.java 44 public class ParcelFileDescriptorPeer extends IParcelFileDescriptorPeer.Stub {
ProcessTest.java 54 mSecondaryService = ISecondary.Stub.asInterface(service);
RemoteCallbackListTest.java 46 mSecondaryService = ISecondary.Stub.asInterface(service);
  /cts/tests/tests/telephony/current/LocationAccessingApp/src/android/telephony/cts/locationaccessingapp/
CtsLocationAccessService.java 51 private ICtsLocationAccessControl mBinder = new ICtsLocationAccessControl.Stub() {
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyPermissionUtil.java 77 mPm = IPackageManager.Stub.asInterface(ServiceManager.getService("package"));
  /external/grpc-grpc/examples/android/helloworld/app/src/main/cpp/
grpc-helloworld.cc 102 std::unique_ptr<Greeter::Stub> stub_;
  /external/grpc-grpc/examples/ruby/route_guide/
route_guide_client.rb 40 def run_get_feature(stub)
44 resp = stub.get_feature(pt)
61 def run_list_features(stub)
64 resps = stub.list_features(LIST_FEATURES_RECT)
100 def run_record_route(stub, features)
105 resp = stub.record_route(reqs.each)
125 def run_route_chat(stub)
129 stub.route_chat(sleeping_enumerator.each_item) { |r| p "received #{r.inspect}" }
149 stub = RouteGuide::Stub.new('localhost:50051', :this_channel_is_insecure
    [all...]
  /external/grpc-grpc/test/cpp/microbenchmarks/
fullstack_unary_ping_pong.h 72 std::unique_ptr<EchoTestService::Stub> stub(
80 stub->AsyncEcho(&cli_ctx, send_request, fixture->cq()));
  /external/grpc-grpc/test/cpp/util/
cli_call_test.cc 83 std::unique_ptr<grpc::testing::EchoTestService::Stub> stub_;
89 // Send a rpc with a normal stub and then a CliCall. Verify they match.
92 // Normal stub.

Completed in 1216 milliseconds

1 2 3 45 6 7 8 910