Home | History | Annotate | Download | only in kdump

Lines Matching refs:ioctlinfo

119 static void	fmtprint(const char *, const struct ioctlinfo *ii);
141 static const struct ioctlinfo *find_ioctl(const char *);
159 const struct ioctlinfo *ii;
189 for (i = 0; ioctlinfo[i].name != NULL; i++) {
190 fmtprint(format, &ioctlinfo[i]);
360 fmtprint(const char *fmt, const struct ioctlinfo *ii)
1619 static const struct ioctlinfo *
1622 for (size_t i = 0; ioctlinfo[i].name != NULL; i++) {
1623 if (strcmp(name, ioctlinfo[i].name) == 0)
1624 return &ioctlinfo[i];
1629 static const struct ioctlinfo *
1632 for (size_t i = 0; ioctlinfo[i].name != NULL; i++) {
1633 if (value == ioctlinfo[i].value)
1634 return &ioctlinfo[i];
1639 static const struct ioctlinfo *