Home | History | Annotate | Download | only in gdb

Lines Matching defs:syscalls

34    syscalls information.  */
43 warning (_("Can not parse XML syscalls information; XML support was "
128 /* The syscalls that are part of the group. This is a non-owning
131 std::vector<syscall_desc *> syscalls;
136 /* Structure that represents syscalls information. */
139 /* The syscalls. */
141 std::vector<syscall_desc_up> syscalls;
207 groupdesc->syscalls.push_back (syscall);
218 syscalls_info->syscalls.emplace_back (sysdesc);
295 if (gdb_xml_parse_quick (_("syscalls info"), NULL,
303 warning (_("Could not load XML syscalls info; ignoring"));
309 about the syscalls. It reads the XML file and fills the
363 if (syscalls_info->syscalls.empty ())
413 for (const syscall_desc_up &sysdesc : syscalls_info->syscalls)
433 for (const syscall_desc_up &sysdesc : syscalls_info->syscalls)
448 int nsyscalls = syscalls_info->syscalls.size ();
452 for (i = 0; i < syscalls_info->syscalls.size (); i++)
453 names[i] = syscalls_info->syscalls[i]->name.c_str ();
461 syscalls that are part of the given group. If the syscall group
466 std::vector<int> *syscalls)
471 if (syscalls_info == NULL || syscalls == NULL)
478 for (const syscall_desc *sysdesc : groupdesc->syscalls)
479 syscalls->push_back (sysdesc->number);