Home
last modified time | relevance | path

Searched refs:health (Results 1 – 25 of 190) sorted by relevance

12345678

/external/grpc-grpc-java/services/src/generated/main/grpc/io/grpc/health/v1/
DHealthGrpc.java1 package io.grpc.health.v1;
30 private static volatile io.grpc.MethodDescriptor<io.grpc.health.v1.HealthCheckRequest,
31 io.grpc.health.v1.HealthCheckResponse> getCheckMethod;
35 requestType = io.grpc.health.v1.HealthCheckRequest.class,
36 responseType = io.grpc.health.v1.HealthCheckResponse.class,
38 public static io.grpc.MethodDescriptor<io.grpc.health.v1.HealthCheckRequest,
39 io.grpc.health.v1.HealthCheckResponse> getCheckMethod() { in getCheckMethod()
40 …io.grpc.MethodDescriptor<io.grpc.health.v1.HealthCheckRequest, io.grpc.health.v1.HealthCheckRespon… in getCheckMethod()
45 …io.grpc.MethodDescriptor.<io.grpc.health.v1.HealthCheckRequest, io.grpc.health.v1.HealthCheckRespo… in getCheckMethod()
51 io.grpc.health.v1.HealthCheckRequest.getDefaultInstance())) in getCheckMethod()
[all …]
/external/grpc-grpc-java/services/src/generated/main/java/io/grpc/health/v1/
DHealthCheckResponse.java4 package io.grpc.health.v1;
73 …return io.grpc.health.v1.HealthProto.internal_static_grpc_health_v1_HealthCheckResponse_descriptor; in getDescriptor()
78 …return io.grpc.health.v1.HealthProto.internal_static_grpc_health_v1_HealthCheckResponse_fieldAcces… in internalGetFieldAccessorTable()
80 … io.grpc.health.v1.HealthCheckResponse.class, io.grpc.health.v1.HealthCheckResponse.Builder.class); in internalGetFieldAccessorTable()
181 return io.grpc.health.v1.HealthCheckResponse.getDescriptor().getEnumTypes().get(0); in getDescriptor()
218 public io.grpc.health.v1.HealthCheckResponse.ServingStatus getStatus() { in getStatus()
219 …io.grpc.health.v1.HealthCheckResponse.ServingStatus result = io.grpc.health.v1.HealthCheckResponse… in getStatus()
220 … return result == null ? io.grpc.health.v1.HealthCheckResponse.ServingStatus.UNRECOGNIZED : result; in getStatus()
235 if (status_ != io.grpc.health.v1.HealthCheckResponse.ServingStatus.UNKNOWN.getNumber()) { in writeTo()
246 if (status_ != io.grpc.health.v1.HealthCheckResponse.ServingStatus.UNKNOWN.getNumber()) { in getSerializedSize()
[all …]
DHealthCheckRequest.java4 package io.grpc.health.v1;
73 … return io.grpc.health.v1.HealthProto.internal_static_grpc_health_v1_HealthCheckRequest_descriptor; in getDescriptor()
78 …return io.grpc.health.v1.HealthProto.internal_static_grpc_health_v1_HealthCheckRequest_fieldAccess… in internalGetFieldAccessorTable()
80 … io.grpc.health.v1.HealthCheckRequest.class, io.grpc.health.v1.HealthCheckRequest.Builder.class); in internalGetFieldAccessorTable()
153 if (!(obj instanceof io.grpc.health.v1.HealthCheckRequest)) { in equals()
156 io.grpc.health.v1.HealthCheckRequest other = (io.grpc.health.v1.HealthCheckRequest) obj; in equals()
179 public static io.grpc.health.v1.HealthCheckRequest parseFrom( in parseFrom()
184 public static io.grpc.health.v1.HealthCheckRequest parseFrom( in parseFrom()
190 public static io.grpc.health.v1.HealthCheckRequest parseFrom( in parseFrom()
195 public static io.grpc.health.v1.HealthCheckRequest parseFrom( in parseFrom()
[all …]
/external/linux-kselftest/tools/testing/selftests/drivers/net/netdevsim/
Ddevlink.sh317 devlink health show $DL_HANDLE reporter empty >/dev/null
320 devlink health dump show $DL_HANDLE reporter empty >/dev/null
323 devlink health diagnose $DL_HANDLE reporter empty >/dev/null
326 devlink health recover $DL_HANDLE reporter empty
341 local show=$(devlink health show $DL_HANDLE reporter $name -j | jq -e -r ".[][][]")
373 echo "$BREAK_MSG"> $DEBUGFS_DIR/health/break_health
378 local dump=$(devlink health dump show $DL_HANDLE reporter dummy -j)
385 devlink health dump clear $DL_HANDLE reporter dummy
388 devlink health recover $DL_HANDLE reporter dummy
393 devlink health set $DL_HANDLE reporter dummy auto_recover true
[all …]
/external/grpc-grpc-java/services/src/test/java/io/grpc/services/
DHealthStatusManagerTest.java29 import io.grpc.health.v1.HealthCheckRequest;
30 import io.grpc.health.v1.HealthCheckResponse;
31 import io.grpc.health.v1.HealthGrpc;
44 private final HealthGrpc.HealthImplBase health = field in HealthStatusManagerTest
52 assertEquals(health, manager.getHealthService()); in getHealthService_getterReturnsTheSameHealthRefAfterUpdate()
65 health.check(request, observer); in checkValidStatus()
84 health.check(request, observer); in checkStatusNotFound()
105 health.check(request, observer); in notFoundForClearedStatus()
/external/grpc-grpc/doc/
Dhealth-checking.md5 client-to-server health checking can happen from point to point or via some
12 A GRPC service is used as the health checking mechanism for both simple
16 itself, doing a health check is in the same format as a normal rpc. Secondly,
17 it has rich semantics such as per-service health status. Thirdly, as a GRPC
19 and thus the server has full control over the access of the health checking
29 package grpc.health.v1;
49 A client can query the server’s health status by calling the `Check` method, and
51 name it wants to query for health status. The suggested format of service name
52 is `package_names.ServiceName`, such as `grpc.health.v1.Health`.
62 overall health status, so that a client not interested in a specific service can
/external/grpc-grpc/src/proto/grpc/health/v1/
Dhealth.proto16 // https://github.com/grpc/grpc-proto/blob/master/grpc/health/v1/health.proto
20 package grpc.health.v1;
23 option go_package = "google.golang.org/grpc/health/grpc_health_v1";
26 option java_package = "io.grpc.health.v1";
/external/grpc-grpc-java/services/src/main/java/io/grpc/services/
DHealthServiceImpl.java21 import io.grpc.health.v1.HealthCheckRequest;
22 import io.grpc.health.v1.HealthCheckResponse;
23 import io.grpc.health.v1.HealthCheckResponse.ServingStatus;
24 import io.grpc.health.v1.HealthGrpc;
/external/rust/crates/grpcio-sys/grpc/src/proto/grpc/health/v1/
DBUILD21 name = "health",
27 srcs = ["health.proto"],
32 srcs = ["health.proto"],
38 "health.proto",
Dhealth.proto16 // https://github.com/grpc/grpc-proto/blob/master/grpc/health/v1/health.proto
20 package grpc.health.v1;
23 option go_package = "google.golang.org/grpc/health/grpc_health_v1";
26 option java_package = "io.grpc.health.v1";
/external/autotest/server/site_tests/bluetooth_AdapterQuickHealth/
Dcontrol.quick_health9 PURPOSE = ('Package of Bluetooth quick health tests')
10 CRITERIA = 'Pass all health test'
19 This class implements a Bluetooth quick health package, using
24 The quick health test pacakge is imporving test time by doing the minimal
Dcontrol.AVL9 PURPOSE = ('Package of Bluetooth quick health tests')
10 CRITERIA = 'Pass all health test'
19 The AVL test run a subset of tests in quick health.
/external/autotest/server/site_tests/bluetooth_AdapterLEHealth/
Dcontrol.stress9 PURPOSE = ('Batch of Bluetooth LE health tests')
10 CRITERIA = 'Pass all health test'
19 A Batch of Bluetooth LE health tests. This test is written as a batch
25 specific test only - todo http://b/132199238 [autotest BT quick health]
Dcontrol.le_health9 PURPOSE = ('Batch of Bluetooth LE health tests')
10 CRITERIA = 'Pass all health test'
18 DOC = """ A Batch of Bluetooth LE health tests. """
/external/autotest/server/site_tests/bluetooth_AdapterSAHealth/
Dcontrol.sa_basic_test9 PURPOSE = ('batch of Bluetooth stand along health tests')
10 CRITERIA = 'Pass all health test'
19 A Batch of Bluetooth stand alone health tests. This test is written as a
25 specific test only - todo http://b/132199238 [autotest BT quick health]
Dcontrol.sa_adapter_suspend_resume_test9 PURPOSE = ('batch of Bluetooth stand along health tests')
10 CRITERIA = 'Pass all health test'
19 A Batch of Bluetooth stand alone health tests. This test is written as a
25 specific test only - todo http://b/132199238 [autotest BT quick health]
Dcontrol.stress9 PURPOSE = ('batch of Bluetooth stand alone health tests')
10 CRITERIA = 'Pass all health test'
19 A Batch of Bluetooth stand alone health tests. This test is written as a
25 specific test only - todo http://b/132199238 [autotest BT quick health]
Dcontrol.sa_health9 PURPOSE = ('batch of Bluetooth stand alone health tests')
10 CRITERIA = 'Pass all health test'
19 A Batch of Bluetooth stand alone health tests. This test is written as a
/external/rust/crates/grpcio-sys/grpc/tools/internal_ci/linux/
Dgrpc_xds_ruby_test_in_docker.sh49 HEALTH_PROTO_SOURCE_DIR=src/proto/grpc/health/v1
52 touch "$TOOLS_DIR"/src/proto/grpc/health/__init__.py
53 touch "$TOOLS_DIR"/src/proto/grpc/health/v1/__init__.py
59 ${HEALTH_PROTO_SOURCE_DIR}/health.proto
Dgrpc_xds_bazel_test_in_docker.sh49 HEALTH_PROTO_SOURCE_DIR=src/proto/grpc/health/v1
52 touch "$TOOLS_DIR"/src/proto/grpc/health/__init__.py
53 touch "$TOOLS_DIR"/src/proto/grpc/health/v1/__init__.py
59 ${HEALTH_PROTO_SOURCE_DIR}/health.proto
Dgrpc_xds_csharp_test_in_docker.sh49 HEALTH_PROTO_SOURCE_DIR=src/proto/grpc/health/v1
52 touch "$TOOLS_DIR"/src/proto/grpc/health/__init__.py
53 touch "$TOOLS_DIR"/src/proto/grpc/health/v1/__init__.py
59 ${HEALTH_PROTO_SOURCE_DIR}/health.proto
Dgrpc_xds_bazel_python_test_in_docker.sh49 HEALTH_PROTO_SOURCE_DIR=src/proto/grpc/health/v1
52 touch "$TOOLS_DIR"/src/proto/grpc/health/__init__.py
53 touch "$TOOLS_DIR"/src/proto/grpc/health/v1/__init__.py
59 ${HEALTH_PROTO_SOURCE_DIR}/health.proto
Dgrpc_xds_php_test_in_docker.sh49 HEALTH_PROTO_SOURCE_DIR=src/proto/grpc/health/v1
52 touch "$TOOLS_DIR"/src/proto/grpc/health/__init__.py
53 touch "$TOOLS_DIR"/src/proto/grpc/health/v1/__init__.py
59 ${HEALTH_PROTO_SOURCE_DIR}/health.proto
/external/grpc-grpc-java/services/src/main/proto/grpc/health/v1/
Dhealth.proto16 // https://github.com/grpc/grpc-proto/blob/master/grpc/health/v1/health.proto
20 package grpc.health.v1;
23 option go_package = "google.golang.org/grpc/health/grpc_health_v1";
26 option java_package = "io.grpc.health.v1";
/external/perfetto/src/android_internal/
Dhealth_hal.cc25 using ::android::hardware::health::V2_0::IHealth;
26 using ::android::hardware::health::V2_0::Result;
33 g_svc = ::android::hardware::health::V2_0::get_health_service(); in ResetService()

12345678