Lines Matching full:string
61 (x8/x16/x32/x64), "char", "string", "ustring", "symbol", "symstr"
89 String type is a special type, which fetches a "null-terminated" string from
90 kernel space. This means it will fail and store NULL if the string container
91 has been paged out. "ustring" type is an alternative of string for user-space.
94 The string array type is a bit different from other types. For other base
96 as +0(%di):x32.) But string[1] is not equal to string. The string type itself
97 represents "char array", but string array type represents "char * array".
98 So, for example, +0(%di):string[1] is equal to +0(+0(%di)):string.
106 On the other hand, symbol-string type ('symstr') converts the given address to
107 "symbol+offset/symbolsize" style and stores it as a null-terminated string.
110 For $comm, the default type is "string"; any other type is invalid.
123 user-space. You can use this for strings too, e.g. +u0(%si):string will read
124 a string from the address in the register %si that is expected to be in user-
126 +0(%si):ustring is equivalent to +u0(%si):string.
129 use it transparently. This means if you use normal dereference or string type