Home
last modified time | relevance | path

Searched refs:properties (Results 1 – 7 of 7) sorted by relevance

/NetX-Duo-v6.2.1/test/regression/azure_iot/
Dc2d_property_unit_test.c60 static VOID construct_c2d_packet(NX_PACKET **packet_pptr, PROPERTY *properties, UINT property_count,
140 static VOID construct_c2d_packet(NX_PACKET **packet_pptr, PROPERTY *properties, UINT property_count, in construct_c2d_packet() argument
154 … topic_length += properties[i].name_length + properties[i].value_length + 2; /* '=' and '&' */ in construct_c2d_packet()
189 … assert_int_equal(nx_packet_data_append(packet_ptr, properties[i].name, properties[i].name_length, in construct_c2d_packet()
195 …assert_int_equal(nx_packet_data_append(packet_ptr, properties[i].value, properties[i].value_length, in construct_c2d_packet()
250 PROPERTY properties[3]; in multiple_properties_test() local
303 properties[0] = property_random; in multiple_properties_test()
312 properties[0] = property_random; in multiple_properties_test()
313 properties[1] = property_0; in multiple_properties_test()
314 properties[2] = property_1; in multiple_properties_test()
[all …]
Dc2d_unit_test.c72 static VOID construct_c2d_packet(NX_PACKET **packet_pptr, PROPERTY *properties, UINT property_count,
174 static VOID construct_c2d_packet(NX_PACKET **packet_pptr, PROPERTY *properties, UINT property_count, in construct_c2d_packet() argument
188 … topic_length += properties[i].name_length + properties[i].value_length + 2; /* '=' and '&' */ in construct_c2d_packet()
223 … assert_int_equal(nx_packet_data_append(packet_ptr, properties[i].name, properties[i].name_length, in construct_c2d_packet()
229 …assert_int_equal(nx_packet_data_append(packet_ptr, properties[i].value, properties[i].value_length, in construct_c2d_packet()
Diot_provisioning_client_unit_test.c392 PROPERTY *properties, UINT property_count, in construct_provisioning_service_response() argument
406 … topic_length += properties[i].name_length + properties[i].value_length + 2; /* '=' and '&' */ in construct_provisioning_service_response()
441 …assert_int_equal(__real__nx_packet_data_append(packet_ptr, properties[i].name, properties[i].name_… in construct_provisioning_service_response()
447 …assert_int_equal(__real__nx_packet_data_append(packet_ptr, properties[i].value, properties[i].valu… in construct_provisioning_service_response()
/NetX-Duo-v6.2.1/addons/azure_iot/docs/
Dazure_rtos_iot_hub_client.md549 …, application owns the `NX_PACKET` and can add additional user-defined properties before sending o…
661properties to a telemetry message before it is being sent. This routine can be called multiple tim…
701 <p>This routine sends telemetry to IoTHub, with packet_ptr containing all the properties. On succes…
745 <p>This routine sends telemetry to IoTHub, with packet_ptr containing all the properties. On succes…
1376 <div style="text-align: right">Sets reported properties response callback function</div>
1391 …tion for reported properties. This callback function is invoked when a response is received from A…
1419 <div style="text-align: right">Send device twin reported properties to IoT Hub</div>
1430 <p>This routine sends device twin reported properties to IoT Hub.</p>
1437 | message_buffer [in] | JSON document containing the reported properties. |
1440 | response_status_ptr [out] | Status return for successful send of reported properties.|
[all …]
Dazure_rtos_iot_hub_client_properties.md16 <p>This routine appends the necessary characters to a reported properties JSON payload belonging to…
67 <p>This routine appends the necessary characters to end a reported properties JSON payload</p>
118 https://docs.microsoft.com/en-us/azure/iot-pnp/concepts-convention#writable-properties
254 | reader_ptr [in] | A pointer to a #NX_AZURE_IOT_JSON_READER containing properties document. |
256 | version_ptr [out] | The numeric version of the properties in JSON payload. |
286 <p>This routine gets the next writable or reported property in the properties document passed.</p>
331 | reader_ptr [in] | A pointer to a #NX_AZURE_IOT_JSON_READER containing properties document. |
/NetX-Duo-v6.2.1/scripts/
Dinstall.sh25 software-properties-common
/NetX-Duo-v6.2.1/addons/azure_iot/
Dnx_azure_iot_hub_client.c1617 core_result = az_iot_message_properties_find(&request.properties, span, &span); in nx_azure_iot_hub_client_cloud_message_property_get()