Lines Matching defs:recognizer
803 : CommandObjectParsed(interpreter, "frame recognizer add",
804 "Add a new frame recognizer.", nullptr) {
811 Adding a custom frame recognizer is possible by implementing a Python class
812 and using the 'frame recognizer add' command. The Python class should have a
818 An example of a recognizer that retrieves the file descriptor values from libc
831 import' and then we can register this recognizer with 'frame recognizer add'.
832 It's important to restrict the recognizer to the libc library (which is
837 (lldb) frame recognizer add -l fd_recognizer.LibcFdRecognizer -n read -s libsystem_kernel.dylib
840 can view the recognizer arguments in 'frame variable':
889 "before attempting to use this frame recognizer");
920 : CommandObjectParsed(interpreter, "frame recognizer clear",
963 // Base class for commands which accept a single frame recognizer as an argument
1003 result.AppendErrorWithFormat("'%s' is not a valid recognizer id.\n",
1017 interpreter, "frame recognizer enable",
1018 "Enable a frame recognizer by id.", nullptr) {
1029 result.AppendErrorWithFormat("'%u' is not a valid recognizer id.\n",
1042 interpreter, "frame recognizer disable",
1043 "Disable a frame recognizer by id.", nullptr) {
1054 result.AppendErrorWithFormat("'%u' is not a valid recognizer id.\n",
1067 interpreter, "frame recognizer delete",
1068 "Delete an existing frame recognizer by id.", nullptr) {
1079 result.AppendErrorWithFormat("'%u' is not a valid recognizer id.\n",
1090 : CommandObjectParsed(interpreter, "frame recognizer list",
1132 interpreter, "frame recognizer info",
1133 "Show which frame recognizer is applied a stack frame (if any).",
1172 auto recognizer =
1177 if (recognizer) {
1179 output_stream << recognizer->GetName();
1181 output_stream << "not recognized by any recognizer";
1192 interpreter, "frame recognizer",
1194 "frame recognizer [<sub-command-options>] ") {
1238 LoadSubCommand("recognizer", CommandObjectSP(new CommandObjectFrameRecognizer(