Home | History | Annotate | Download | only in client

Lines Matching defs:response

142   InterceptResponse response;
144 TEMP_FAILURE_RETRY(recv(set_timeout(sockfd.get()), &response, sizeof(response), MSG_TRUNC));
146 LOG(ERROR) << "libdebuggerd_client: failed to read response from tombstoned: timeout reached?";
148 } else if (rc != sizeof(response)) {
151 << sizeof(response) << ", received " << rc;
155 if (response.status != InterceptStatus::kRegistered) {
156 LOG(ERROR) << "libdebuggerd_client: unexpected registration response: "
157 << static_cast<int>(response.status);
165 rc = TEMP_FAILURE_RETRY(recv(set_timeout(sockfd.get()), &response, sizeof(response), MSG_TRUNC));
167 LOG(ERROR) << "libdebuggerd_client: failed to read response from tombstoned: timeout reached?";
169 } else if (rc != sizeof(response)) {
172 << sizeof(response) << ", received " << rc;
176 if (response.status != InterceptStatus::kStarted) {
177 response.error_message[sizeof(response.error_message) - 1] = '\0';
178 LOG(ERROR) << "libdebuggerd_client: tombstoned reported failure: " << response.error_message;