Home
last modified time | relevance | path

Searched refs:responseError (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/examples/objc/AppRTCMobile/
DARDTURNClient.m73 NSError *responseError =
79 completionHandler(nil, responseError);
/external/openthread/src/ncp/
Dncp_base.cpp1292 otError responseError = OT_ERROR_NONE; in CommandHandler_PEEK() local
1306 SuccessOrExit(responseError = mEncoder.BeginFrame(aHeader, SPINEL_CMD_PEEK_RET)); in CommandHandler_PEEK()
1307 SuccessOrExit(responseError = mEncoder.WriteUint32(address)); in CommandHandler_PEEK()
1308 SuccessOrExit(responseError = mEncoder.WriteUint16(count)); in CommandHandler_PEEK()
1309 …SuccessOrExit(responseError = mEncoder.WriteData(reinterpret_cast<const uint8_t *>(address), count… in CommandHandler_PEEK()
1310 SuccessOrExit(responseError = mEncoder.EndFrame()); in CommandHandler_PEEK()
1315 responseError = PrepareLastStatusResponse(aHeader, ThreadErrorToSpinelStatus(parseError)); in CommandHandler_PEEK()
1318 return responseError; in CommandHandler_PEEK()
/external/openthread/src/core/net/
Ddns_client.cpp936 Error responseError; in ProcessResponse() local
946 SuccessOrExit(ParseResponse(response, type, responseError)); in ProcessResponse()
947 FinalizeQuery(response, type, responseError); in ProcessResponse()