/src/usr.bin/tip/ |
acu.c | 71 int volatile tried; local in function:tip_connect 74 tried = 0; 114 tried++; 148 tried++; 152 if (!tried) { 156 return (tried ? "call failed" : "missing phone number");
|
/src/sys/miscfs/kernfs/ |
kernfs_vfsops.c | 97 static int tried = 0; local in function:kernfs_get_rrootdev 99 if (tried) { 103 tried = 1;
|
/src/sys/arch/arm/marvell/ |
mvsocrtc.c | 111 bool tried = false; local in function:mvsocrtc_todr_gettime 132 if (rtcsec == 0 && !tried) { 133 tried = true;
|
/src/lib/libedit/ |
read.c | 282 int tried = (el->el_flags & FIXIO) == 0; local in function:read_char 301 if (!tried && read__fixio(el->el_infd, e) == 0) { 303 tried = 1;
|
/src/games/rogue/ |
monster.c | 323 boolean tried[6]; local in function:mv_1_monster 396 for (i = 0; i <= 5; i++) tried[i] = 0; 402 if (!tried[n] && mtry(monster, row, monster->col-1)) { 407 if (!tried[n] && mtry(monster, row, monster->col)) { 412 if (!tried[n] && mtry(monster, row, monster->col+1)) { 417 if (!tried[n] && mtry(monster, monster->row-1, col)) { 422 if (!tried[n] && mtry(monster, monster->row, col)) { 427 if (!tried[n] && mtry(monster, monster->row+1, col)) { 432 if (!tried[n]) { 433 tried[n] = 1 [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/display/amdgpu_dm/ |
amdgpu_dm_mst_types.c | 687 bool tried[MAX_PIPES]; local in function:try_disable_dsc 696 tried[i] = false; 700 tried[i] = true; 708 if (!tried[i]) { 740 tried[next_index] = true;
|
/src/usr.sbin/iostat/ |
iostat.c | 939 int i, maxdrives, ndrives, tried; local in function:selectdrives 952 for (tried = ndrives = 0; *argv; ++argv) { 957 tried++; 975 if (ndrives == 0 && tried == 0) {
|