Searched refs:cost_value (Results 1 – 7 of 7) sorted by relevance
/external/grpc-grpc/src/cpp/server/load_reporter/ |
D | util.cc | 32 const grpc::string& cost_name, double cost_value) { in AddLoadReportingCost() argument 33 if (std::isnormal(cost_value)) { in AddLoadReportingCost() 35 buf.resize(sizeof(cost_value) + cost_name.size()); in AddLoadReportingCost() 36 memcpy(&(*buf.begin()), &cost_value, sizeof(cost_value)); in AddLoadReportingCost() 37 memcpy(&(*buf.begin()) + sizeof(cost_value), cost_name.data(), in AddLoadReportingCost()
|
/external/rust/crates/grpcio-sys/grpc/src/cpp/server/load_reporter/ |
D | util.cc | 32 const std::string& cost_name, double cost_value) { in AddLoadReportingCost() argument 33 if (std::isnormal(cost_value)) { in AddLoadReportingCost() 35 buf.resize(sizeof(cost_value) + cost_name.size()); in AddLoadReportingCost() 36 memcpy(&(*buf.begin()), &cost_value, sizeof(cost_value)); in AddLoadReportingCost() 37 memcpy(&(*buf.begin()) + sizeof(cost_value), cost_name.data(), in AddLoadReportingCost()
|
/external/grpc-grpc/include/grpcpp/ext/ |
D | server_load_reporting.h | 47 const grpc::string& cost_name, double cost_value);
|
/external/rust/crates/grpcio-sys/grpc/include/grpcpp/ext/ |
D | server_load_reporting.h | 48 const std::string& cost_name, double cost_value);
|
/external/rust/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/ext/ |
D | server_load_reporting.h | 48 const std::string& cost_name, double cost_value);
|
/external/grpc-grpc/src/core/ext/filters/load_reporting/ |
D | server_load_reporting_filter.cc | 297 double cost_value = *cost_entry_ptr++; in SendTrailingMetadataFilter() local 301 {{::grpc::load_reporter::MeasureOtherCallMetric(), cost_value}}, in SendTrailingMetadataFilter()
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/load_reporting/ |
D | server_load_reporting_filter.cc | 294 double cost_value = *cost_entry_ptr++; in SendTrailingMetadataFilter() local 298 {{::grpc::load_reporter::MeasureOtherCallMetric(), cost_value}}, in SendTrailingMetadataFilter()
|