Lines Matching refs:a
17 is also works only on the tracepoint entry. User can trace a part of
38 with a digit character, "_TRACEPOINT" is used.
47 @SYM[+|-offs] : Fetch memory at SYM +|- offs (SYM should be a data symbol)
64 (\*4) this is useful for fetching a field of data structures.
82 example, the ``count`` is unsigned long, and the ``pos`` is a pointer. Thus,
112 You can access the data fields of a data structure using allow operator ``->``
124 int a;
129 To access ``a`` and ``b``, use ``foo->a`` and ``foo->b`` in this case.
138 support, you don't need a memory dereference operator (``+0(PTR)``) for
139 accessing the string pointed by a ``PTR``. It automatically adds the memory
146 ``$retval->name`` is a char pointer in the data structure. But in both