Home
last modified time | relevance | path

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

/aosp_15_r20/external/aws-crt-java/src/native/
H A Djava_class_ids.c1861 struct java_aws_mqtt5_packet_qos_properties mqtt5_packet_qos_properties; variable
1866 mqtt5_packet_qos_properties.packet_qos_class = (*env)->NewGlobalRef(env, cls); in s_cache_mqtt5_packet_qos()
1867 AWS_FATAL_ASSERT(mqtt5_packet_qos_properties.packet_qos_class); in s_cache_mqtt5_packet_qos()
1869 mqtt5_packet_qos_properties.qos_get_value_id = in s_cache_mqtt5_packet_qos()
1870 (*env)->GetMethodID(env, mqtt5_packet_qos_properties.packet_qos_class, "getValue", "()I"); in s_cache_mqtt5_packet_qos()
1871 AWS_FATAL_ASSERT(mqtt5_packet_qos_properties.qos_get_value_id); in s_cache_mqtt5_packet_qos()
1873 mqtt5_packet_qos_properties.qos_s_get_enum_value_from_integer_id = (*env)->GetStaticMethodID( in s_cache_mqtt5_packet_qos()
1875 mqtt5_packet_qos_properties.packet_qos_class, in s_cache_mqtt5_packet_qos()
1878 AWS_FATAL_ASSERT(mqtt5_packet_qos_properties.qos_s_get_enum_value_from_integer_id); in s_cache_mqtt5_packet_qos()
H A Djava_class_ids.h776 extern struct java_aws_mqtt5_packet_qos_properties mqtt5_packet_qos_properties;
H A Dmqtt5_packets.c670 …jint jni_qos_value = (*env)->CallIntMethod(env, jni_qos, mqtt5_packet_qos_properties.qos_get_value… in s_get_qos_from_packet()