Home
last modified time | relevance | path

Searched refs:encoded_response (Results 1 – 5 of 5) sorted by relevance

/external/grpc-grpc/test/cpp/grpclb/
Dgrpclb_api_test.cc76 const grpc::string encoded_response = response.SerializeAsString(); in TEST_F() local
78 grpc_slice_from_copied_string(encoded_response.c_str()); in TEST_F()
103 const grpc::string encoded_response = response.SerializeAsString(); in TEST_F() local
105 encoded_response.data(), encoded_response.size()); in TEST_F()
/external/tensorflow/tensorflow/contrib/mpi_collectives/kernels/
Dmpi_ops.cc730 std::string encoded_response; in BackgroundThreadLoop() local
731 response.SerializeToString(&encoded_response); in BackgroundThreadLoop()
733 MPI_Send(encoded_response.c_str(), encoded_response.length() + 1, in BackgroundThreadLoop()
748 std::string encoded_response; in BackgroundThreadLoop() local
749 done_response.SerializeToString(&encoded_response); in BackgroundThreadLoop()
751 MPI_Send(encoded_response.c_str(), encoded_response.length() + 1, in BackgroundThreadLoop()
/external/tensorflow/tensorflow/contrib/mpi_collectives/
Dmpi_ops.cc731 std::string encoded_response; in BackgroundThreadLoop() local
732 response.SerializeToString(&encoded_response); in BackgroundThreadLoop()
734 MPI_Send(encoded_response.c_str(), encoded_response.length() + 1, in BackgroundThreadLoop()
749 std::string encoded_response; in BackgroundThreadLoop() local
750 done_response.SerializeToString(&encoded_response); in BackgroundThreadLoop()
752 MPI_Send(encoded_response.c_str(), encoded_response.length() + 1, in BackgroundThreadLoop()
/external/grpc-grpc/src/cpp/server/health/
Ddefault_health_check_service.cc114 Slice encoded_response(response_slice, Slice::STEAL_REF); in Check() local
115 ByteBuffer response_buffer(&encoded_response, 1); in Check()
/external/python/oauth2client/tests/
Dtest_client.py925 encoded_response = json.dumps(token_response).encode('utf-8')
927 ({'status': '200'}, encoded_response),