Home
last modified time | relevance | path

Searched refs:pCmdContext (Results 1 – 4 of 4) sorted by relevance

/CoreMQTT-Agent-v1.1.0/source/include/
Dcore_mqtt_agent.h147 …MQTTAgentCommandContext_t * pCmdContext; /**< @brief Context for completion callback. … member
/CoreMQTT-Agent-v1.1.0/test/unit-test/
Dmqtt_agent_utest.c1263 commandToSend.pCmdContext = NULL; in test_MQTTAgent_CommandLoop_process_commands_in_command_queue()
1306 commandToSend.pCmdContext = NULL; in test_MQTTAgent_CommandLoop_add_acknowledgment_success()
1347 commandToSend.pCmdContext = NULL; in test_MQTTAgent_CommandLoop_add_acknowledgment_failure()
1414 command.pCmdContext = NULL; in test_MQTTAgent_CommandLoop_add_acknowledgment_invalid_id()
1451 commandToSend.pCmdContext = NULL; in test_MQTTAgent_CommandLoop_with_eventCallback()
1656 commandToSend.pCmdContext = NULL; in test_MQTTAgent_CommandLoop_failure_executing_second_command()
1686 command.pCmdContext = &commandContext; in test_MQTTAgent_CancelAll()
1708 TEST_ASSERT_EQUAL( MQTTRecvFailed, command.pCmdContext->returnStatus ); in test_MQTTAgent_CancelAll()
/CoreMQTT-Agent-v1.1.0/docs/doxygen/
Dpages.dox87 void commandCompleteCallback( MQTTAgentCommandContext_t * pCmdContext, MQTTAgentReturnInfo_t * pRet…
89 pthread_mutex_lock( &( pCmdContext->lock ) );
91 pCmdContext->returnCode = pReturnInfo->returnCode;
92 pthread_mutex_unlock( &( pCmdContext->lock ) );
94 pthread_cond_broadcast( &( pCmdContext->cond ) );
/CoreMQTT-Agent-v1.1.0/source/
Dcore_mqtt_agent.c489 pCommand->pCmdContext = pCommandCompleteCallbackContext; in createCommand()
780 pCommand->pCommandCompleteCallback( pCommand->pCmdContext, &returnInfo ); in concludeCommand()