Filter: index array, sequences, implement bitwise binary operators
[lttng-modules.git] / probes / lttng-events-nowrite.h
index ff30759dd1e33802a744c8e1635836ab950c2a90..62e32393c0d066ef81849193b5b6a3b4384676d2 100644 (file)
        _ctf_integer_ext(_type, _item, _user_src, __BIG_ENDIAN, 16, 0, 1)
 
 #undef ctf_array_nowrite
-#define ctf_array_nowrite(_type, _item, _user_src, _length)    \
-       _ctf_array_encoded(_type, _item, _user_src, _length, none, 0, 1)
+#define ctf_array_nowrite(_type, _item, _src, _length)         \
+       _ctf_array_encoded(_type, _item, _src,                  \
+                       _length, none, __BYTE_ORDER, 10, 0, 1)
+
+#undef ctf_array_network_nowrite
+#define ctf_array_network_nowrite(_type, _item, _src, _length) \
+       _ctf_array_encoded(_type, _item, _src,                  \
+                       _length, none, __BIG_ENDIAN, 10, 0, 1)
 
 #undef ctf_array_text_nowrite
-#define ctf_array_text_nowrite(_type, _item, _user_src, _length) \
-       _ctf_array_encoded(_type, _item, _user_src, _length, UTF8, 0, 1)
+#define ctf_array_text_nowrite(_type, _item, _src, _length)    \
+       _ctf_array_encoded(_type, _item, _src,                  \
+                       _length, UTF8, __BYTE_ORDER, 10, 0, 1)
 
 #undef ctf_array_bitfield_nowrite
 #define ctf_array_bitfield_nowrite(_type, _item, _src, _length)        \
        _ctf_sequence_encoded(_type, _item, _user_src,          \
                        _length_type, _user_src_length, none, __BYTE_ORDER, 10, 0, 1)
 
+#undef ctf_sequence_network_nowrite
+#define ctf_sequence_network_nowrite(_type, _item, _user_src, _length_type, _user_src_length) \
+       _ctf_sequence_encoded(_type, _item, _user_src,          \
+                       _length_type, _user_src_length, none, __BIG_ENDIAN, 10, 0, 1)
+
 #undef ctf_sequence_text_nowrite
 #define ctf_sequence_text_nowrite(_type, _item, _user_src, _length_type, _user_src_length) \
        _ctf_sequence_encoded(_type, _item, _user_src,          \
        _ctf_integer_ext(_type, _item, _user_src, __BIG_ENDIAN, 16, 1, 1)
 
 #undef ctf_user_array_nowrite
-#define ctf_user_array_nowrite(_type, _item, _user_src, _length) \
-       _ctf_array_encoded(_type, _item, _user_src, _length, none, 1, 1)
+#define ctf_user_array_nowrite(_type, _item, _src, _length)    \
+       _ctf_array_encoded(_type, _item, _src,                  \
+                       _length, none, __BYTE_ORDER, 10, 1, 1)
+
+#undef ctf_user_array_network_nowrite
+#define ctf_user_array_network_nowrite(_type, _item, _src, _length) \
+       _ctf_array_encoded(_type, _item, _src,                  \
+                       _length, none, __BIG_ENDIAN, 10, 1, 1)
 
 #undef ctf_user_array_text_nowrite
-#define ctf_user_array_text_nowrite(_type, _item, _user_src, _length) \
-       _ctf_array_encoded(_type, _item, _user_src, _length, UTF8, 1, 1)
+#define ctf_user_array_text_nowrite(_type, _item, _src, _length) \
+       _ctf_array_encoded(_type, _item, _src,                  \
+                       _length, UTF8, __BYTE_ORDER, 10, 1, 1)
 
 #undef ctf_user_array_bitfield_nowrite
 #define ctf_user_array_bitfield_nowrite(_type, _item, _src, _length)   \
        _ctf_sequence_encoded(_type, _item, _user_src,          \
                        _length_type, _user_src_length, none, __BYTE_ORDER, 10, 1, 1)
 
+#undef ctf_user_sequence_network_nowrite
+#define ctf_user_sequence_network_nowrite(_type, _item, _user_src, _length_type, _user_src_length) \
+       _ctf_sequence_encoded(_type, _item, _user_src,          \
+                       _length_type, _user_src_length, none, __BIG_ENDIAN, 10, 1, 1)
+
 #undef ctf_user_sequence_text_nowrite
 #define ctf_user_sequence_text_nowrite(_type, _item, _user_src, _length_type, _user_src_length) \
        _ctf_sequence_encoded(_type, _item, _user_src,          \
This page took 0.024884 seconds and 4 git commands to generate.