Lines Matching refs:union
174 Structure, union, and enumeration documentation
177 The general format of a struct, union, and enum kernel-doc comment is::
189 You can replace the ``struct`` in the above example with ``union`` or
191 and union member names as well as enumerations in an enum.
204 Inside a struct or union description, you can use the ``private:`` and argument
238 * @memb1: first member of anonymous union/anonymous struct
239 * @memb2: second member of anonymous union/anonymous struct
240 * @memb3: third member of anonymous union/anonymous struct
241 * @memb4: fourth member of anonymous union/anonymous struct
242 * @bar: non-anonymous union
245 * @bar.st1.memb1: first member of struct st1 on union bar
246 * @bar.st1.memb2: second member of struct st1 on union bar
247 * @bar.st2.memb1: first member of struct st2 on union bar
248 * @bar.st2.memb2: second member of struct st2 on union bar
251 /* Anonymous union/struct*/
252 union {
262 union {
276 #) When documenting nested structs or unions, if the struct/union ``foo``
279 #) When the nested struct/union is anonymous, the member ``bar`` in it
306 union {
431 Structure or union member reference. The cross-reference will be to the struct
432 or union definition, not the member directly.
443 Just end function names with ``()`` and write ``struct``, ``union``, ``enum``
449 See union bar.