Searched refs:ioctl_table (Results 1 – 4 of 4) sorted by relevance
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | proc-api.c | 98 static struct trans ioctl_table[] = { variable 235 for (i = 0; ioctl_table[i].name != NULL; i++) in ioctl_with_trace() 236 if (ioctl_table[i].value == opcode) in ioctl_with_trace() 253 info_verbose ? ioctl_table[i].desc : ""); in ioctl_with_trace() 265 info_verbose ? ioctl_table[i].desc : ""); in ioctl_with_trace() 363 if (ioctl_table[i].name) in ioctl_with_trace() 366 ioctl_table[i].name, in ioctl_with_trace() 367 info_verbose ? ioctl_table[i].desc : ""); in ioctl_with_trace() 382 ioctl_table[i].name != NULL ? in ioctl_with_trace() 383 ioctl_table[i].name : "<unknown>", in ioctl_with_trace()
|
H A D | ChangeLog-2000 | 4389 (ioctl_table): Check that PIOCGETPR and PIOCGETU are defined.
|
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_interceptors_ioctl.inc | 34 static ioctl_desc ioctl_table[ioctl_table_max]; 44 ioctl_table[ioctl_table_size].req = IOCTL_##rq; \ 45 ioctl_table[ioctl_table_size].type = ioctl_desc::tp; \ 46 ioctl_table[ioctl_table_size].size = sz; \ 47 ioctl_table[ioctl_table_size].name = #rq; \ 489 if (ioctl_table[i].req >= ioctl_table[i + 1].req) { 491 ioctl_table[i].req, ioctl_table[i + 1].req, ioctl_table[i].name, 492 ioctl_table[i + 1].name); 524 if (ioctl_table[mid].req < req) 529 if (left == right && ioctl_table[left].req == req) [all …]
|
H A D | sanitizer_interceptors_ioctl_netbsd.inc | 28 static ioctl_desc ioctl_table[ioctl_table_max]; 38 ioctl_table[ioctl_table_size].req = IOCTL_##rq; \ 39 ioctl_table[ioctl_table_size].type = ioctl_desc::tp; \ 40 ioctl_table[ioctl_table_size].size = sz; \ 1421 Sort(ioctl_table, ioctl_table_size, ioctl_desc_compare()); 1425 if (ioctl_table[i].req >= ioctl_table[i + 1].req) { 1427 ioctl_table[i].req, ioctl_table[i + 1].req, ioctl_table[i].name, 1428 ioctl_table[i + 1].name); 1444 if (ioctl_table[mid].req < req) 1449 if (left == right && ioctl_table[left].req == req) [all …]
|