Symbol: bell
distrib/utils/more/command.c
139
bell();
distrib/utils/more/command.c
570
bell();
distrib/utils/more/extern.h
132
void bell __P((void));
games/dab/board.cc
206
_scrn->bell();
games/dab/board.h
70
void bell(void) const; // Beep!
games/dab/gamescreen.h
65
virtual void bell(void) = 0; // Beep
games/dab/player.cc
82
b.bell();
games/dab/ttyscrn.h
53
void bell(void);
lib/libcurses/bell.c
47
if (bell != NULL) {
lib/libcurses/bell.c
49
tputs(bell, 0, __cputchar);
lib/libcurses/bell.c
67
} else if (bell != NULL) {
lib/libcurses/bell.c
69
tputs(bell, 0, __cputchar);
sbin/wsconsctl/keyboard.c
124
bell.which = 0;
sbin/wsconsctl/keyboard.c
125
if (field_by_value(&bell.pitch)->flags & FLG_GET)
sbin/wsconsctl/keyboard.c
126
bell.which |= WSKBD_BELL_DOPITCH;
sbin/wsconsctl/keyboard.c
127
if (field_by_value(&bell.period)->flags & FLG_GET)
sbin/wsconsctl/keyboard.c
128
bell.which |= WSKBD_BELL_DOPERIOD;
sbin/wsconsctl/keyboard.c
129
if (field_by_value(&bell.volume)->flags & FLG_GET)
sbin/wsconsctl/keyboard.c
130
bell.which |= WSKBD_BELL_DOVOLUME;
sbin/wsconsctl/keyboard.c
131
if (bell.which != 0 && ioctl(fd, WSKBDIO_GETBELL, &bell) < 0)
sbin/wsconsctl/keyboard.c
208
bell.which = 0;
sbin/wsconsctl/keyboard.c
209
if (field_by_value(&bell.pitch)->flags & FLG_SET)
sbin/wsconsctl/keyboard.c
210
bell.which |= WSKBD_BELL_DOPITCH;
sbin/wsconsctl/keyboard.c
211
if (field_by_value(&bell.period)->flags & FLG_SET)
sbin/wsconsctl/keyboard.c
212
bell.which |= WSKBD_BELL_DOPERIOD;
sbin/wsconsctl/keyboard.c
213
if (field_by_value(&bell.volume)->flags & FLG_SET)
sbin/wsconsctl/keyboard.c
214
bell.which |= WSKBD_BELL_DOVOLUME;
sbin/wsconsctl/keyboard.c
215
if (bell.which != 0 && ioctl(fd, WSKBDIO_SETBELL, &bell) < 0)
sbin/wsconsctl/keyboard.c
217
if (bell.which & WSKBD_BELL_DOPITCH)
sbin/wsconsctl/keyboard.c
218
pr_field(field_by_value(&bell.pitch), " -> ");
sbin/wsconsctl/keyboard.c
219
if (bell.which & WSKBD_BELL_DOPERIOD)
sbin/wsconsctl/keyboard.c
220
pr_field(field_by_value(&bell.period), " -> ");
sbin/wsconsctl/keyboard.c
221
if (bell.which & WSKBD_BELL_DOVOLUME)
sbin/wsconsctl/keyboard.c
222
pr_field(field_by_value(&bell.volume), " -> ");
sbin/wsconsctl/keyboard.c
47
static struct wskbd_bell_data bell;
sbin/wsconsctl/keyboard.c
66
{ "bell.pitch", &bell.pitch, FMT_UINT, FLG_MODIFY },
sbin/wsconsctl/keyboard.c
67
{ "bell.period", &bell.period, FMT_UINT, FLG_MODIFY },
sbin/wsconsctl/keyboard.c
68
{ "bell.volume", &bell.volume, FMT_UINT, FLG_MODIFY },
sys/arch/hp300/dev/dnkbd.c
235
.bell = dnkbd_bell
sys/arch/luna68k/dev/lunaws.c
166
.bell = ws_cnbell,
sys/dev/dec/lk201_ws.c
198
lk201_bell(struct lk201_state *lks, struct wskbd_bell_data *bell)
sys/dev/dec/lk201_ws.c
202
if (bell->which & WSKBD_BELL_DOVOLUME) {
sys/dev/dec/lk201_ws.c
203
vol = 8 - bell->volume * 8 / 100;
sys/dev/hil/hilkbd.c
94
.bell = hilkbd_cnbell,
sys/dev/hyperv/hvkbd.c
174
.bell = NULL,
sys/dev/i2c/ikbd.c
58
.bell = NULL,
sys/dev/pci/xmm7360.c
598
static void xmm7360_ding(struct xmm_dev *xmm, int bell)
sys/dev/pci/xmm7360.c
602
xmm->bar0[BAR0_DOORBELL] = bell;
sys/dev/pckbport/pckbd.c
150
.bell = pckbd_cnbell,
sys/dev/usb/ukbd.c
343
.bell = NULL,
sys/dev/wscons/wscons_callbacks.h
56
void (*bell)(dev_t, u_int, u_int, u_int));
sys/dev/wscons/wsdisplay.c
2389
void (*bell)(dev_t, u_int, u_int, u_int))
sys/dev/wscons/wsdisplay.c
2391
wsdisplay_cons.cn_bell = bell;
sys/dev/wscons/wskbd.c
1465
if (wskbd_console_data.t_consops->bell != NULL)
sys/dev/wscons/wskbd.c
1466
(*wskbd_console_data.t_consops->bell)
sys/dev/wscons/wskbdvar.h
62
void (*bell)(void *, u_int, u_int, u_int);
usr.bin/ftp/cmds.c
828
onoff(verbose), onoff(bell), onoff(interactive), onoff(doglob));
usr.bin/ftp/cmds.c
912
code = togglevar(argc, argv, &bell, "Bell mode");
usr.bin/ftp/domacro.c
133
if (bell && c->c_bell)
usr.bin/ftp/ftp_var.h
211
GLOBAL int bell; /* ring bell on cmd completion */
usr.bin/ftp/main.c
759
if (bell && c->c_bell)