Lines Matching refs:response
72 void SocketCallbacks::handleHubInfoResponse(const fbs::HubInfoResponseT& response) { in handleHubInfoResponse() argument
74 LOG(VERBOSE) << "Hub Info name: " << getStringFromByteVector(response.name); in handleHubInfoResponse()
75 LOG(VERBOSE) << "Version : " << response.chre_platform_version; in handleHubInfoResponse()
76 LOG(VERBOSE) << "Legacy Platform Version: " << response.platform_version; in handleHubInfoResponse()
77 LOG(VERBOSE) << "Legacy Toolchain Version: " << response.toolchain_version; in handleHubInfoResponse()
78 LOG(VERBOSE) << "Peak Mips: " << response.peak_mips; in handleHubInfoResponse()
79 LOG(VERBOSE) << "Stopped Power: " << response.stopped_power; in handleHubInfoResponse()
80 LOG(VERBOSE) << "Sleep Power: " << response.sleep_power; in handleHubInfoResponse()
81 LOG(VERBOSE) << "Peak Power: " << response.peak_power; in handleHubInfoResponse()
82 LOG(VERBOSE) << "Platform ID: " << response.platform_id; in handleHubInfoResponse()
83 LOG(VERBOSE) << "Vendor : " << getStringFromByteVector(response.vendor); in handleHubInfoResponse()
84 LOG(VERBOSE) << "Toolchain : " << getStringFromByteVector(response.toolchain); in handleHubInfoResponse()
85 LOG(VERBOSE) << "maxMessageLen : " << response.max_msg_len; in handleHubInfoResponse()
86 if (response.max_msg_len < chre_constants::kMaxMessageLen) { in handleHubInfoResponse()
91 void SocketCallbacks::handleNanoappListResponse(const fbs::NanoappListResponseT& response) { in handleNanoappListResponse() argument
93 for (const std::unique_ptr<fbs::NanoappListEntryT>& nanoapp : response.nanoapps) { in handleNanoappListResponse()
105 void SocketCallbacks::handleLoadNanoappResponse(const fbs::LoadNanoappResponseT& response) { in handleLoadNanoappResponse() argument
107 LOG(VERBOSE) << "Transaction ID: " << response.transaction_id; in handleLoadNanoappResponse()
108 LOG(VERBOSE) << "Status: " << response.success; in handleLoadNanoappResponse()
111 void SocketCallbacks::handleUnloadNanoappResponse(const fbs::UnloadNanoappResponseT& response) { in handleUnloadNanoappResponse() argument
113 LOG(VERBOSE) << "Transaction ID: " << response.transaction_id; in handleUnloadNanoappResponse()
114 LOG(VERBOSE) << "Status: " << response.success; in handleUnloadNanoappResponse()