HomeSort by relevance Sort by last modified time
    Searched refs:response_proto (Results 1 - 9 of 9) sorted by null

  /system/tpm/tpm_manager/aidl/android/tpm_manager/
ITpmManagerClient.aidl 20 oneway void OnCommandResponse(in byte[] response_proto);
  /system/tpm/tpm_manager/client/
binder_proxy_helper.h 40 ResponseProtobufType response_proto; local
41 get_error_response_.Run(&response_proto);
42 callback_.Run(response_proto);
75 ResponseProtobufType response_proto; variable
76 if (!response_proto.ParseFromArray(response_proto_data.data(),
79 get_error_response_.Run(&response_proto);
81 callback_.Run(response_proto);
  /system/tpm/trunks/
trunks_binder_proxy.cc 43 trunks::SendCommandResponse response_proto; variable
44 if (!response_proto.ParseFromArray(response_proto_data.data(),
50 callback_.Run(response_proto.response());
113 trunks::SendCommandResponse response_proto; local
114 if (!response_proto.ParseFromArray(response_proto_data.data(),
119 return response_proto.response();
trunks_binder_service.cc 46 trunks::SendCommandResponse response_proto; local
47 response_proto.set_response(data);
48 response->resize(response_proto.ByteSize());
49 CHECK(response_proto.SerializeToArray(response->data(), response->size()))
  /external/autotest/client/site_tests/login_OwnershipTaken/
login_OwnershipTaken.py 40 response_proto = PolicyFetchResponse()
41 response_proto.ParseFromString(retrieved_policy)
42 ownership.assert_has_policy_data(response_proto)
45 poldata.ParseFromString(response_proto.policy_data)
  /external/autotest/client/common_lib/cros/
policy.py 50 response_proto = PolicyFetchResponse()
51 response_proto.ParseFromString(policy_response)
52 ownership.assert_has_policy_data(response_proto)
55 data_proto.ParseFromString(response_proto.policy_data)
  /external/tensorflow/tensorflow/core/distributed_runtime/
message_wrappers_test.cc 248 RunGraphResponse response_proto; local
249 NonOwnedProtoRunGraphResponse non_owned_proto_response(&response_proto);
277 RunStepResponse response_proto; local
278 NonOwnedProtoRunStepResponse response(&response_proto);
305 RunStepResponse response_proto; local
306 NonOwnedProtoRunStepResponse response(&response_proto);
336 RunStepResponse response_proto; local
337 NonOwnedProtoRunStepResponse response(&response_proto);
  /system/tpm/tpm_manager/server/
binder_service.cc 29 // Sends a |response_proto| to |client| for an arbitrary protobuf type.
33 const ResponseProtobufType& response_proto) {
36 binder_response.resize(response_proto.ByteSize());
37 CHECK(response_proto.SerializeToArray(binder_response.data(),
77 ResponseProtobufType response_proto; local
78 get_error_response.Run(&response_proto);
79 callback.Run(response_proto);
  /external/autotest/client/cros/
ownership.py 124 def assert_has_policy_data(response_proto):
127 @param response_proto: a PolicyFetchResponse protobuf.
130 if not response_proto.HasField("policy_data"):

Completed in 161 milliseconds