Symbol: DEF
sys/arch/bebox/stand/boot/monitor.c
333
#define DEF(x) \
sys/arch/prep/stand/boot/monitor.c
333
#define DEF(x) \
sys/arch/rs6000/stand/boot/monitor.c
333
#define DEF(x) \
tests/dev/audio/audiotest.c
1413
#define DEF(name) \
tests/dev/audio/audiotest.c
1440
DEF(open_mode_RDONLY) { test_open_mode(O_RDONLY); }
tests/dev/audio/audiotest.c
1441
DEF(open_mode_WRONLY) { test_open_mode(O_WRONLY); }
tests/dev/audio/audiotest.c
1442
DEF(open_mode_RDWR) { test_open_mode(O_RDWR); }
tests/dev/audio/audiotest.c
1671
DEF(open_audio_RDONLY) { test_open("audio", O_RDONLY); }
tests/dev/audio/audiotest.c
1672
DEF(open_audio_WRONLY) { test_open("audio", O_WRONLY); }
tests/dev/audio/audiotest.c
1673
DEF(open_audio_RDWR) { test_open("audio", O_RDWR); }
tests/dev/audio/audiotest.c
1674
DEF(open_sound_RDONLY) { test_open("sound", O_RDONLY); }
tests/dev/audio/audiotest.c
1675
DEF(open_sound_WRONLY) { test_open("sound", O_WRONLY); }
tests/dev/audio/audiotest.c
1676
DEF(open_sound_RDWR) { test_open("sound", O_RDWR); }
tests/dev/audio/audiotest.c
1677
DEF(open_audioctl_RDONLY) { test_open("audioctl", O_RDONLY); }
tests/dev/audio/audiotest.c
1678
DEF(open_audioctl_WRONLY) { test_open("audioctl", O_WRONLY); }
tests/dev/audio/audiotest.c
1679
DEF(open_audioctl_RDWR) { test_open("audioctl", O_RDWR); }
tests/dev/audio/audiotest.c
1687
DEF(open_sound_sticky)
tests/dev/audio/audiotest.c
1730
DEF(open_audioctl_sticky)
tests/dev/audio/audiotest.c
1895
DEF(open_simul_RDONLY_RDONLY) { test_open_simul(O_RDONLY, O_RDONLY); }
tests/dev/audio/audiotest.c
1896
DEF(open_simul_RDONLY_WRONLY) { test_open_simul(O_RDONLY, O_WRONLY); }
tests/dev/audio/audiotest.c
1897
DEF(open_simul_RDONLY_RDWR) { test_open_simul(O_RDONLY, O_RDWR); }
tests/dev/audio/audiotest.c
1898
DEF(open_simul_WRONLY_RDONLY) { test_open_simul(O_WRONLY, O_RDONLY); }
tests/dev/audio/audiotest.c
1899
DEF(open_simul_WRONLY_WRONLY) { test_open_simul(O_WRONLY, O_WRONLY); }
tests/dev/audio/audiotest.c
1900
DEF(open_simul_WRONLY_RDWR) { test_open_simul(O_WRONLY, O_RDWR); }
tests/dev/audio/audiotest.c
1901
DEF(open_simul_RDWR_RDONLY) { test_open_simul(O_RDWR, O_RDONLY); }
tests/dev/audio/audiotest.c
1902
DEF(open_simul_RDWR_WRONLY) { test_open_simul(O_RDWR, O_WRONLY); }
tests/dev/audio/audiotest.c
1903
DEF(open_simul_RDWR_RDWR) { test_open_simul(O_RDWR, O_RDWR); }
tests/dev/audio/audiotest.c
2032
DEF(open_multiuser_0) { test_open_multiuser(false); }
tests/dev/audio/audiotest.c
2033
DEF(open_multiuser_1) { test_open_multiuser(true); }
tests/dev/audio/audiotest.c
2039
DEF(write_PLAY_ALL)
tests/dev/audio/audiotest.c
2068
DEF(write_PLAY)
tests/dev/audio/audiotest.c
2132
DEF(read)
tests/dev/audio/audiotest.c
2159
DEF(rept_write)
tests/dev/audio/audiotest.c
2205
DEF(rept_read)
tests/dev/audio/audiotest.c
2296
DEF(rdwr_fallback_RDONLY) { test_rdwr_fallback(O_RDONLY, false, true); }
tests/dev/audio/audiotest.c
2297
DEF(rdwr_fallback_WRONLY) { test_rdwr_fallback(O_WRONLY, true, false); }
tests/dev/audio/audiotest.c
2298
DEF(rdwr_fallback_RDWR) {
tests/dev/audio/audiotest.c
2417
DEF(rdwr_two_RDONLY_RDONLY) { test_rdwr_two(O_RDONLY, O_RDONLY); }
tests/dev/audio/audiotest.c
2418
DEF(rdwr_two_RDONLY_WRONLY) { test_rdwr_two(O_RDONLY, O_WRONLY); }
tests/dev/audio/audiotest.c
2419
DEF(rdwr_two_RDONLY_RDWR) { test_rdwr_two(O_RDONLY, O_RDWR); }
tests/dev/audio/audiotest.c
2420
DEF(rdwr_two_WRONLY_RDONLY) { test_rdwr_two(O_WRONLY, O_RDONLY); }
tests/dev/audio/audiotest.c
2421
DEF(rdwr_two_WRONLY_WRONLY) { test_rdwr_two(O_WRONLY, O_WRONLY); }
tests/dev/audio/audiotest.c
2422
DEF(rdwr_two_WRONLY_RDWR) { test_rdwr_two(O_WRONLY, O_RDWR); }
tests/dev/audio/audiotest.c
2423
DEF(rdwr_two_RDWR_RDONLY) { test_rdwr_two(O_RDWR, O_RDONLY); }
tests/dev/audio/audiotest.c
2424
DEF(rdwr_two_RDWR_WRONLY) { test_rdwr_two(O_RDWR, O_WRONLY); }
tests/dev/audio/audiotest.c
2425
DEF(rdwr_two_RDWR_RDWR) { test_rdwr_two(O_RDWR, O_RDWR); }
tests/dev/audio/audiotest.c
2431
DEF(rdwr_simul)
tests/dev/audio/audiotest.c
2492
DEF(drain_incomplete)
tests/dev/audio/audiotest.c
2525
DEF(drain_pause)
tests/dev/audio/audiotest.c
2556
DEF(drain_onrec)
tests/dev/audio/audiotest.c
2680
DEF(mmap_mode_RDONLY_NONE) { test_mmap_mode(O_RDONLY, PROT_NONE); }
tests/dev/audio/audiotest.c
2681
DEF(mmap_mode_RDONLY_READ) { test_mmap_mode(O_RDONLY, PROT_READ); }
tests/dev/audio/audiotest.c
2682
DEF(mmap_mode_RDONLY_WRITE) { test_mmap_mode(O_RDONLY, PROT_WRITE); }
tests/dev/audio/audiotest.c
2683
DEF(mmap_mode_RDONLY_READWRITE) { test_mmap_mode(O_RDONLY, PROT_READWRITE); }
tests/dev/audio/audiotest.c
2684
DEF(mmap_mode_WRONLY_NONE) { test_mmap_mode(O_WRONLY, PROT_NONE); }
tests/dev/audio/audiotest.c
2685
DEF(mmap_mode_WRONLY_READ) { test_mmap_mode(O_WRONLY, PROT_READ); }
tests/dev/audio/audiotest.c
2686
DEF(mmap_mode_WRONLY_WRITE) { test_mmap_mode(O_WRONLY, PROT_WRITE); }
tests/dev/audio/audiotest.c
2687
DEF(mmap_mode_WRONLY_READWRITE) { test_mmap_mode(O_WRONLY, PROT_READWRITE); }
tests/dev/audio/audiotest.c
2688
DEF(mmap_mode_RDWR_NONE) { test_mmap_mode(O_RDWR, PROT_NONE); }
tests/dev/audio/audiotest.c
2689
DEF(mmap_mode_RDWR_READ) { test_mmap_mode(O_RDWR, PROT_READ); }
tests/dev/audio/audiotest.c
2690
DEF(mmap_mode_RDWR_WRITE) { test_mmap_mode(O_RDWR, PROT_WRITE); }
tests/dev/audio/audiotest.c
2691
DEF(mmap_mode_RDWR_READWRITE) { test_mmap_mode(O_RDWR, PROT_READWRITE); }
tests/dev/audio/audiotest.c
2776
DEF(mmap_len_0) { f(0, 0, EINVAL); } /* len is 0 */
tests/dev/audio/audiotest.c
2777
DEF(mmap_len_1) { f(1, 0, 0); } /* len is smaller than lsize */
tests/dev/audio/audiotest.c
2778
DEF(mmap_len_2) { f(LS, 0, 0); } /* len is the same as lsize */
tests/dev/audio/audiotest.c
2779
DEF(mmap_len_3) { f(LS1, 0, EOVERFLOW); } /* len is larger */
tests/dev/audio/audiotest.c
2780
DEF(mmap_len_4) { f(0, -1, EINVAL); } /* offset is negative */
tests/dev/audio/audiotest.c
2781
DEF(mmap_len_5) { f(0, LS, EINVAL); } /* len is 0 */
tests/dev/audio/audiotest.c
2782
DEF(mmap_len_6) { f(0, LS1, EINVAL); } /* len is 0 */
tests/dev/audio/audiotest.c
2783
DEF(mmap_len_7) { f(1, LS, EOVERFLOW); } /* exceed */
tests/dev/audio/audiotest.c
2788
DEF(mmap_len_8) { f(LS, 1ULL << 32, EOVERFLOW); }
tests/dev/audio/audiotest.c
2794
DEF(mmap_twice)
tests/dev/audio/audiotest.c
2847
DEF(mmap_multi)
tests/dev/audio/audiotest.c
2972
DEF(poll_mode_RDONLY_IN) { test_poll_mode(O_RDONLY, IN, IN); }
tests/dev/audio/audiotest.c
2973
DEF(poll_mode_RDONLY_OUT) { test_poll_mode(O_RDONLY, OUT, 0); }
tests/dev/audio/audiotest.c
2974
DEF(poll_mode_RDONLY_INOUT) { test_poll_mode(O_RDONLY, IN|OUT, IN); }
tests/dev/audio/audiotest.c
2975
DEF(poll_mode_WRONLY_IN) { test_poll_mode(O_WRONLY, IN, 0); }
tests/dev/audio/audiotest.c
2976
DEF(poll_mode_WRONLY_OUT) { test_poll_mode(O_WRONLY, OUT, OUT); }
tests/dev/audio/audiotest.c
2977
DEF(poll_mode_WRONLY_INOUT) { test_poll_mode(O_WRONLY, IN|OUT, OUT); }
tests/dev/audio/audiotest.c
2978
DEF(poll_mode_RDWR_IN) {
tests/dev/audio/audiotest.c
2983
DEF(poll_mode_RDWR_OUT) { test_poll_mode(O_RDWR, OUT, OUT); }
tests/dev/audio/audiotest.c
2984
DEF(poll_mode_RDWR_INOUT) {
tests/dev/audio/audiotest.c
2993
DEF(poll_out_empty)
tests/dev/audio/audiotest.c
3020
DEF(poll_out_full)
tests/dev/audio/audiotest.c
3072
DEF(poll_out_hiwat)
tests/dev/audio/audiotest.c
3133
DEF(poll_out_unpause)
tests/dev/audio/audiotest.c
3254
DEF(poll_out_simul)
tests/dev/audio/audiotest.c
3458
DEF(poll_in_open_audio) { test_poll_in_open("audio"); }
tests/dev/audio/audiotest.c
3459
DEF(poll_in_open_sound) { test_poll_in_open("sound"); }
tests/dev/audio/audiotest.c
3460
DEF(poll_in_open_audioctl) { test_poll_in_open("audioctl"); }
tests/dev/audio/audiotest.c
3467
DEF(poll_in_simul)
tests/dev/audio/audiotest.c
3596
DEF(kqueue_mode_RDONLY_READ) {
tests/dev/audio/audiotest.c
3600
DEF(kqueue_mode_RDONLY_WRITE) {
tests/dev/audio/audiotest.c
3605
DEF(kqueue_mode_WRONLY_READ) {
tests/dev/audio/audiotest.c
3609
DEF(kqueue_mode_WRONLY_WRITE) {
tests/dev/audio/audiotest.c
3613
DEF(kqueue_mode_RDWR_READ) {
tests/dev/audio/audiotest.c
3618
DEF(kqueue_mode_RDWR_WRITE) {
tests/dev/audio/audiotest.c
3626
DEF(kqueue_empty)
tests/dev/audio/audiotest.c
3672
DEF(kqueue_full)
tests/dev/audio/audiotest.c
3737
DEF(kqueue_hiwat)
tests/dev/audio/audiotest.c
3810
DEF(kqueue_unpause)
tests/dev/audio/audiotest.c
3927
DEF(kqueue_simul)
tests/dev/audio/audiotest.c
4116
DEF(ioctl_while_write)
tests/dev/audio/audiotest.c
4176
DEF(FIOASYNC_reset)
tests/dev/audio/audiotest.c
4217
DEF(FIOASYNC_play_signal)
tests/dev/audio/audiotest.c
4270
DEF(FIOASYNC_rec_signal)
tests/dev/audio/audiotest.c
4315
DEF(FIOASYNC_multi)
tests/dev/audio/audiotest.c
4439
DEF(AUDIO_WSEEK)
tests/dev/audio/audiotest.c
4605
DEF(AUDIO_SETFD_RDONLY) { test_AUDIO_SETFD_xxONLY(O_RDONLY); }
tests/dev/audio/audiotest.c
4606
DEF(AUDIO_SETFD_WRONLY) { test_AUDIO_SETFD_xxONLY(O_WRONLY); }
tests/dev/audio/audiotest.c
4611
DEF(AUDIO_SETFD_RDWR)
tests/dev/audio/audiotest.c
4717
DEF(AUDIO_GETINFO_eof)
tests/dev/audio/audiotest.c
4957
DEF(AUDIO_SETINFO_mode_RDONLY_0) { f(O_RDONLY, 0); }
tests/dev/audio/audiotest.c
4958
DEF(AUDIO_SETINFO_mode_RDONLY_1) { f(O_RDONLY, 1); }
tests/dev/audio/audiotest.c
4959
DEF(AUDIO_SETINFO_mode_RDONLY_2) { f(O_RDONLY, 2); }
tests/dev/audio/audiotest.c
4960
DEF(AUDIO_SETINFO_mode_RDONLY_3) { f(O_RDONLY, 3); }
tests/dev/audio/audiotest.c
4961
DEF(AUDIO_SETINFO_mode_RDONLY_4) { f(O_RDONLY, 4); }
tests/dev/audio/audiotest.c
4962
DEF(AUDIO_SETINFO_mode_RDONLY_5) { f(O_RDONLY, 5); }
tests/dev/audio/audiotest.c
4963
DEF(AUDIO_SETINFO_mode_RDONLY_6) { f(O_RDONLY, 6); }
tests/dev/audio/audiotest.c
4964
DEF(AUDIO_SETINFO_mode_RDONLY_7) { f(O_RDONLY, 7); }
tests/dev/audio/audiotest.c
4965
DEF(AUDIO_SETINFO_mode_RDONLY_8) { f(O_RDONLY, 8); }
tests/dev/audio/audiotest.c
4966
DEF(AUDIO_SETINFO_mode_WRONLY_0) { f(O_WRONLY, 0); }
tests/dev/audio/audiotest.c
4967
DEF(AUDIO_SETINFO_mode_WRONLY_1) { f(O_WRONLY, 1); }
tests/dev/audio/audiotest.c
4968
DEF(AUDIO_SETINFO_mode_WRONLY_2) { f(O_WRONLY, 2); }
tests/dev/audio/audiotest.c
4969
DEF(AUDIO_SETINFO_mode_WRONLY_3) { f(O_WRONLY, 3); }
tests/dev/audio/audiotest.c
4970
DEF(AUDIO_SETINFO_mode_WRONLY_4) { f(O_WRONLY, 4); }
tests/dev/audio/audiotest.c
4971
DEF(AUDIO_SETINFO_mode_WRONLY_5) { f(O_WRONLY, 5); }
tests/dev/audio/audiotest.c
4972
DEF(AUDIO_SETINFO_mode_WRONLY_6) { f(O_WRONLY, 6); }
tests/dev/audio/audiotest.c
4973
DEF(AUDIO_SETINFO_mode_WRONLY_7) { f(O_WRONLY, 7); }
tests/dev/audio/audiotest.c
4974
DEF(AUDIO_SETINFO_mode_WRONLY_8) { f(O_WRONLY, 8); }
tests/dev/audio/audiotest.c
5014
DEF(AUDIO_SETINFO_mode_RDWR_0) { f(0); }
tests/dev/audio/audiotest.c
5015
DEF(AUDIO_SETINFO_mode_RDWR_1) { f(1); }
tests/dev/audio/audiotest.c
5016
DEF(AUDIO_SETINFO_mode_RDWR_2) { f(2); }
tests/dev/audio/audiotest.c
5017
DEF(AUDIO_SETINFO_mode_RDWR_3) { f(3); }
tests/dev/audio/audiotest.c
5018
DEF(AUDIO_SETINFO_mode_RDWR_4) { f(4); }
tests/dev/audio/audiotest.c
5019
DEF(AUDIO_SETINFO_mode_RDWR_5) { f(5); }
tests/dev/audio/audiotest.c
5020
DEF(AUDIO_SETINFO_mode_RDWR_6) { f(6); }
tests/dev/audio/audiotest.c
5021
DEF(AUDIO_SETINFO_mode_RDWR_7) { f(7); }
tests/dev/audio/audiotest.c
5022
DEF(AUDIO_SETINFO_mode_RDWR_8) { f(8); }
tests/dev/audio/audiotest.c
5091
DEF(AUDIO_SETINFO_params_set_RDONLY_0) { f(O_RDONLY, 0, 0); }
tests/dev/audio/audiotest.c
5092
DEF(AUDIO_SETINFO_params_set_RDONLY_1) { f(O_RDONLY, 0, 1); }
tests/dev/audio/audiotest.c
5097
DEF(AUDIO_SETINFO_params_set_WRONLY_0) { f(O_WRONLY, 0, 0); }
tests/dev/audio/audiotest.c
5098
DEF(AUDIO_SETINFO_params_set_WRONLY_1) { f(O_WRONLY, 0, 1); }
tests/dev/audio/audiotest.c
5099
DEF(AUDIO_SETINFO_params_set_WRONLY_2) { f(O_WRONLY, 1, 0); }
tests/dev/audio/audiotest.c
5100
DEF(AUDIO_SETINFO_params_set_WRONLY_3) { f(O_WRONLY, 1, 1); }
tests/dev/audio/audiotest.c
5101
DEF(AUDIO_SETINFO_params_set_RDWR_0) { f(O_RDWR, 0, 0); }
tests/dev/audio/audiotest.c
5102
DEF(AUDIO_SETINFO_params_set_RDWR_1) { f(O_RDWR, 0, 1); }
tests/dev/audio/audiotest.c
5103
DEF(AUDIO_SETINFO_params_set_RDWR_2) { f(O_RDWR, 1, 0); }
tests/dev/audio/audiotest.c
5104
DEF(AUDIO_SETINFO_params_set_RDWR_3) { f(O_RDWR, 1, 1); }
tests/dev/audio/audiotest.c
5113
DEF(AUDIO_SETINFO_params_simul)
tests/dev/audio/audiotest.c
5191
DEF(AUDIO_SETINFO_channels)
tests/dev/audio/audiotest.c
5306
DEF(AUDIO_SETINFO_sample_rate)
tests/dev/audio/audiotest.c
5371
DEF(AUDIO_SETINFO_sample_rate_0)
tests/dev/audio/audiotest.c
5487
DEF(AUDIO_SETINFO_pause_RDONLY_0) { test_AUDIO_SETINFO_pause(O_RDONLY, 0, 0); }
tests/dev/audio/audiotest.c
5488
DEF(AUDIO_SETINFO_pause_RDONLY_1) { test_AUDIO_SETINFO_pause(O_RDONLY, 0, 1); }
tests/dev/audio/audiotest.c
5493
DEF(AUDIO_SETINFO_pause_WRONLY_0) { test_AUDIO_SETINFO_pause(O_WRONLY, 0, 0); }
tests/dev/audio/audiotest.c
5494
DEF(AUDIO_SETINFO_pause_WRONLY_1) { test_AUDIO_SETINFO_pause(O_WRONLY, 0, 1); }
tests/dev/audio/audiotest.c
5495
DEF(AUDIO_SETINFO_pause_WRONLY_2) { test_AUDIO_SETINFO_pause(O_WRONLY, 1, 0); }
tests/dev/audio/audiotest.c
5496
DEF(AUDIO_SETINFO_pause_WRONLY_3) { test_AUDIO_SETINFO_pause(O_WRONLY, 1, 1); }
tests/dev/audio/audiotest.c
5497
DEF(AUDIO_SETINFO_pause_RDWR_0) { test_AUDIO_SETINFO_pause(O_RDWR, 0, 0); }
tests/dev/audio/audiotest.c
5498
DEF(AUDIO_SETINFO_pause_RDWR_1) { test_AUDIO_SETINFO_pause(O_RDWR, 0, 1); }
tests/dev/audio/audiotest.c
5499
DEF(AUDIO_SETINFO_pause_RDWR_2) { test_AUDIO_SETINFO_pause(O_RDWR, 1, 0); }
tests/dev/audio/audiotest.c
5500
DEF(AUDIO_SETINFO_pause_RDWR_3) { test_AUDIO_SETINFO_pause(O_RDWR, 1, 1); }
tests/dev/audio/audiotest.c
5507
DEF(AUDIO_SETINFO_gain)
tests/dev/audio/audiotest.c
5716
DEF(AUDIO_SETINFO_gain_balance)
tests/dev/audio/audiotest.c
5879
DEF(AUDIO_SETINFO_mmap_enc)
tests/dev/audio/audiotest.c
5923
DEF(AUDIO_SETINFO_mmap_pause)
tests/dev/audio/audiotest.c
6167
DEF(AUDIO_GETENC_range)
tests/dev/audio/audiotest.c
6225
DEF(AUDIO_GETENC_error)
tests/dev/audio/audiotest.c
6281
DEF(AUDIO_ERROR_RDONLY) { test_AUDIO_ERROR(O_RDONLY); }
tests/dev/audio/audiotest.c
6282
DEF(AUDIO_ERROR_WRONLY) { test_AUDIO_ERROR(O_WRONLY); }
tests/dev/audio/audiotest.c
6283
DEF(AUDIO_ERROR_RDWR) { test_AUDIO_ERROR(O_RDWR); }
tests/dev/audio/audiotest.c
6368
DEF(AUDIO_GETIOFFS_one_RDONLY) { test_AUDIO_GETIOFFS_one(O_RDONLY); }
tests/dev/audio/audiotest.c
6369
DEF(AUDIO_GETIOFFS_one_WRONLY) { test_AUDIO_GETIOFFS_one(O_WRONLY); }
tests/dev/audio/audiotest.c
6370
DEF(AUDIO_GETIOFFS_one_RDWR) { test_AUDIO_GETIOFFS_one(O_RDWR); }
tests/dev/audio/audiotest.c
6490
DEF(AUDIO_GETOOFFS_one_RDONLY) { test_AUDIO_GETOOFFS_one(O_RDONLY); }
tests/dev/audio/audiotest.c
6491
DEF(AUDIO_GETOOFFS_one_WRONLY) { test_AUDIO_GETOOFFS_one(O_WRONLY); }
tests/dev/audio/audiotest.c
6492
DEF(AUDIO_GETOOFFS_one_RDWR) { test_AUDIO_GETOOFFS_one(O_RDWR); }
tests/dev/audio/audiotest.c
6614
DEF(AUDIO_GETOOFFS_wrap_RDONLY) { test_AUDIO_GETOOFFS_wrap(O_RDONLY); }
tests/dev/audio/audiotest.c
6615
DEF(AUDIO_GETOOFFS_wrap_WRONLY) { test_AUDIO_GETOOFFS_wrap(O_WRONLY); }
tests/dev/audio/audiotest.c
6616
DEF(AUDIO_GETOOFFS_wrap_RDWR) { test_AUDIO_GETOOFFS_wrap(O_RDWR); }
tests/dev/audio/audiotest.c
6741
DEF(AUDIO_GETOOFFS_flush_RDONLY) { test_AUDIO_GETOOFFS_flush(O_RDONLY); }
tests/dev/audio/audiotest.c
6742
DEF(AUDIO_GETOOFFS_flush_WRONLY) { test_AUDIO_GETOOFFS_flush(O_WRONLY); }
tests/dev/audio/audiotest.c
6743
DEF(AUDIO_GETOOFFS_flush_RDWR) { test_AUDIO_GETOOFFS_flush(O_RDWR); }
tests/dev/audio/audiotest.c
6828
DEF(AUDIO_GETOOFFS_set_RDONLY) { test_AUDIO_GETOOFFS_set(O_RDONLY); }
tests/dev/audio/audiotest.c
6829
DEF(AUDIO_GETOOFFS_set_WRONLY) { test_AUDIO_GETOOFFS_set(O_WRONLY); }
tests/dev/audio/audiotest.c
6830
DEF(AUDIO_GETOOFFS_set_RDWR) { test_AUDIO_GETOOFFS_set(O_RDWR); }
tests/dev/audio/audiotest.c
6865
DEF(audioctl_open_1_RDONLY_RDONLY) { test_audioctl_open_1(O_RDONLY, O_RDONLY); }
tests/dev/audio/audiotest.c
6866
DEF(audioctl_open_1_RDONLY_RWONLY) { test_audioctl_open_1(O_RDONLY, O_WRONLY); }
tests/dev/audio/audiotest.c
6867
DEF(audioctl_open_1_RDONLY_RDWR) { test_audioctl_open_1(O_RDONLY, O_RDWR); }
tests/dev/audio/audiotest.c
6868
DEF(audioctl_open_1_WRONLY_RDONLY) { test_audioctl_open_1(O_WRONLY, O_RDONLY); }
tests/dev/audio/audiotest.c
6869
DEF(audioctl_open_1_WRONLY_RWONLY) { test_audioctl_open_1(O_WRONLY, O_WRONLY); }
tests/dev/audio/audiotest.c
6870
DEF(audioctl_open_1_WRONLY_RDWR) { test_audioctl_open_1(O_WRONLY, O_RDWR); }
tests/dev/audio/audiotest.c
6871
DEF(audioctl_open_1_RDWR_RDONLY) { test_audioctl_open_1(O_RDWR, O_RDONLY); }
tests/dev/audio/audiotest.c
6872
DEF(audioctl_open_1_RDWR_RWONLY) { test_audioctl_open_1(O_RDWR, O_WRONLY); }
tests/dev/audio/audiotest.c
6873
DEF(audioctl_open_1_RDWR_RDWR) { test_audioctl_open_1(O_RDWR, O_RDWR); }
tests/dev/audio/audiotest.c
6908
DEF(audioctl_open_2_RDONLY_RDONLY) { test_audioctl_open_2(O_RDONLY, O_RDONLY); }
tests/dev/audio/audiotest.c
6909
DEF(audioctl_open_2_RDONLY_RWONLY) { test_audioctl_open_2(O_RDONLY, O_WRONLY); }
tests/dev/audio/audiotest.c
6910
DEF(audioctl_open_2_RDONLY_RDWR) { test_audioctl_open_2(O_RDONLY, O_RDWR); }
tests/dev/audio/audiotest.c
6911
DEF(audioctl_open_2_WRONLY_RDONLY) { test_audioctl_open_2(O_WRONLY, O_RDONLY); }
tests/dev/audio/audiotest.c
6912
DEF(audioctl_open_2_WRONLY_RWONLY) { test_audioctl_open_2(O_WRONLY, O_WRONLY); }
tests/dev/audio/audiotest.c
6913
DEF(audioctl_open_2_WRONLY_RDWR) { test_audioctl_open_2(O_WRONLY, O_RDWR); }
tests/dev/audio/audiotest.c
6914
DEF(audioctl_open_2_RDWR_RDONLY) { test_audioctl_open_2(O_RDWR, O_RDONLY); }
tests/dev/audio/audiotest.c
6915
DEF(audioctl_open_2_RDWR_RWONLY) { test_audioctl_open_2(O_RDWR, O_WRONLY); }
tests/dev/audio/audiotest.c
6916
DEF(audioctl_open_2_RDWR_RDWR) { test_audioctl_open_2(O_RDWR, O_RDWR); }
tests/dev/audio/audiotest.c
6921
DEF(audioctl_open_simul)
tests/dev/audio/audiotest.c
7033
DEF(audioctl_open_multiuser0_audio1) {
tests/dev/audio/audiotest.c
7037
DEF(audioctl_open_multiuser1_audio1) {
tests/dev/audio/audiotest.c
7041
DEF(audioctl_open_multiuser0_audio2) {
tests/dev/audio/audiotest.c
7045
DEF(audioctl_open_multiuser1_audio2) {
tests/dev/audio/audiotest.c
7049
DEF(audioctl_open_multiuser0_audioctl) {
tests/dev/audio/audiotest.c
7053
DEF(audioctl_open_multiuser1_audioctl) {
tests/dev/audio/audiotest.c
7086
DEF(audioctl_rw_RDONLY) { test_audioctl_rw(O_RDONLY); }
tests/dev/audio/audiotest.c
7087
DEF(audioctl_rw_WRONLY) { test_audioctl_rw(O_WRONLY); }
tests/dev/audio/audiotest.c
7088
DEF(audioctl_rw_RDWR) { test_audioctl_rw(O_RDWR); }
tests/dev/audio/audiotest.c
7096
DEF(audioctl_poll)
tests/dev/audio/audiotest.c
7123
DEF(audioctl_kqueue)
usr.bin/xlint/common/lint.h
152
DEF /* defined */