/external/grpc-grpc/src/android/test/interop/app/src/main/java/io/grpc/interop/cpp/ |
D | InteropActivity.java | 42 private GrpcTask grpcTask; 69 grpcTask = new GrpcTask(this); in doPingPong() 76 private static class GrpcTask extends AsyncTask<String, Void, String> { class in InteropActivity 79 private GrpcTask(InteropActivity activity) { in GrpcTask() method in InteropActivity.GrpcTask
|
/external/grpc-grpc/examples/android/helloworld/app/src/main/java/io/grpc/helloworldexample/cpp/ |
D | HelloworldActivity.java | 46 private GrpcTask grpcTask; 82 grpcTask = new GrpcTask(this); in sendMessage() 124 private static class GrpcTask extends AsyncTask<String, Void, String> { class in HelloworldActivity 127 private GrpcTask(HelloworldActivity activity) { in GrpcTask() method in HelloworldActivity.GrpcTask
|
/external/grpc-grpc-java/examples/android/helloworld/app/src/main/java/io/grpc/helloworldexample/ |
D | HelloworldActivity.java | 65 new GrpcTask(this) in sendMessage() 72 private static class GrpcTask extends AsyncTask<String, Void, String> { class in HelloworldActivity 76 private GrpcTask(Activity activity) { in GrpcTask() method in HelloworldActivity.GrpcTask
|
/external/grpc-grpc-java/examples/android/routeguide/app/src/main/java/io/grpc/routeguideexample/ |
D | RouteGuideActivity.java | 100 new GrpcTask(new GetFeatureRunnable(), channel, this).execute(); in getFeature() 106 new GrpcTask(new ListFeaturesRunnable(), channel, this).execute(); in listFeatures() 112 new GrpcTask(new RecordRouteRunnable(), channel, this).execute(); in recordRoute() 118 new GrpcTask(new RouteChatRunnable(), channel, this).execute(); in routeChat() 141 private static class GrpcTask extends AsyncTask<Void, Void, String> { class in RouteGuideActivity 146 GrpcTask(GrpcRunnable grpcRunnable, ManagedChannel channel, RouteGuideActivity activity) { in GrpcTask() method in RouteGuideActivity.GrpcTask
|
/external/grpc-grpc-java/examples/android/clientcache/app/src/main/java/io/grpc/clientcacheexample/ |
D | ClientCacheExampleActivity.java | 83 new GrpcTask(this, cache) in sendMessage() 93 private static class GrpcTask extends AsyncTask<Object, Void, String> { class in ClientCacheExampleActivity 98 private GrpcTask(Activity activity, SafeMethodCachingInterceptor.Cache cache) { in GrpcTask() method in ClientCacheExampleActivity.GrpcTask
|
/external/grpc-grpc-java/examples/example-kotlin/android/helloworld/app/src/main/kotlin/io/grpc/helloworldexample/ |
D | HelloworldActivity.kt | 53 GrpcTask(this) in onClick() 60 private class GrpcTask constructor(activity: Activity) : AsyncTask<String, Void, String>() { class in io.grpc.helloworldexample.HelloworldActivity
|