1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665
|
libasound.so.2 libasound2 #MINVER#
ALSA_0.9.0@ALSA_0.9.0 1.0.16
ALSA_0.9.0rc4@ALSA_0.9.0rc4 1.0.16
ALSA_0.9.0rc8@ALSA_0.9.0rc8 1.0.16
ALSA_0.9.3@ALSA_0.9.3 1.0.16
ALSA_0.9.5@ALSA_0.9.5 1.0.16
ALSA_0.9.7@ALSA_0.9.7 1.0.16
ALSA_0.9@ALSA_0.9 1.0.16
__snd_ctl_hw_open_dlsym_control_001@ALSA_0.9 1.0.16
__snd_ctl_shm_open_dlsym_control_001@ALSA_0.9 1.0.16
__snd_hwdep_hw_open_dlsym_hwdep_001@ALSA_0.9 1.0.16
__snd_pcm_adpcm_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_alaw_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_asym_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_copy_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_dmix_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_dshare_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_dsnoop_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_empty_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_file_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_hook_ctl_elems_install_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_hooks_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_hw_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_access@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_buffer_size@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_buffer_size_max@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_buffer_size_min@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_buffer_time@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_buffer_time_max@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_buffer_time_min@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_channels@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_channels_max@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_channels_min@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_format@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_period_size@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_period_size_max@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_period_size_min@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_period_time@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_period_time_max@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_period_time_min@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_periods@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_periods_max@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_periods_min@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_rate@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_rate_max@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_rate_min@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_subformat@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_tick_time@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_tick_time_max@ALSA_0.9 1.0.16
__snd_pcm_hw_params_get_tick_time_min@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_access_first@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_access_last@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_buffer_size_first@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_buffer_size_last@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_buffer_size_near@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_buffer_time_first@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_buffer_time_last@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_buffer_time_near@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_channels_first@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_channels_last@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_channels_near@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_format_first@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_format_last@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_period_size_first@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_period_size_last@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_period_size_near@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_period_time_first@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_period_time_last@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_period_time_near@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_periods_first@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_periods_last@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_periods_near@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_rate_first@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_rate_last@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_rate_near@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_subformat_first@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_subformat_last@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_tick_time_first@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_tick_time_last@ALSA_0.9 1.0.16
__snd_pcm_hw_params_set_tick_time_near@ALSA_0.9 1.0.16
__snd_pcm_iec958_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_ladspa_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_lfloat_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_linear_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_meter_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_mmap_emul_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_mulaw_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_multi_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_null_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_plug_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_rate_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_route_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_share_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_shm_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_softvol_open_dlsym_pcm_001@ALSA_0.9 1.0.16
__snd_pcm_sw_params_get_avail_min@ALSA_0.9 1.0.16
__snd_pcm_sw_params_get_silence_size@ALSA_0.9 1.0.16
__snd_pcm_sw_params_get_silence_threshold@ALSA_0.9 1.0.16
__snd_pcm_sw_params_get_sleep_min@ALSA_0.9 1.0.16
__snd_pcm_sw_params_get_start_threshold@ALSA_0.9 1.0.16
__snd_pcm_sw_params_get_stop_threshold@ALSA_0.9 1.0.16
__snd_pcm_sw_params_get_tstamp_mode@ALSA_0.9 1.0.16
__snd_pcm_sw_params_get_xfer_align@ALSA_0.9 1.0.16
__snd_rawmidi_hw_open_dlsym_rawmidi_001@ALSA_0.9 1.0.16
__snd_rawmidi_virtual_open_dlsym_rawmidi_001@ALSA_0.9 1.0.16
__snd_seq_hw_open_dlsym_seq_001@ALSA_0.9 1.0.16
__snd_timer_hw_open_dlsym_timer_001@ALSA_0.9 1.0.16
__snd_timer_query_hw_open_dlsym_timer_query_001@ALSA_0.9 1.0.16
_snd_config_hook_load_dlsym_config_hook_001@ALSA_0.9 1.0.16
_snd_config_hook_load_for_all_cards_dlsym_config_hook_001@ALSA_0.9 1.0.16
_snd_ctl_hw_open@ALSA_0.9 1.0.16
_snd_ctl_poll_descriptor@ALSA_0.9 1.0.16
_snd_ctl_shm_open@ALSA_0.9 1.0.16
_snd_func_card_driver_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_card_id_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_card_inum_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_card_name_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_concat_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_datadir_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_getenv_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_iadd_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_igetenv_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_imul_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_pcm_args_by_class_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_pcm_id_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_private_card_driver_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_private_pcm_subdevice_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_private_string_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_func_refer_dlsym_config_evaluate_001@ALSA_0.9 1.0.16
_snd_hwdep_hw_open@ALSA_0.9 1.0.16
_snd_pcm_adpcm_open@ALSA_0.9 1.0.16
_snd_pcm_alaw_open@ALSA_0.9 1.0.16
_snd_pcm_asym_open@ALSA_0.9 1.0.16
_snd_pcm_copy_open@ALSA_0.9 1.0.16
_snd_pcm_dmix_open@ALSA_0.9 1.0.16
_snd_pcm_dshare_open@ALSA_0.9 1.0.16
_snd_pcm_dsnoop_open@ALSA_0.9 1.0.16
_snd_pcm_empty_open@ALSA_0.9 1.0.16
_snd_pcm_file_open@ALSA_0.9 1.0.16
_snd_pcm_hook_ctl_elems_install@ALSA_0.9 1.0.16
_snd_pcm_hooks_open@ALSA_0.9 1.0.16
_snd_pcm_hw_open@ALSA_0.9 1.0.16
_snd_pcm_iec958_open@ALSA_0.9 1.0.16
_snd_pcm_ladspa_open@ALSA_0.9 1.0.16
_snd_pcm_lfloat_open@ALSA_0.9 1.0.16
_snd_pcm_linear_open@ALSA_0.9 1.0.16
_snd_pcm_meter_open@ALSA_0.9 1.0.16
_snd_pcm_mmap_emul_open@ALSA_0.9 1.0.16
_snd_pcm_mulaw_open@ALSA_0.9 1.0.16
_snd_pcm_multi_open@ALSA_0.9 1.0.16
_snd_pcm_null_open@ALSA_0.9 1.0.16
_snd_pcm_plug_open@ALSA_0.9 1.0.16
_snd_pcm_poll_descriptor@ALSA_0.9 1.0.16
_snd_pcm_rate_linear_open@ALSA_0.9 1.0.16
_snd_pcm_rate_open@ALSA_0.9 1.0.16
_snd_pcm_route_open@ALSA_0.9 1.0.16
_snd_pcm_share_open@ALSA_0.9 1.0.16
_snd_pcm_shm_open@ALSA_0.9 1.0.16
_snd_pcm_softvol_open@ALSA_0.9 1.0.16
_snd_rawmidi_hw_open@ALSA_0.9 1.0.16
_snd_rawmidi_virtual_open@ALSA_0.9 1.0.16
_snd_seq_hw_open@ALSA_0.9 1.0.16
_snd_timer_hw_open@ALSA_0.9 1.0.16
_snd_timer_query_hw_open@ALSA_0.9 1.0.16
alsa_lisp@ALSA_0.9.5 1.0.16
alsa_lisp_default_cfg@ALSA_0.9.7 1.0.16
alsa_lisp_default_cfg_free@ALSA_0.9.7 1.0.16
alsa_lisp_free@ALSA_0.9.7 1.0.16
alsa_lisp_function@ALSA_0.9.7 1.0.16
alsa_lisp_init_objects@ALSA_0.9.7 1.0.16
alsa_lisp_nil@ALSA_0.9.7 1.0.16
alsa_lisp_result_free@ALSA_0.9.7 1.0.16
alsa_lisp_seq_count@ALSA_0.9.7 1.0.16
alsa_lisp_seq_first@ALSA_0.9.7 1.0.16
alsa_lisp_seq_integer@ALSA_0.9.7 1.0.16
alsa_lisp_seq_next@ALSA_0.9.7 1.0.16
alsa_lisp_seq_pointer@ALSA_0.9.7 1.0.16
alsa_lisp_t@ALSA_0.9.7 1.0.16
snd_asoundlib_version@ALSA_0.9 1.0.16
snd_async_add_ctl_handler@ALSA_0.9 1.0.16
snd_async_add_handler@ALSA_0.9 1.0.16
snd_async_add_pcm_handler@ALSA_0.9 1.0.16
snd_async_add_timer_handler@ALSA_0.9 1.0.16
snd_async_del_handler@ALSA_0.9 1.0.16
snd_async_handler_get_callback_private@ALSA_0.9 1.0.16
snd_async_handler_get_ctl@ALSA_0.9 1.0.16
snd_async_handler_get_fd@ALSA_0.9 1.0.16
snd_async_handler_get_pcm@ALSA_0.9 1.0.16
snd_async_handler_get_signo@ALSA_0.9 1.0.16
snd_async_handler_get_timer@ALSA_0.9 1.0.16
snd_atomic_read_wait@ALSA_0.9 1.0.16
snd_card_get_index@ALSA_0.9 1.0.16
snd_card_get_longname@ALSA_0.9 1.0.16
snd_card_get_name@ALSA_0.9 1.0.16
snd_card_load@ALSA_0.9 1.0.16
snd_card_next@ALSA_0.9 1.0.16
snd_config@ALSA_0.9 1.0.16
snd_config_add@ALSA_0.9 1.0.16
snd_config_copy@ALSA_0.9 1.0.16
snd_config_delete@ALSA_0.9 1.0.16
snd_config_delete_compound_members@ALSA_0.9 1.0.16
snd_config_evaluate@ALSA_0.9 1.0.16
snd_config_expand@ALSA_0.9 1.0.16
snd_config_get_ascii@ALSA_0.9 1.0.16
snd_config_get_bool@ALSA_0.9 1.0.16
snd_config_get_bool_ascii@ALSA_0.9 1.0.16
snd_config_get_ctl_iface@ALSA_0.9 1.0.16
snd_config_get_ctl_iface_ascii@ALSA_0.9 1.0.16
snd_config_get_id@ALSA_0.9 1.0.16
snd_config_get_integer64@ALSA_0.9 1.0.16
snd_config_get_integer@ALSA_0.9 1.0.16
snd_config_get_ireal@ALSA_0.9 1.0.16
snd_config_get_pointer@ALSA_0.9 1.0.16
snd_config_get_real@ALSA_0.9 1.0.16
snd_config_get_string@ALSA_0.9 1.0.16
snd_config_get_type@ALSA_0.9 1.0.16
snd_config_get_type_ascii@ALSA_0.9 1.0.16
snd_config_hook_load@ALSA_0.9 1.0.16
snd_config_hook_load_for_all_cards@ALSA_0.9 1.0.16
snd_config_imake_integer64@ALSA_0.9 1.0.16
snd_config_imake_integer@ALSA_0.9 1.0.16
snd_config_imake_pointer@ALSA_0.9 1.0.16
snd_config_imake_real@ALSA_0.9 1.0.16
snd_config_imake_string@ALSA_0.9 1.0.16
snd_config_iterator_end@ALSA_0.9 1.0.16
snd_config_iterator_entry@ALSA_0.9 1.0.16
snd_config_iterator_first@ALSA_0.9 1.0.16
snd_config_iterator_next@ALSA_0.9 1.0.16
snd_config_load@ALSA_0.9 1.0.16
snd_config_load_override@ALSA_0.9 1.0.16
snd_config_make@ALSA_0.9 1.0.16
snd_config_make_compound@ALSA_0.9 1.0.16
snd_config_make_integer64@ALSA_0.9 1.0.16
snd_config_make_integer@ALSA_0.9 1.0.16
snd_config_make_pointer@ALSA_0.9 1.0.16
snd_config_make_real@ALSA_0.9 1.0.16
snd_config_make_string@ALSA_0.9 1.0.16
snd_config_remove@ALSA_0.9 1.0.16
snd_config_save@ALSA_0.9 1.0.16
snd_config_search@ALSA_0.9 1.0.16
snd_config_search_alias@ALSA_0.9 1.0.16
snd_config_search_definition@ALSA_0.9 1.0.16
snd_config_search_hooks@ALSA_0.9 1.0.16
snd_config_searcha@ALSA_0.9 1.0.16
snd_config_searcha_hooks@ALSA_0.9 1.0.16
snd_config_searchv@ALSA_0.9 1.0.16
snd_config_searchva@ALSA_0.9 1.0.16
snd_config_searchva_hooks@ALSA_0.9 1.0.16
snd_config_set_ascii@ALSA_0.9 1.0.16
snd_config_set_id@ALSA_0.9 1.0.16
snd_config_set_integer64@ALSA_0.9 1.0.16
snd_config_set_integer@ALSA_0.9 1.0.16
snd_config_set_pointer@ALSA_0.9 1.0.16
snd_config_set_real@ALSA_0.9 1.0.16
snd_config_set_string@ALSA_0.9 1.0.16
snd_config_substitute@ALSA_0.9 1.0.16
snd_config_test_id@ALSA_0.9 1.0.16
snd_config_top@ALSA_0.9 1.0.16
snd_config_update@ALSA_0.9 1.0.16
snd_config_update_free@ALSA_0.9 1.0.16
snd_config_update_free_global@ALSA_0.9 1.0.16
snd_config_update_r@ALSA_0.9 1.0.16
snd_ctl_ascii_elem_id_get@ALSA_0.9 1.0.24.1
snd_ctl_ascii_elem_id_parse@ALSA_0.9 1.0.24.1
snd_ctl_ascii_value_parse@ALSA_0.9 1.0.24.1
snd_ctl_async@ALSA_0.9 1.0.16
snd_ctl_card_info@ALSA_0.9 1.0.16
snd_ctl_card_info_clear@ALSA_0.9 1.0.16
snd_ctl_card_info_copy@ALSA_0.9 1.0.16
snd_ctl_card_info_free@ALSA_0.9 1.0.16
snd_ctl_card_info_get_card@ALSA_0.9 1.0.16
snd_ctl_card_info_get_components@ALSA_0.9 1.0.16
snd_ctl_card_info_get_driver@ALSA_0.9 1.0.16
snd_ctl_card_info_get_id@ALSA_0.9 1.0.16
snd_ctl_card_info_get_longname@ALSA_0.9 1.0.16
snd_ctl_card_info_get_mixername@ALSA_0.9 1.0.16
snd_ctl_card_info_get_name@ALSA_0.9 1.0.16
snd_ctl_card_info_malloc@ALSA_0.9 1.0.16
snd_ctl_card_info_sizeof@ALSA_0.9 1.0.16
snd_ctl_close@ALSA_0.9 1.0.16
snd_ctl_convert_from_dB@ALSA_0.9 1.0.16
snd_ctl_convert_to_dB@ALSA_0.9 1.0.16
snd_ctl_elem_add_boolean@ALSA_0.9 1.0.16
snd_ctl_elem_add_enumerated@ALSA_0.9 1.0.25
snd_ctl_elem_add_iec958@ALSA_0.9 1.0.16
snd_ctl_elem_add_integer64@ALSA_0.9 1.0.16
snd_ctl_elem_add_integer@ALSA_0.9 1.0.16
snd_ctl_elem_id_clear@ALSA_0.9 1.0.16
snd_ctl_elem_id_copy@ALSA_0.9 1.0.16
snd_ctl_elem_id_free@ALSA_0.9 1.0.16
snd_ctl_elem_id_get_device@ALSA_0.9 1.0.16
snd_ctl_elem_id_get_index@ALSA_0.9 1.0.16
snd_ctl_elem_id_get_interface@ALSA_0.9 1.0.16
snd_ctl_elem_id_get_name@ALSA_0.9 1.0.16
snd_ctl_elem_id_get_numid@ALSA_0.9 1.0.16
snd_ctl_elem_id_get_subdevice@ALSA_0.9 1.0.16
snd_ctl_elem_id_malloc@ALSA_0.9 1.0.16
snd_ctl_elem_id_set_device@ALSA_0.9 1.0.16
snd_ctl_elem_id_set_index@ALSA_0.9 1.0.16
snd_ctl_elem_id_set_interface@ALSA_0.9 1.0.16
snd_ctl_elem_id_set_name@ALSA_0.9 1.0.16
snd_ctl_elem_id_set_numid@ALSA_0.9 1.0.16
snd_ctl_elem_id_set_subdevice@ALSA_0.9 1.0.16
snd_ctl_elem_id_sizeof@ALSA_0.9 1.0.16
snd_ctl_elem_iface_name@ALSA_0.9 1.0.16
snd_ctl_elem_info@ALSA_0.9 1.0.16
snd_ctl_elem_info_clear@ALSA_0.9 1.0.16
snd_ctl_elem_info_copy@ALSA_0.9 1.0.16
snd_ctl_elem_info_free@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_count@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_device@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_dimension@ALSA_0.9.3 1.0.16
snd_ctl_elem_info_get_dimensions@ALSA_0.9.3 1.0.16
snd_ctl_elem_info_get_id@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_index@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_interface@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_item_name@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_items@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_max64@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_max@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_min64@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_min@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_name@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_numid@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_owner@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_step64@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_step@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_subdevice@ALSA_0.9 1.0.16
snd_ctl_elem_info_get_type@ALSA_0.9 1.0.16
snd_ctl_elem_info_is_inactive@ALSA_0.9 1.0.16
snd_ctl_elem_info_is_indirect@ALSA_0.9 1.0.16
snd_ctl_elem_info_is_locked@ALSA_0.9 1.0.16
snd_ctl_elem_info_is_owner@ALSA_0.9 1.0.16
snd_ctl_elem_info_is_readable@ALSA_0.9 1.0.16
snd_ctl_elem_info_is_tlv_commandable@ALSA_0.9 1.0.16
snd_ctl_elem_info_is_tlv_readable@ALSA_0.9 1.0.16
snd_ctl_elem_info_is_tlv_writable@ALSA_0.9 1.0.16
snd_ctl_elem_info_is_user@ALSA_0.9 1.0.16
snd_ctl_elem_info_is_volatile@ALSA_0.9 1.0.16
snd_ctl_elem_info_is_writable@ALSA_0.9 1.0.16
snd_ctl_elem_info_malloc@ALSA_0.9 1.0.16
snd_ctl_elem_info_set_device@ALSA_0.9 1.0.16
snd_ctl_elem_info_set_id@ALSA_0.9 1.0.16
snd_ctl_elem_info_set_index@ALSA_0.9 1.0.16
snd_ctl_elem_info_set_interface@ALSA_0.9 1.0.16
snd_ctl_elem_info_set_item@ALSA_0.9 1.0.16
snd_ctl_elem_info_set_name@ALSA_0.9 1.0.16
snd_ctl_elem_info_set_numid@ALSA_0.9 1.0.16
snd_ctl_elem_info_set_subdevice@ALSA_0.9 1.0.16
snd_ctl_elem_info_sizeof@ALSA_0.9 1.0.16
snd_ctl_elem_list@ALSA_0.9 1.0.16
snd_ctl_elem_list_alloc_space@ALSA_0.9 1.0.16
snd_ctl_elem_list_clear@ALSA_0.9 1.0.16
snd_ctl_elem_list_copy@ALSA_0.9 1.0.16
snd_ctl_elem_list_free@ALSA_0.9 1.0.16
snd_ctl_elem_list_free_space@ALSA_0.9 1.0.16
snd_ctl_elem_list_get_count@ALSA_0.9 1.0.16
snd_ctl_elem_list_get_device@ALSA_0.9 1.0.16
snd_ctl_elem_list_get_id@ALSA_0.9 1.0.16
snd_ctl_elem_list_get_index@ALSA_0.9 1.0.16
snd_ctl_elem_list_get_interface@ALSA_0.9 1.0.16
snd_ctl_elem_list_get_name@ALSA_0.9 1.0.16
snd_ctl_elem_list_get_numid@ALSA_0.9 1.0.16
snd_ctl_elem_list_get_subdevice@ALSA_0.9 1.0.16
snd_ctl_elem_list_get_used@ALSA_0.9 1.0.16
snd_ctl_elem_list_malloc@ALSA_0.9 1.0.16
snd_ctl_elem_list_set_offset@ALSA_0.9 1.0.16
snd_ctl_elem_list_sizeof@ALSA_0.9 1.0.16
snd_ctl_elem_lock@ALSA_0.9 1.0.16
snd_ctl_elem_read@ALSA_0.9 1.0.16
snd_ctl_elem_remove@ALSA_0.9 1.0.16
snd_ctl_elem_set_bytes@ALSA_0.9 1.0.16
snd_ctl_elem_tlv_command@ALSA_0.9 1.0.16
snd_ctl_elem_tlv_read@ALSA_0.9 1.0.16
snd_ctl_elem_tlv_write@ALSA_0.9 1.0.16
snd_ctl_elem_type_name@ALSA_0.9 1.0.16
snd_ctl_elem_unlock@ALSA_0.9 1.0.16
snd_ctl_elem_value_clear@ALSA_0.9 1.0.16
snd_ctl_elem_value_compare@ALSA_0.9 1.0.23
snd_ctl_elem_value_copy@ALSA_0.9 1.0.16
snd_ctl_elem_value_free@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_boolean@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_byte@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_bytes@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_device@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_enumerated@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_id@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_iec958@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_index@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_integer64@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_integer@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_interface@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_name@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_numid@ALSA_0.9 1.0.16
snd_ctl_elem_value_get_subdevice@ALSA_0.9 1.0.16
snd_ctl_elem_value_malloc@ALSA_0.9 1.0.16
snd_ctl_elem_value_set_boolean@ALSA_0.9 1.0.16
snd_ctl_elem_value_set_byte@ALSA_0.9 1.0.16
snd_ctl_elem_value_set_device@ALSA_0.9 1.0.16
snd_ctl_elem_value_set_enumerated@ALSA_0.9 1.0.16
snd_ctl_elem_value_set_id@ALSA_0.9 1.0.16
snd_ctl_elem_value_set_iec958@ALSA_0.9 1.0.16
snd_ctl_elem_value_set_index@ALSA_0.9 1.0.16
snd_ctl_elem_value_set_integer64@ALSA_0.9 1.0.16
snd_ctl_elem_value_set_integer@ALSA_0.9 1.0.16
snd_ctl_elem_value_set_interface@ALSA_0.9 1.0.16
snd_ctl_elem_value_set_name@ALSA_0.9 1.0.16
snd_ctl_elem_value_set_numid@ALSA_0.9 1.0.16
snd_ctl_elem_value_set_subdevice@ALSA_0.9 1.0.16
snd_ctl_elem_value_sizeof@ALSA_0.9 1.0.16
snd_ctl_elem_write@ALSA_0.9 1.0.16
snd_ctl_event_clear@ALSA_0.9 1.0.16
snd_ctl_event_copy@ALSA_0.9 1.0.16
snd_ctl_event_elem_get_device@ALSA_0.9 1.0.16
snd_ctl_event_elem_get_id@ALSA_0.9 1.0.16
snd_ctl_event_elem_get_index@ALSA_0.9 1.0.16
snd_ctl_event_elem_get_interface@ALSA_0.9 1.0.16
snd_ctl_event_elem_get_mask@ALSA_0.9 1.0.16
snd_ctl_event_elem_get_name@ALSA_0.9 1.0.16
snd_ctl_event_elem_get_numid@ALSA_0.9 1.0.16
snd_ctl_event_elem_get_subdevice@ALSA_0.9 1.0.16
snd_ctl_event_free@ALSA_0.9 1.0.16
snd_ctl_event_get_type@ALSA_0.9 1.0.16
snd_ctl_event_malloc@ALSA_0.9 1.0.16
snd_ctl_event_sizeof@ALSA_0.9 1.0.16
snd_ctl_event_type_name@ALSA_0.9 1.0.16
snd_ctl_ext_create@ALSA_0.9 1.0.16
snd_ctl_ext_delete@ALSA_0.9 1.0.16
snd_ctl_get_dB_range@ALSA_0.9 1.0.16
snd_ctl_get_power_state@ALSA_0.9 1.0.16
snd_ctl_hw_open@ALSA_0.9 1.0.16
snd_ctl_hwdep_info@ALSA_0.9 1.0.16
snd_ctl_hwdep_next_device@ALSA_0.9 1.0.16
snd_ctl_name@ALSA_0.9 1.0.16
snd_ctl_nonblock@ALSA_0.9 1.0.16
snd_ctl_open@ALSA_0.9 1.0.16
snd_ctl_open_fallback@ALSA_0.9 1.0.25
snd_ctl_open_lconf@ALSA_0.9 1.0.16
snd_ctl_pcm_info@ALSA_0.9 1.0.16
snd_ctl_pcm_next_device@ALSA_0.9 1.0.16
snd_ctl_pcm_prefer_subdevice@ALSA_0.9 1.0.16
snd_ctl_poll_descriptors@ALSA_0.9 1.0.16
snd_ctl_poll_descriptors_count@ALSA_0.9 1.0.16
snd_ctl_poll_descriptors_revents@ALSA_0.9 1.0.16
snd_ctl_rawmidi_info@ALSA_0.9 1.0.16
snd_ctl_rawmidi_next_device@ALSA_0.9 1.0.16
snd_ctl_rawmidi_prefer_subdevice@ALSA_0.9 1.0.16
snd_ctl_read@ALSA_0.9 1.0.16
snd_ctl_set_power_state@ALSA_0.9 1.0.16
snd_ctl_shm_open@ALSA_0.9 1.0.16
snd_ctl_subscribe_events@ALSA_0.9 1.0.16
snd_ctl_type@ALSA_0.9 1.0.16
snd_ctl_wait@ALSA_0.9 1.0.16
snd_determine_driver@ALSA_0.9 1.0.16
snd_device_name_free_hint@ALSA_0.9 1.0.16
snd_device_name_get_hint@ALSA_0.9 1.0.16
snd_device_name_hint@ALSA_0.9 1.0.16
snd_dlclose@ALSA_0.9 1.0.16
snd_dlopen@ALSA_0.9 1.0.16
snd_dlsym@ALSA_0.9 1.0.16
snd_err_msg@ALSA_0.9 1.0.16
snd_func_card_driver@ALSA_0.9 1.0.16
snd_func_card_id@ALSA_0.9 1.0.16
snd_func_card_inum@ALSA_0.9 1.0.16
snd_func_card_name@ALSA_0.9 1.0.16
snd_func_concat@ALSA_0.9 1.0.16
snd_func_datadir@ALSA_0.9 1.0.16
snd_func_getenv@ALSA_0.9 1.0.16
snd_func_iadd@ALSA_0.9 1.0.16
snd_func_igetenv@ALSA_0.9 1.0.16
snd_func_imul@ALSA_0.9 1.0.16
snd_func_pcm_args_by_class@ALSA_0.9 1.0.16
snd_func_pcm_id@ALSA_0.9 1.0.16
snd_func_private_card_driver@ALSA_0.9 1.0.16
snd_func_private_pcm_subdevice@ALSA_0.9 1.0.16
snd_func_private_string@ALSA_0.9 1.0.16
snd_func_refer@ALSA_0.9 1.0.16
snd_hctl_async@ALSA_0.9 1.0.16
snd_hctl_close@ALSA_0.9 1.0.16
snd_hctl_compare_fast@ALSA_0.9 1.0.16
snd_hctl_ctl@ALSA_0.9 1.0.16
snd_hctl_elem_get_callback_private@ALSA_0.9 1.0.16
snd_hctl_elem_get_device@ALSA_0.9 1.0.16
snd_hctl_elem_get_hctl@ALSA_0.9 1.0.16
snd_hctl_elem_get_id@ALSA_0.9 1.0.16
snd_hctl_elem_get_index@ALSA_0.9 1.0.16
snd_hctl_elem_get_interface@ALSA_0.9 1.0.16
snd_hctl_elem_get_name@ALSA_0.9 1.0.16
snd_hctl_elem_get_numid@ALSA_0.9 1.0.16
snd_hctl_elem_get_subdevice@ALSA_0.9 1.0.16
snd_hctl_elem_info@ALSA_0.9 1.0.16
snd_hctl_elem_next@ALSA_0.9 1.0.16
snd_hctl_elem_prev@ALSA_0.9 1.0.16
snd_hctl_elem_read@ALSA_0.9 1.0.16
snd_hctl_elem_set_callback@ALSA_0.9 1.0.16
snd_hctl_elem_set_callback_private@ALSA_0.9 1.0.16
snd_hctl_elem_tlv_command@ALSA_0.9 1.0.16
snd_hctl_elem_tlv_read@ALSA_0.9 1.0.16
snd_hctl_elem_tlv_write@ALSA_0.9 1.0.16
snd_hctl_elem_write@ALSA_0.9 1.0.16
snd_hctl_find_elem@ALSA_0.9 1.0.16
snd_hctl_first_elem@ALSA_0.9 1.0.16
snd_hctl_free@ALSA_0.9 1.0.16
snd_hctl_get_callback_private@ALSA_0.9 1.0.16
snd_hctl_get_count@ALSA_0.9 1.0.16
snd_hctl_handle_events@ALSA_0.9 1.0.16
snd_hctl_last_elem@ALSA_0.9 1.0.16
snd_hctl_load@ALSA_0.9 1.0.16
snd_hctl_name@ALSA_0.9 1.0.16
snd_hctl_nonblock@ALSA_0.9 1.0.16
snd_hctl_open@ALSA_0.9 1.0.16
snd_hctl_open_ctl@ALSA_0.9 1.0.16
snd_hctl_poll_descriptors@ALSA_0.9 1.0.16
snd_hctl_poll_descriptors_count@ALSA_0.9 1.0.16
snd_hctl_poll_descriptors_revents@ALSA_0.9 1.0.16
snd_hctl_set_callback@ALSA_0.9 1.0.16
snd_hctl_set_callback_private@ALSA_0.9 1.0.16
snd_hctl_set_compare@ALSA_0.9 1.0.16
snd_hctl_wait@ALSA_0.9 1.0.16
snd_hwdep_close@ALSA_0.9 1.0.16
snd_hwdep_dsp_image_copy@ALSA_0.9 1.0.16
snd_hwdep_dsp_image_free@ALSA_0.9 1.0.16
snd_hwdep_dsp_image_get_image@ALSA_0.9 1.0.16
snd_hwdep_dsp_image_get_index@ALSA_0.9 1.0.16
snd_hwdep_dsp_image_get_length@ALSA_0.9 1.0.16
snd_hwdep_dsp_image_get_name@ALSA_0.9 1.0.16
snd_hwdep_dsp_image_malloc@ALSA_0.9 1.0.16
snd_hwdep_dsp_image_set_image@ALSA_0.9 1.0.16
snd_hwdep_dsp_image_set_index@ALSA_0.9 1.0.16
snd_hwdep_dsp_image_set_length@ALSA_0.9 1.0.16
snd_hwdep_dsp_image_set_name@ALSA_0.9 1.0.16
snd_hwdep_dsp_image_sizeof@ALSA_0.9 1.0.16
snd_hwdep_dsp_load@ALSA_0.9 1.0.16
snd_hwdep_dsp_status@ALSA_0.9 1.0.16
snd_hwdep_dsp_status_copy@ALSA_0.9 1.0.16
snd_hwdep_dsp_status_free@ALSA_0.9 1.0.16
snd_hwdep_dsp_status_get_chip_ready@ALSA_0.9 1.0.16
snd_hwdep_dsp_status_get_dsp_loaded@ALSA_0.9 1.0.16
snd_hwdep_dsp_status_get_id@ALSA_0.9 1.0.16
snd_hwdep_dsp_status_get_num_dsps@ALSA_0.9 1.0.16
snd_hwdep_dsp_status_get_version@ALSA_0.9 1.0.16
snd_hwdep_dsp_status_malloc@ALSA_0.9 1.0.16
snd_hwdep_dsp_status_sizeof@ALSA_0.9 1.0.16
snd_hwdep_hw_open@ALSA_0.9 1.0.16
snd_hwdep_info@ALSA_0.9 1.0.16
snd_hwdep_info_copy@ALSA_0.9 1.0.16
snd_hwdep_info_free@ALSA_0.9 1.0.16
snd_hwdep_info_get_card@ALSA_0.9 1.0.16
snd_hwdep_info_get_device@ALSA_0.9 1.0.16
snd_hwdep_info_get_id@ALSA_0.9 1.0.16
snd_hwdep_info_get_iface@ALSA_0.9 1.0.16
snd_hwdep_info_get_name@ALSA_0.9 1.0.16
snd_hwdep_info_malloc@ALSA_0.9 1.0.16
snd_hwdep_info_set_device@ALSA_0.9 1.0.16
snd_hwdep_info_sizeof@ALSA_0.9 1.0.16
snd_hwdep_ioctl@ALSA_0.9 1.0.16
snd_hwdep_name@ALSA_0.9 1.0.16
snd_hwdep_nonblock@ALSA_0.9 1.0.16
snd_hwdep_open@ALSA_0.9 1.0.16
snd_hwdep_open_lconf@ALSA_0.9 1.0.16
snd_hwdep_poll_descriptors@ALSA_0.9 1.0.16
snd_hwdep_poll_descriptors_count@ALSA_0.9 1.0.16
snd_hwdep_poll_descriptors_revents@ALSA_0.9 1.0.16
snd_hwdep_read@ALSA_0.9 1.0.16
snd_hwdep_type@ALSA_0.9 1.0.16
snd_hwdep_write@ALSA_0.9 1.0.16
snd_input_buffer_open@ALSA_0.9 1.0.16
snd_input_close@ALSA_0.9 1.0.16
snd_input_getc@ALSA_0.9 1.0.16
snd_input_gets@ALSA_0.9 1.0.16
snd_input_scanf@ALSA_0.9 1.0.16
snd_input_stdio_attach@ALSA_0.9 1.0.16
snd_input_stdio_open@ALSA_0.9 1.0.16
snd_input_ungetc@ALSA_0.9 1.0.16
snd_instr_fm_convert_from_stream@ALSA_0.9 1.0.16
snd_instr_fm_convert_to_stream@ALSA_0.9 1.0.16
snd_instr_fm_free@ALSA_0.9 1.0.16
snd_instr_header_copy@ALSA_0.9 1.0.16
snd_instr_header_free@ALSA_0.9 1.0.16
snd_instr_header_get_alias@ALSA_0.9 1.0.16
snd_instr_header_get_cluster@ALSA_0.9 1.0.16
snd_instr_header_get_cmd@ALSA_0.9 1.0.16
snd_instr_header_get_data@ALSA_0.9 1.0.16
snd_instr_header_get_follow_alias@ALSA_0.9 1.0.16
snd_instr_header_get_format@ALSA_0.9 1.0.16
snd_instr_header_get_id@ALSA_0.9 1.0.16
snd_instr_header_get_len@ALSA_0.9 1.0.16
snd_instr_header_get_name@ALSA_0.9 1.0.16
snd_instr_header_get_type@ALSA_0.9 1.0.16
snd_instr_header_malloc@ALSA_0.9 1.0.16
snd_instr_header_set_alias@ALSA_0.9 1.0.16
snd_instr_header_set_cluster@ALSA_0.9 1.0.16
snd_instr_header_set_cmd@ALSA_0.9 1.0.16
snd_instr_header_set_follow_alias@ALSA_0.9 1.0.16
snd_instr_header_set_format@ALSA_0.9 1.0.16
snd_instr_header_set_id@ALSA_0.9 1.0.16
snd_instr_header_set_len@ALSA_0.9 1.0.16
snd_instr_header_set_name@ALSA_0.9 1.0.16
snd_instr_header_set_type@ALSA_0.9 1.0.16
snd_instr_header_sizeof@ALSA_0.9 1.0.16
snd_instr_iwffff_close@ALSA_0.9 1.0.16
snd_instr_iwffff_convert_from_stream@ALSA_0.9 1.0.16
snd_instr_iwffff_convert_to_stream@ALSA_0.9 1.0.16
snd_instr_iwffff_free@ALSA_0.9 1.0.16
snd_instr_iwffff_load@ALSA_0.9 1.0.16
snd_instr_iwffff_open@ALSA_0.9 1.0.16
snd_instr_iwffff_open_rom@ALSA_0.9 1.0.16
snd_instr_iwffff_open_rom_file@ALSA_0.9 1.0.16
snd_instr_simple_convert_from_stream@ALSA_0.9 1.0.16
snd_instr_simple_convert_to_stream@ALSA_0.9 1.0.16
snd_instr_simple_free@ALSA_0.9 1.0.16
snd_is_local@ALSA_0.9 1.0.16
snd_lib_error@ALSA_0.9 1.0.16
snd_lib_error_set_handler@ALSA_0.9 1.0.16
snd_lib_error_set_local@ALSA_0.9 1.0.27
snd_midi_event_decode@ALSA_0.9 1.0.16
snd_midi_event_encode@ALSA_0.9 1.0.16
snd_midi_event_encode_byte@ALSA_0.9 1.0.16
snd_midi_event_free@ALSA_0.9 1.0.16
snd_midi_event_init@ALSA_0.9 1.0.16
snd_midi_event_new@ALSA_0.9 1.0.16
snd_midi_event_no_status@ALSA_0.9 1.0.16
snd_midi_event_reset_decode@ALSA_0.9 1.0.16
snd_midi_event_reset_encode@ALSA_0.9 1.0.16
snd_midi_event_resize_buffer@ALSA_0.9 1.0.16
snd_mixer_attach@ALSA_0.9 1.0.16
snd_mixer_attach_hctl@ALSA_0.9 1.0.16
snd_mixer_class_copy@ALSA_0.9 1.0.16
snd_mixer_class_free@ALSA_0.9 1.0.16
snd_mixer_class_get_compare@ALSA_0.9 1.0.16
snd_mixer_class_get_event@ALSA_0.9 1.0.16
snd_mixer_class_get_mixer@ALSA_0.9 1.0.16
snd_mixer_class_get_private@ALSA_0.9 1.0.16
snd_mixer_class_malloc@ALSA_0.9 1.0.16
snd_mixer_class_register@ALSA_0.9 1.0.16
snd_mixer_class_set_compare@ALSA_0.9 1.0.16
snd_mixer_class_set_event@ALSA_0.9 1.0.16
snd_mixer_class_set_private@ALSA_0.9 1.0.16
snd_mixer_class_set_private_free@ALSA_0.9 1.0.16
snd_mixer_class_sizeof@ALSA_0.9 1.0.16
snd_mixer_class_unregister@ALSA_0.9 1.0.16
snd_mixer_close@ALSA_0.9 1.0.16
snd_mixer_detach@ALSA_0.9 1.0.16
snd_mixer_detach_hctl@ALSA_0.9 1.0.16
snd_mixer_elem_add@ALSA_0.9 1.0.16
snd_mixer_elem_attach@ALSA_0.9 1.0.16
snd_mixer_elem_detach@ALSA_0.9 1.0.16
snd_mixer_elem_empty@ALSA_0.9 1.0.16
snd_mixer_elem_free@ALSA_0.9 1.0.16
snd_mixer_elem_get_callback_private@ALSA_0.9 1.0.16
snd_mixer_elem_get_private@ALSA_0.9 1.0.16
snd_mixer_elem_get_type@ALSA_0.9 1.0.16
snd_mixer_elem_info@ALSA_0.9 1.0.16
snd_mixer_elem_new@ALSA_0.9 1.0.16
snd_mixer_elem_next@ALSA_0.9 1.0.16
snd_mixer_elem_prev@ALSA_0.9 1.0.16
snd_mixer_elem_remove@ALSA_0.9 1.0.16
snd_mixer_elem_set_callback@ALSA_0.9 1.0.16
snd_mixer_elem_set_callback_private@ALSA_0.9 1.0.16
snd_mixer_elem_value@ALSA_0.9 1.0.16
snd_mixer_find_selem@ALSA_0.9 1.0.16
snd_mixer_first_elem@ALSA_0.9 1.0.16
snd_mixer_free@ALSA_0.9 1.0.16
snd_mixer_get_callback_private@ALSA_0.9 1.0.16
snd_mixer_get_count@ALSA_0.9 1.0.16
snd_mixer_get_hctl@ALSA_0.9 1.0.16
snd_mixer_handle_events@ALSA_0.9 1.0.16
snd_mixer_last_elem@ALSA_0.9 1.0.16
snd_mixer_load@ALSA_0.9 1.0.16
snd_mixer_open@ALSA_0.9 1.0.16
snd_mixer_poll_descriptors@ALSA_0.9 1.0.16
snd_mixer_poll_descriptors_count@ALSA_0.9 1.0.16
snd_mixer_poll_descriptors_revents@ALSA_0.9 1.0.16
snd_mixer_sbasic_get_private@ALSA_0.9 1.0.16
snd_mixer_sbasic_info@ALSA_0.9 1.0.16
snd_mixer_sbasic_set_private@ALSA_0.9 1.0.16
snd_mixer_sbasic_set_private_free@ALSA_0.9 1.0.16
snd_mixer_selem_ask_capture_dB_vol@ALSA_0.9 1.0.17
snd_mixer_selem_ask_capture_vol_dB@ALSA_0.9 1.0.17
snd_mixer_selem_ask_playback_dB_vol@ALSA_0.9 1.0.17
snd_mixer_selem_ask_playback_vol_dB@ALSA_0.9 1.0.17
snd_mixer_selem_channel_name@ALSA_0.9 1.0.16
snd_mixer_selem_compare@ALSA_0.9 1.0.16
snd_mixer_selem_get_capture_dB@ALSA_0.9 1.0.16
snd_mixer_selem_get_capture_dB_range@ALSA_0.9 1.0.16
snd_mixer_selem_get_capture_group@ALSA_0.9 1.0.16
snd_mixer_selem_get_capture_switch@ALSA_0.9 1.0.16
snd_mixer_selem_get_capture_volume@ALSA_0.9 1.0.16
snd_mixer_selem_get_capture_volume_range@ALSA_0.9 1.0.16
snd_mixer_selem_get_enum_item@ALSA_0.9 1.0.16
snd_mixer_selem_get_enum_item_name@ALSA_0.9 1.0.16
snd_mixer_selem_get_enum_items@ALSA_0.9 1.0.16
snd_mixer_selem_get_id@ALSA_0.9 1.0.16
snd_mixer_selem_get_index@ALSA_0.9 1.0.16
snd_mixer_selem_get_name@ALSA_0.9 1.0.16
snd_mixer_selem_get_playback_dB@ALSA_0.9 1.0.16
snd_mixer_selem_get_playback_dB_range@ALSA_0.9 1.0.16
snd_mixer_selem_get_playback_switch@ALSA_0.9 1.0.16
snd_mixer_selem_get_playback_volume@ALSA_0.9 1.0.16
snd_mixer_selem_get_playback_volume_range@ALSA_0.9 1.0.16
snd_mixer_selem_has_capture_channel@ALSA_0.9 1.0.16
snd_mixer_selem_has_capture_switch@ALSA_0.9 1.0.16
snd_mixer_selem_has_capture_switch_exclusive@ALSA_0.9 1.0.16
snd_mixer_selem_has_capture_switch_joined@ALSA_0.9 1.0.16
snd_mixer_selem_has_capture_volume@ALSA_0.9 1.0.16
snd_mixer_selem_has_capture_volume_joined@ALSA_0.9 1.0.16
snd_mixer_selem_has_common_switch@ALSA_0.9 1.0.16
snd_mixer_selem_has_common_volume@ALSA_0.9 1.0.16
snd_mixer_selem_has_playback_channel@ALSA_0.9 1.0.16
snd_mixer_selem_has_playback_switch@ALSA_0.9 1.0.16
snd_mixer_selem_has_playback_switch_joined@ALSA_0.9 1.0.16
snd_mixer_selem_has_playback_volume@ALSA_0.9 1.0.16
snd_mixer_selem_has_playback_volume_joined@ALSA_0.9 1.0.16
snd_mixer_selem_id_copy@ALSA_0.9 1.0.16
snd_mixer_selem_id_free@ALSA_0.9 1.0.16
snd_mixer_selem_id_get_index@ALSA_0.9 1.0.16
snd_mixer_selem_id_get_name@ALSA_0.9 1.0.16
snd_mixer_selem_id_malloc@ALSA_0.9 1.0.16
snd_mixer_selem_id_set_index@ALSA_0.9 1.0.16
snd_mixer_selem_id_set_name@ALSA_0.9 1.0.16
snd_mixer_selem_id_sizeof@ALSA_0.9 1.0.16
snd_mixer_selem_is_active@ALSA_0.9 1.0.16
snd_mixer_selem_is_capture_mono@ALSA_0.9 1.0.16
snd_mixer_selem_is_enum_capture@ALSA_0.9 1.0.16
snd_mixer_selem_is_enum_playback@ALSA_0.9 1.0.16
snd_mixer_selem_is_enumerated@ALSA_0.9 1.0.16
snd_mixer_selem_is_playback_mono@ALSA_0.9 1.0.16
snd_mixer_selem_register@ALSA_0.9 1.0.16
snd_mixer_selem_set_capture_dB@ALSA_0.9 1.0.16
snd_mixer_selem_set_capture_dB_all@ALSA_0.9 1.0.16
snd_mixer_selem_set_capture_switch@ALSA_0.9 1.0.16
snd_mixer_selem_set_capture_switch_all@ALSA_0.9 1.0.16
snd_mixer_selem_set_capture_volume@ALSA_0.9 1.0.16
snd_mixer_selem_set_capture_volume_all@ALSA_0.9 1.0.16
snd_mixer_selem_set_capture_volume_range@ALSA_0.9 1.0.16
snd_mixer_selem_set_enum_item@ALSA_0.9 1.0.16
snd_mixer_selem_set_playback_dB@ALSA_0.9 1.0.16
snd_mixer_selem_set_playback_dB_all@ALSA_0.9 1.0.16
snd_mixer_selem_set_playback_switch@ALSA_0.9 1.0.16
snd_mixer_selem_set_playback_switch_all@ALSA_0.9 1.0.16
snd_mixer_selem_set_playback_volume@ALSA_0.9 1.0.16
snd_mixer_selem_set_playback_volume_all@ALSA_0.9 1.0.16
snd_mixer_selem_set_playback_volume_range@ALSA_0.9 1.0.16
snd_mixer_set_callback@ALSA_0.9 1.0.16
snd_mixer_set_callback_private@ALSA_0.9 1.0.16
snd_mixer_set_compare@ALSA_0.9 1.0.16
snd_mixer_wait@ALSA_0.9 1.0.16
snd_names_list@ALSA_0.9 1.0.16
snd_names_list_free@ALSA_0.9 1.0.16
snd_output_buffer_open@ALSA_0.9 1.0.16
snd_output_buffer_string@ALSA_0.9 1.0.16
snd_output_close@ALSA_0.9 1.0.16
snd_output_flush@ALSA_0.9 1.0.16
snd_output_printf@ALSA_0.9 1.0.16
snd_output_putc@ALSA_0.9 1.0.16
snd_output_puts@ALSA_0.9 1.0.16
snd_output_stdio_attach@ALSA_0.9 1.0.16
snd_output_stdio_open@ALSA_0.9 1.0.16
snd_output_vprintf@ALSA_0.9 1.0.16
snd_pcm_access_mask_any@ALSA_0.9 1.0.16
snd_pcm_access_mask_copy@ALSA_0.9 1.0.16
snd_pcm_access_mask_empty@ALSA_0.9 1.0.16
snd_pcm_access_mask_free@ALSA_0.9 1.0.16
snd_pcm_access_mask_malloc@ALSA_0.9 1.0.16
snd_pcm_access_mask_none@ALSA_0.9 1.0.16
snd_pcm_access_mask_reset@ALSA_0.9 1.0.16
snd_pcm_access_mask_set@ALSA_0.9 1.0.16
snd_pcm_access_mask_sizeof@ALSA_0.9 1.0.16
snd_pcm_access_mask_test@ALSA_0.9 1.0.16
snd_pcm_access_name@ALSA_0.9 1.0.16
snd_pcm_adpcm_open@ALSA_0.9 1.0.16
snd_pcm_alaw_open@ALSA_0.9 1.0.16
snd_pcm_area_copy@ALSA_0.9 1.0.16
snd_pcm_area_silence@ALSA_0.9 1.0.16
snd_pcm_areas_copy@ALSA_0.9 1.0.16
snd_pcm_areas_silence@ALSA_0.9 1.0.16
snd_pcm_async@ALSA_0.9 1.0.16
snd_pcm_avail@ALSA_0.9 1.0.18
snd_pcm_avail_delay@ALSA_0.9 1.0.18
snd_pcm_avail_update@ALSA_0.9 1.0.16
snd_pcm_build_linear_format@ALSA_0.9 1.0.16
snd_pcm_bytes_to_frames@ALSA_0.9 1.0.16
snd_pcm_bytes_to_samples@ALSA_0.9 1.0.16
snd_pcm_chmap_from_string@ALSA_0.9 1.0.27
snd_pcm_chmap_long_name@ALSA_0.9 1.0.27
snd_pcm_chmap_name@ALSA_0.9 1.0.27
snd_pcm_chmap_parse_string@ALSA_0.9 1.0.27
snd_pcm_chmap_print@ALSA_0.9 1.0.27
snd_pcm_chmap_type_name@ALSA_0.9 1.0.27
snd_pcm_close@ALSA_0.9 1.0.16
snd_pcm_copy_open@ALSA_0.9 1.0.16
snd_pcm_delay@ALSA_0.9 1.0.16
snd_pcm_dmix_open@ALSA_0.9 1.0.16
snd_pcm_drain@ALSA_0.9 1.0.16
snd_pcm_drop@ALSA_0.9 1.0.16
snd_pcm_dshare_open@ALSA_0.9 1.0.16
snd_pcm_dsnoop_open@ALSA_0.9 1.0.16
snd_pcm_dump@ALSA_0.9 1.0.16
snd_pcm_dump_hw_setup@ALSA_0.9 1.0.16
snd_pcm_dump_setup@ALSA_0.9 1.0.16
snd_pcm_dump_sw_setup@ALSA_0.9 1.0.16
snd_pcm_extplug_create@ALSA_0.9 1.0.16
snd_pcm_extplug_delete@ALSA_0.9 1.0.16
snd_pcm_extplug_params_reset@ALSA_0.9 1.0.16
snd_pcm_extplug_set_param_list@ALSA_0.9 1.0.16
snd_pcm_extplug_set_param_minmax@ALSA_0.9 1.0.16
snd_pcm_extplug_set_slave_param_list@ALSA_0.9 1.0.16
snd_pcm_extplug_set_slave_param_minmax@ALSA_0.9 1.0.16
snd_pcm_file_open@ALSA_0.9 1.0.16
snd_pcm_format_big_endian@ALSA_0.9 1.0.16
snd_pcm_format_cpu_endian@ALSA_0.9 1.0.16
snd_pcm_format_description@ALSA_0.9 1.0.16
snd_pcm_format_float@ALSA_0.9 1.0.16
snd_pcm_format_linear@ALSA_0.9 1.0.16
snd_pcm_format_little_endian@ALSA_0.9 1.0.16
snd_pcm_format_mask_any@ALSA_0.9 1.0.16
snd_pcm_format_mask_copy@ALSA_0.9 1.0.16
snd_pcm_format_mask_empty@ALSA_0.9 1.0.16
snd_pcm_format_mask_free@ALSA_0.9 1.0.16
snd_pcm_format_mask_malloc@ALSA_0.9 1.0.16
snd_pcm_format_mask_none@ALSA_0.9 1.0.16
snd_pcm_format_mask_reset@ALSA_0.9 1.0.16
snd_pcm_format_mask_set@ALSA_0.9 1.0.16
snd_pcm_format_mask_sizeof@ALSA_0.9 1.0.16
snd_pcm_format_mask_test@ALSA_0.9 1.0.16
snd_pcm_format_name@ALSA_0.9 1.0.16
snd_pcm_format_physical_width@ALSA_0.9 1.0.16
snd_pcm_format_set_silence@ALSA_0.9 1.0.16
snd_pcm_format_signed@ALSA_0.9 1.0.16
snd_pcm_format_silence@ALSA_0.9 1.0.16
snd_pcm_format_silence_16@ALSA_0.9 1.0.16
snd_pcm_format_silence_32@ALSA_0.9 1.0.16
snd_pcm_format_silence_64@ALSA_0.9 1.0.16
snd_pcm_format_size@ALSA_0.9 1.0.16
snd_pcm_format_unsigned@ALSA_0.9 1.0.16
snd_pcm_format_value@ALSA_0.9 1.0.16
snd_pcm_format_width@ALSA_0.9 1.0.16
snd_pcm_forward@ALSA_0.9.0rc8 1.0.16
snd_pcm_forwardable@ALSA_0.9 1.0.17
snd_pcm_frames_to_bytes@ALSA_0.9 1.0.16
snd_pcm_free_chmaps@ALSA_0.9 1.0.27
snd_pcm_generic_htimestamp@ALSA_0.9 1.0.16
snd_pcm_generic_real_htimestamp@ALSA_0.9 1.0.16
snd_pcm_get_chmap@ALSA_0.9 1.0.27
snd_pcm_get_params@ALSA_0.9 1.0.16
snd_pcm_hook_add@ALSA_0.9 1.0.16
snd_pcm_hook_get_pcm@ALSA_0.9 1.0.16
snd_pcm_hook_get_private@ALSA_0.9 1.0.16
snd_pcm_hook_remove@ALSA_0.9 1.0.16
snd_pcm_hook_set_private@ALSA_0.9 1.0.16
snd_pcm_hooks_open@ALSA_0.9 1.0.16
snd_pcm_htimestamp@ALSA_0.9 1.0.16
snd_pcm_hw_fast_tstamp@ALSA_0.9 1.0.16
snd_pcm_hw_free@ALSA_0.9 1.0.16
snd_pcm_hw_open@ALSA_0.9 1.0.16
snd_pcm_hw_param_dump@ALSA_0.9 1.0.16
snd_pcm_hw_params@ALSA_0.9 1.0.16
snd_pcm_hw_params_any@ALSA_0.9 1.0.16
snd_pcm_hw_params_can_disable_period_wakeup@ALSA_0.9 1.0.24.1
snd_pcm_hw_params_can_mmap_sample_resolution@ALSA_0.9 1.0.16
snd_pcm_hw_params_can_overrange@ALSA_0.9 1.0.16
snd_pcm_hw_params_can_pause@ALSA_0.9 1.0.16
snd_pcm_hw_params_can_resume@ALSA_0.9 1.0.16
snd_pcm_hw_params_can_sync_start@ALSA_0.9 1.0.16
snd_pcm_hw_params_copy@ALSA_0.9 1.0.16
snd_pcm_hw_params_current@ALSA_0.9 1.0.16
snd_pcm_hw_params_dump@ALSA_0.9 1.0.16
snd_pcm_hw_params_free@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_access@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_access@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_access_mask@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_buffer_size@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_buffer_size@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_buffer_size_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_buffer_size_max@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_buffer_size_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_buffer_size_min@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_buffer_time@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_buffer_time@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_buffer_time_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_buffer_time_max@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_buffer_time_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_buffer_time_min@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_channels@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_channels@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_channels_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_channels_max@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_channels_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_channels_min@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_export_buffer@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_fifo_size@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_format@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_format@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_format_mask@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_min_align@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_period_size@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_period_size@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_period_size_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_period_size_max@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_period_size_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_period_size_min@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_period_time@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_period_time@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_period_time_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_period_time_max@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_period_time_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_period_time_min@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_period_wakeup@ALSA_0.9 1.0.24.1
snd_pcm_hw_params_get_periods@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_periods@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_periods_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_periods_max@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_periods_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_periods_min@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_rate@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_rate@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_rate_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_rate_max@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_rate_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_rate_min@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_rate_numden@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_rate_resample@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_sbits@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_subformat@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_subformat@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_subformat_mask@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_tick_time@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_tick_time@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_tick_time_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_tick_time_max@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_get_tick_time_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_get_tick_time_min@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_is_batch@ALSA_0.9 1.0.16
snd_pcm_hw_params_is_block_transfer@ALSA_0.9 1.0.16
snd_pcm_hw_params_is_double@ALSA_0.9 1.0.16
snd_pcm_hw_params_is_half_duplex@ALSA_0.9 1.0.16
snd_pcm_hw_params_is_joint_duplex@ALSA_0.9 1.0.16
snd_pcm_hw_params_is_monotonic@ALSA_0.9 1.0.17
snd_pcm_hw_params_malloc@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_access@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_access_first@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_access_first@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_access_last@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_access_last@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_access_mask@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_size@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_size_first@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_size_first@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_buffer_size_last@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_size_last@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_buffer_size_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_size_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_size_minmax@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_size_near@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_size_near@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_buffer_time@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_time_first@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_time_first@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_buffer_time_last@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_time_last@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_buffer_time_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_time_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_time_minmax@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_time_near@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_buffer_time_near@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_channels@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_channels_first@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_channels_first@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_channels_last@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_channels_last@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_channels_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_channels_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_channels_minmax@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_channels_near@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_channels_near@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_export_buffer@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_format@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_format_first@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_format_first@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_format_last@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_format_last@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_format_mask@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_size@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_size_first@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_size_first@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_period_size_integer@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_size_last@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_size_last@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_period_size_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_size_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_size_minmax@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_size_near@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_size_near@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_period_time@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_time_first@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_time_first@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_period_time_last@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_time_last@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_period_time_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_time_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_time_minmax@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_time_near@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_period_time_near@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_period_wakeup@ALSA_0.9 1.0.24.1
snd_pcm_hw_params_set_periods@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_periods_first@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_periods_first@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_periods_integer@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_periods_last@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_periods_last@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_periods_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_periods_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_periods_minmax@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_periods_near@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_periods_near@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_rate@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_rate_first@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_rate_first@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_rate_last@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_rate_last@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_rate_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_rate_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_rate_minmax@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_rate_near@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_rate_near@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_rate_resample@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_subformat@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_subformat_first@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_subformat_first@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_subformat_last@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_subformat_last@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_subformat_mask@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_tick_time@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_tick_time_first@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_tick_time_first@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_tick_time_last@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_tick_time_last@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_set_tick_time_max@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_tick_time_min@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_tick_time_minmax@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_tick_time_near@ALSA_0.9 1.0.16
snd_pcm_hw_params_set_tick_time_near@ALSA_0.9.0rc4 1.0.16
snd_pcm_hw_params_sizeof@ALSA_0.9 1.0.16
snd_pcm_hw_params_supports_audio_wallclock_ts@ALSA_0.9 1.0.27
snd_pcm_hw_params_test_access@ALSA_0.9 1.0.16
snd_pcm_hw_params_test_buffer_size@ALSA_0.9 1.0.16
snd_pcm_hw_params_test_buffer_time@ALSA_0.9 1.0.16
snd_pcm_hw_params_test_channels@ALSA_0.9 1.0.16
snd_pcm_hw_params_test_format@ALSA_0.9 1.0.16
snd_pcm_hw_params_test_period_size@ALSA_0.9 1.0.16
snd_pcm_hw_params_test_period_time@ALSA_0.9 1.0.16
snd_pcm_hw_params_test_periods@ALSA_0.9 1.0.16
snd_pcm_hw_params_test_rate@ALSA_0.9 1.0.16
snd_pcm_hw_params_test_subformat@ALSA_0.9 1.0.16
snd_pcm_hw_params_test_tick_time@ALSA_0.9 1.0.16
snd_pcm_hw_refine@ALSA_0.9 1.0.16
snd_pcm_hwsync@ALSA_0.9 1.0.16
snd_pcm_iec958_open@ALSA_0.9 1.0.16
snd_pcm_info@ALSA_0.9 1.0.16
snd_pcm_info_copy@ALSA_0.9 1.0.16
snd_pcm_info_free@ALSA_0.9 1.0.16
snd_pcm_info_get_card@ALSA_0.9 1.0.16
snd_pcm_info_get_class@ALSA_0.9 1.0.16
snd_pcm_info_get_device@ALSA_0.9 1.0.16
snd_pcm_info_get_id@ALSA_0.9 1.0.16
snd_pcm_info_get_name@ALSA_0.9 1.0.16
snd_pcm_info_get_stream@ALSA_0.9 1.0.16
snd_pcm_info_get_subclass@ALSA_0.9 1.0.16
snd_pcm_info_get_subdevice@ALSA_0.9 1.0.16
snd_pcm_info_get_subdevice_name@ALSA_0.9 1.0.16
snd_pcm_info_get_subdevices_avail@ALSA_0.9 1.0.16
snd_pcm_info_get_subdevices_count@ALSA_0.9 1.0.16
snd_pcm_info_get_sync@ALSA_0.9 1.0.16
snd_pcm_info_malloc@ALSA_0.9 1.0.16
snd_pcm_info_set_device@ALSA_0.9 1.0.16
snd_pcm_info_set_stream@ALSA_0.9 1.0.16
snd_pcm_info_set_subdevice@ALSA_0.9 1.0.16
snd_pcm_info_sizeof@ALSA_0.9 1.0.16
snd_pcm_ioplug_create@ALSA_0.9 1.0.16
snd_pcm_ioplug_delete@ALSA_0.9 1.0.16
snd_pcm_ioplug_mmap_areas@ALSA_0.9 1.0.16
snd_pcm_ioplug_params_reset@ALSA_0.9 1.0.16
snd_pcm_ioplug_reinit_status@ALSA_0.9 1.0.16
snd_pcm_ioplug_set_param_list@ALSA_0.9 1.0.16
snd_pcm_ioplug_set_param_minmax@ALSA_0.9 1.0.16
snd_pcm_ioplug_set_state@ALSA_0.9 1.0.16
snd_pcm_ladspa_open@ALSA_0.9 1.0.16
snd_pcm_lfloat_convert_float_integer@ALSA_0.9 1.0.16
snd_pcm_lfloat_convert_integer_float@ALSA_0.9 1.0.16
snd_pcm_lfloat_get_s32_index@ALSA_0.9 1.0.16
snd_pcm_lfloat_open@ALSA_0.9 1.0.16
snd_pcm_lfloat_put_s32_index@ALSA_0.9 1.0.16
snd_pcm_linear_open@ALSA_0.9 1.0.16
snd_pcm_link@ALSA_0.9 1.0.16
snd_pcm_meter_add_scope@ALSA_0.9 1.0.16
snd_pcm_meter_get_boundary@ALSA_0.9 1.0.16
snd_pcm_meter_get_bufsize@ALSA_0.9 1.0.16
snd_pcm_meter_get_channels@ALSA_0.9 1.0.16
snd_pcm_meter_get_now@ALSA_0.9 1.0.16
snd_pcm_meter_get_rate@ALSA_0.9 1.0.16
snd_pcm_meter_open@ALSA_0.9 1.0.16
snd_pcm_meter_search_scope@ALSA_0.9 1.0.16
snd_pcm_mmap@ALSA_0.9 1.0.16
snd_pcm_mmap_begin@ALSA_0.9 1.0.16
snd_pcm_mmap_commit@ALSA_0.9 1.0.16
snd_pcm_mmap_readi@ALSA_0.9 1.0.16
snd_pcm_mmap_readn@ALSA_0.9 1.0.16
snd_pcm_mmap_writei@ALSA_0.9 1.0.16
snd_pcm_mmap_writen@ALSA_0.9 1.0.16
snd_pcm_mulaw_open@ALSA_0.9 1.0.16
snd_pcm_multi_open@ALSA_0.9 1.0.16
snd_pcm_munmap@ALSA_0.9 1.0.16
snd_pcm_name@ALSA_0.9 1.0.16
snd_pcm_nonblock@ALSA_0.9 1.0.16
snd_pcm_null_open@ALSA_0.9 1.0.16
snd_pcm_open@ALSA_0.9 1.0.16
snd_pcm_open_fallback@ALSA_0.9 1.0.25
snd_pcm_open_lconf@ALSA_0.9 1.0.16
snd_pcm_parse_control_id@ALSA_0.9 1.0.16
snd_pcm_pause@ALSA_0.9 1.0.16
snd_pcm_plug_open@ALSA_0.9 1.0.16
snd_pcm_poll_descriptors@ALSA_0.9 1.0.16
snd_pcm_poll_descriptors_count@ALSA_0.9 1.0.16
snd_pcm_poll_descriptors_revents@ALSA_0.9 1.0.16
snd_pcm_prepare@ALSA_0.9 1.0.16
snd_pcm_query_chmaps@ALSA_0.9 1.0.27
snd_pcm_query_chmaps_from_hw@ALSA_0.9 1.0.27
snd_pcm_rate_open@ALSA_0.9 1.0.16
snd_pcm_readi@ALSA_0.9 1.0.16
snd_pcm_readn@ALSA_0.9 1.0.16
snd_pcm_recover@ALSA_0.9 1.0.16
snd_pcm_reset@ALSA_0.9 1.0.16
snd_pcm_resume@ALSA_0.9 1.0.16
snd_pcm_rewind@ALSA_0.9 1.0.16
snd_pcm_rewindable@ALSA_0.9 1.0.17
snd_pcm_route_determine_ttable@ALSA_0.9 1.0.16
snd_pcm_route_load_ttable@ALSA_0.9 1.0.16
snd_pcm_route_open@ALSA_0.9 1.0.16
snd_pcm_samples_to_bytes@ALSA_0.9 1.0.16
snd_pcm_scope_get_callback_private@ALSA_0.9 1.0.16
snd_pcm_scope_get_name@ALSA_0.9 1.0.16
snd_pcm_scope_malloc@ALSA_0.9 1.0.16
snd_pcm_scope_s16_get_channel_buffer@ALSA_0.9 1.0.16
snd_pcm_scope_s16_open@ALSA_0.9 1.0.16
snd_pcm_scope_set_callback_private@ALSA_0.9 1.0.16
snd_pcm_scope_set_name@ALSA_0.9 1.0.16
snd_pcm_scope_set_ops@ALSA_0.9 1.0.16
snd_pcm_set_chmap@ALSA_0.9 1.0.27
snd_pcm_set_params@ALSA_0.9 1.0.16
snd_pcm_share_open@ALSA_0.9 1.0.16
snd_pcm_shm_open@ALSA_0.9 1.0.16
snd_pcm_slave_conf@ALSA_0.9 1.0.16
snd_pcm_softvol_open@ALSA_0.9 1.0.16
snd_pcm_start@ALSA_0.9 1.0.16
snd_pcm_start_mode_name@ALSA_0.9 1.0.16
snd_pcm_state@ALSA_0.9 1.0.16
snd_pcm_state_name@ALSA_0.9 1.0.16
snd_pcm_status@ALSA_0.9 1.0.16
snd_pcm_status_copy@ALSA_0.9 1.0.16
snd_pcm_status_dump@ALSA_0.9 1.0.16
snd_pcm_status_free@ALSA_0.9 1.0.16
snd_pcm_status_get_audio_htstamp@ALSA_0.9 1.0.27
snd_pcm_status_get_avail@ALSA_0.9 1.0.16
snd_pcm_status_get_avail_max@ALSA_0.9 1.0.16
snd_pcm_status_get_delay@ALSA_0.9 1.0.16
snd_pcm_status_get_htstamp@ALSA_0.9.0rc8 1.0.16
snd_pcm_status_get_overrange@ALSA_0.9 1.0.16
snd_pcm_status_get_state@ALSA_0.9 1.0.16
snd_pcm_status_get_trigger_htstamp@ALSA_0.9.0rc8 1.0.16
snd_pcm_status_get_trigger_tstamp@ALSA_0.9 1.0.16
snd_pcm_status_get_tstamp@ALSA_0.9 1.0.16
snd_pcm_status_malloc@ALSA_0.9 1.0.16
snd_pcm_status_sizeof@ALSA_0.9 1.0.16
snd_pcm_stream@ALSA_0.9 1.0.16
snd_pcm_stream_name@ALSA_0.9 1.0.16
snd_pcm_subformat_description@ALSA_0.9 1.0.16
snd_pcm_subformat_mask_any@ALSA_0.9 1.0.16
snd_pcm_subformat_mask_copy@ALSA_0.9 1.0.16
snd_pcm_subformat_mask_empty@ALSA_0.9 1.0.16
snd_pcm_subformat_mask_free@ALSA_0.9 1.0.16
snd_pcm_subformat_mask_malloc@ALSA_0.9 1.0.16
snd_pcm_subformat_mask_none@ALSA_0.9 1.0.16
snd_pcm_subformat_mask_reset@ALSA_0.9 1.0.16
snd_pcm_subformat_mask_set@ALSA_0.9 1.0.16
snd_pcm_subformat_mask_sizeof@ALSA_0.9 1.0.16
snd_pcm_subformat_mask_test@ALSA_0.9 1.0.16
snd_pcm_subformat_name@ALSA_0.9 1.0.16
snd_pcm_sw_params@ALSA_0.9 1.0.16
snd_pcm_sw_params_copy@ALSA_0.9 1.0.16
snd_pcm_sw_params_current@ALSA_0.9 1.0.16
snd_pcm_sw_params_dump@ALSA_0.9 1.0.16
snd_pcm_sw_params_free@ALSA_0.9 1.0.16
snd_pcm_sw_params_get_avail_min@ALSA_0.9 1.0.16
snd_pcm_sw_params_get_avail_min@ALSA_0.9.0rc4 1.0.16
snd_pcm_sw_params_get_boundary@ALSA_0.9 1.0.16
snd_pcm_sw_params_get_period_event@ALSA_0.9 1.0.17
snd_pcm_sw_params_get_silence_size@ALSA_0.9 1.0.16
snd_pcm_sw_params_get_silence_size@ALSA_0.9.0rc4 1.0.16
snd_pcm_sw_params_get_silence_threshold@ALSA_0.9 1.0.16
snd_pcm_sw_params_get_silence_threshold@ALSA_0.9.0rc4 1.0.16
snd_pcm_sw_params_get_sleep_min@ALSA_0.9 1.0.16
snd_pcm_sw_params_get_sleep_min@ALSA_0.9.0rc4 1.0.16
snd_pcm_sw_params_get_start_mode@ALSA_0.9 1.0.16
snd_pcm_sw_params_get_start_threshold@ALSA_0.9 1.0.16
snd_pcm_sw_params_get_start_threshold@ALSA_0.9.0rc4 1.0.16
snd_pcm_sw_params_get_stop_threshold@ALSA_0.9 1.0.16
snd_pcm_sw_params_get_stop_threshold@ALSA_0.9.0rc4 1.0.16
snd_pcm_sw_params_get_tstamp_mode@ALSA_0.9 1.0.16
snd_pcm_sw_params_get_tstamp_mode@ALSA_0.9.0rc4 1.0.16
snd_pcm_sw_params_get_xfer_align@ALSA_0.9 1.0.16
snd_pcm_sw_params_get_xfer_align@ALSA_0.9.0rc4 1.0.16
snd_pcm_sw_params_get_xrun_mode@ALSA_0.9 1.0.16
snd_pcm_sw_params_malloc@ALSA_0.9 1.0.16
snd_pcm_sw_params_set_avail_min@ALSA_0.9 1.0.16
snd_pcm_sw_params_set_period_event@ALSA_0.9 1.0.17
snd_pcm_sw_params_set_silence_size@ALSA_0.9 1.0.16
snd_pcm_sw_params_set_silence_threshold@ALSA_0.9 1.0.16
snd_pcm_sw_params_set_sleep_min@ALSA_0.9 1.0.16
snd_pcm_sw_params_set_start_mode@ALSA_0.9 1.0.16
snd_pcm_sw_params_set_start_threshold@ALSA_0.9 1.0.16
snd_pcm_sw_params_set_stop_threshold@ALSA_0.9 1.0.16
snd_pcm_sw_params_set_tstamp_mode@ALSA_0.9 1.0.16
snd_pcm_sw_params_set_xfer_align@ALSA_0.9 1.0.16
snd_pcm_sw_params_set_xrun_mode@ALSA_0.9 1.0.16
snd_pcm_sw_params_sizeof@ALSA_0.9 1.0.16
snd_pcm_tstamp_mode_name@ALSA_0.9 1.0.16
snd_pcm_type@ALSA_0.9 1.0.16
snd_pcm_type_name@ALSA_0.9.0 1.0.16
snd_pcm_unlink@ALSA_0.9 1.0.16
snd_pcm_wait@ALSA_0.9 1.0.16
snd_pcm_writei@ALSA_0.9 1.0.16
snd_pcm_writen@ALSA_0.9 1.0.16
snd_pcm_xrun_mode_name@ALSA_0.9 1.0.16
snd_rawmidi_close@ALSA_0.9 1.0.16
snd_rawmidi_conf_generic_id@ALSA_0.9 1.0.16
snd_rawmidi_drain@ALSA_0.9 1.0.16
snd_rawmidi_drop@ALSA_0.9 1.0.16
snd_rawmidi_hw_open@ALSA_0.9 1.0.16
snd_rawmidi_info@ALSA_0.9 1.0.16
snd_rawmidi_info_copy@ALSA_0.9 1.0.16
snd_rawmidi_info_free@ALSA_0.9 1.0.16
snd_rawmidi_info_get_card@ALSA_0.9 1.0.16
snd_rawmidi_info_get_device@ALSA_0.9 1.0.16
snd_rawmidi_info_get_flags@ALSA_0.9 1.0.16
snd_rawmidi_info_get_id@ALSA_0.9 1.0.16
snd_rawmidi_info_get_name@ALSA_0.9 1.0.16
snd_rawmidi_info_get_stream@ALSA_0.9 1.0.16
snd_rawmidi_info_get_subdevice@ALSA_0.9 1.0.16
snd_rawmidi_info_get_subdevice_name@ALSA_0.9 1.0.16
snd_rawmidi_info_get_subdevices_avail@ALSA_0.9 1.0.16
snd_rawmidi_info_get_subdevices_count@ALSA_0.9 1.0.16
snd_rawmidi_info_malloc@ALSA_0.9 1.0.16
snd_rawmidi_info_set_device@ALSA_0.9 1.0.16
snd_rawmidi_info_set_stream@ALSA_0.9 1.0.16
snd_rawmidi_info_set_subdevice@ALSA_0.9 1.0.16
snd_rawmidi_info_sizeof@ALSA_0.9 1.0.16
snd_rawmidi_name@ALSA_0.9 1.0.16
snd_rawmidi_nonblock@ALSA_0.9 1.0.16
snd_rawmidi_open@ALSA_0.9 1.0.16
snd_rawmidi_open_lconf@ALSA_0.9 1.0.16
snd_rawmidi_params@ALSA_0.9 1.0.16
snd_rawmidi_params_copy@ALSA_0.9 1.0.16
snd_rawmidi_params_current@ALSA_0.9 1.0.16
snd_rawmidi_params_free@ALSA_0.9 1.0.16
snd_rawmidi_params_get_avail_min@ALSA_0.9 1.0.16
snd_rawmidi_params_get_buffer_size@ALSA_0.9 1.0.16
snd_rawmidi_params_get_no_active_sensing@ALSA_0.9 1.0.16
snd_rawmidi_params_malloc@ALSA_0.9 1.0.16
snd_rawmidi_params_set_avail_min@ALSA_0.9 1.0.16
snd_rawmidi_params_set_buffer_size@ALSA_0.9 1.0.16
snd_rawmidi_params_set_no_active_sensing@ALSA_0.9 1.0.16
snd_rawmidi_params_sizeof@ALSA_0.9 1.0.16
snd_rawmidi_poll_descriptors@ALSA_0.9 1.0.16
snd_rawmidi_poll_descriptors_count@ALSA_0.9 1.0.16
snd_rawmidi_poll_descriptors_revents@ALSA_0.9 1.0.16
snd_rawmidi_read@ALSA_0.9 1.0.16
snd_rawmidi_status@ALSA_0.9 1.0.16
snd_rawmidi_status_copy@ALSA_0.9 1.0.16
snd_rawmidi_status_free@ALSA_0.9 1.0.16
snd_rawmidi_status_get_avail@ALSA_0.9 1.0.16
snd_rawmidi_status_get_tstamp@ALSA_0.9 1.0.16
snd_rawmidi_status_get_xruns@ALSA_0.9 1.0.16
snd_rawmidi_status_malloc@ALSA_0.9 1.0.16
snd_rawmidi_status_sizeof@ALSA_0.9 1.0.16
snd_rawmidi_stream@ALSA_0.9 1.0.16
snd_rawmidi_type@ALSA_0.9 1.0.16
snd_rawmidi_virtual_open@ALSA_0.9 1.0.16
snd_rawmidi_write@ALSA_0.9 1.0.16
snd_receive_fd@ALSA_0.9 1.0.16
snd_sctl_build@ALSA_0.9 1.0.16
snd_sctl_free@ALSA_0.9 1.0.16
snd_sctl_install@ALSA_0.9 1.0.16
snd_sctl_remove@ALSA_0.9 1.0.16
snd_send_fd@ALSA_0.9 1.0.16
snd_seq_alloc_named_queue@ALSA_0.9 1.0.16
snd_seq_alloc_queue@ALSA_0.9 1.0.16
snd_seq_change_bit@ALSA_0.9 1.0.16
snd_seq_client_id@ALSA_0.9 1.0.16
snd_seq_client_info_copy@ALSA_0.9 1.0.16
snd_seq_client_info_event_filter_add@ALSA_0.9 1.0.17
snd_seq_client_info_event_filter_check@ALSA_0.9 1.0.17
snd_seq_client_info_event_filter_clear@ALSA_0.9 1.0.17
snd_seq_client_info_event_filter_del@ALSA_0.9 1.0.17
snd_seq_client_info_free@ALSA_0.9 1.0.16
snd_seq_client_info_get_broadcast_filter@ALSA_0.9 1.0.16
snd_seq_client_info_get_client@ALSA_0.9 1.0.16
snd_seq_client_info_get_error_bounce@ALSA_0.9 1.0.16
snd_seq_client_info_get_event_filter@ALSA_0.9 1.0.16
snd_seq_client_info_get_event_lost@ALSA_0.9 1.0.16
snd_seq_client_info_get_name@ALSA_0.9 1.0.16
snd_seq_client_info_get_num_ports@ALSA_0.9 1.0.16
snd_seq_client_info_get_type@ALSA_0.9 1.0.16
snd_seq_client_info_malloc@ALSA_0.9 1.0.16
snd_seq_client_info_set_broadcast_filter@ALSA_0.9 1.0.16
snd_seq_client_info_set_client@ALSA_0.9 1.0.16
snd_seq_client_info_set_error_bounce@ALSA_0.9 1.0.16
snd_seq_client_info_set_event_filter@ALSA_0.9 1.0.16
snd_seq_client_info_set_name@ALSA_0.9 1.0.16
snd_seq_client_info_sizeof@ALSA_0.9 1.0.16
snd_seq_client_pool_copy@ALSA_0.9 1.0.16
snd_seq_client_pool_free@ALSA_0.9 1.0.16
snd_seq_client_pool_get_client@ALSA_0.9 1.0.16
snd_seq_client_pool_get_input_free@ALSA_0.9 1.0.16
snd_seq_client_pool_get_input_pool@ALSA_0.9 1.0.16
snd_seq_client_pool_get_output_free@ALSA_0.9 1.0.16
snd_seq_client_pool_get_output_pool@ALSA_0.9 1.0.16
snd_seq_client_pool_get_output_room@ALSA_0.9 1.0.16
snd_seq_client_pool_malloc@ALSA_0.9 1.0.16
snd_seq_client_pool_set_input_pool@ALSA_0.9 1.0.16
snd_seq_client_pool_set_output_pool@ALSA_0.9 1.0.16
snd_seq_client_pool_set_output_room@ALSA_0.9 1.0.16
snd_seq_client_pool_sizeof@ALSA_0.9 1.0.16
snd_seq_close@ALSA_0.9 1.0.16
snd_seq_connect_from@ALSA_0.9 1.0.16
snd_seq_connect_to@ALSA_0.9 1.0.16
snd_seq_control_queue@ALSA_0.9 1.0.16
snd_seq_create_event@ALSA_0.9 1.0.16
snd_seq_create_port@ALSA_0.9 1.0.16
snd_seq_create_queue@ALSA_0.9 1.0.16
snd_seq_create_simple_port@ALSA_0.9 1.0.16
snd_seq_delete_port@ALSA_0.9 1.0.16
snd_seq_delete_simple_port@ALSA_0.9 1.0.16
snd_seq_disconnect_from@ALSA_0.9 1.0.16
snd_seq_disconnect_to@ALSA_0.9 1.0.16
snd_seq_drain_output@ALSA_0.9 1.0.16
snd_seq_drop_input@ALSA_0.9 1.0.16
snd_seq_drop_input_buffer@ALSA_0.9 1.0.16
snd_seq_drop_output@ALSA_0.9 1.0.16
snd_seq_drop_output_buffer@ALSA_0.9 1.0.16
snd_seq_event_input@ALSA_0.9 1.0.16
snd_seq_event_input_pending@ALSA_0.9 1.0.16
snd_seq_event_length@ALSA_0.9 1.0.16
snd_seq_event_output@ALSA_0.9 1.0.16
snd_seq_event_output_buffer@ALSA_0.9 1.0.16
snd_seq_event_output_direct@ALSA_0.9 1.0.16
snd_seq_event_output_pending@ALSA_0.9 1.0.16
snd_seq_event_types@ALSA_0.9 1.0.16
snd_seq_extract_output@ALSA_0.9 1.0.16
snd_seq_free_event@ALSA_0.9 1.0.16
snd_seq_free_queue@ALSA_0.9 1.0.16
snd_seq_get_any_client_info@ALSA_0.9 1.0.16
snd_seq_get_any_port_info@ALSA_0.9 1.0.16
snd_seq_get_bit@ALSA_0.9 1.0.16
snd_seq_get_client_info@ALSA_0.9 1.0.16
snd_seq_get_client_pool@ALSA_0.9 1.0.16
snd_seq_get_input_buffer_size@ALSA_0.9 1.0.16
snd_seq_get_output_buffer_size@ALSA_0.9 1.0.16
snd_seq_get_port_info@ALSA_0.9 1.0.16
snd_seq_get_port_subscription@ALSA_0.9 1.0.16
snd_seq_get_queue_info@ALSA_0.9 1.0.16
snd_seq_get_queue_status@ALSA_0.9 1.0.16
snd_seq_get_queue_tempo@ALSA_0.9 1.0.16
snd_seq_get_queue_timer@ALSA_0.9 1.0.16
snd_seq_get_queue_usage@ALSA_0.9 1.0.16
snd_seq_hw_open@ALSA_0.9 1.0.16
snd_seq_name@ALSA_0.9 1.0.16
snd_seq_nonblock@ALSA_0.9 1.0.16
snd_seq_open@ALSA_0.9 1.0.16
snd_seq_open_lconf@ALSA_0.9 1.0.16
snd_seq_parse_address@ALSA_0.9 1.0.16
snd_seq_poll_descriptors@ALSA_0.9 1.0.16
snd_seq_poll_descriptors_count@ALSA_0.9 1.0.16
snd_seq_poll_descriptors_revents@ALSA_0.9 1.0.16
snd_seq_port_info_copy@ALSA_0.9 1.0.16
snd_seq_port_info_free@ALSA_0.9 1.0.16
snd_seq_port_info_get_addr@ALSA_0.9 1.0.16
snd_seq_port_info_get_capability@ALSA_0.9 1.0.16
snd_seq_port_info_get_client@ALSA_0.9 1.0.16
snd_seq_port_info_get_midi_channels@ALSA_0.9 1.0.16
snd_seq_port_info_get_midi_voices@ALSA_0.9 1.0.16
snd_seq_port_info_get_name@ALSA_0.9 1.0.16
snd_seq_port_info_get_port@ALSA_0.9 1.0.16
snd_seq_port_info_get_port_specified@ALSA_0.9 1.0.16
snd_seq_port_info_get_read_use@ALSA_0.9 1.0.16
snd_seq_port_info_get_synth_voices@ALSA_0.9 1.0.16
snd_seq_port_info_get_timestamp_queue@ALSA_0.9 1.0.16
snd_seq_port_info_get_timestamp_real@ALSA_0.9 1.0.16
snd_seq_port_info_get_timestamping@ALSA_0.9 1.0.16
snd_seq_port_info_get_type@ALSA_0.9 1.0.16
snd_seq_port_info_get_write_use@ALSA_0.9 1.0.16
snd_seq_port_info_malloc@ALSA_0.9 1.0.16
snd_seq_port_info_set_addr@ALSA_0.9 1.0.16
snd_seq_port_info_set_capability@ALSA_0.9 1.0.16
snd_seq_port_info_set_client@ALSA_0.9 1.0.16
snd_seq_port_info_set_midi_channels@ALSA_0.9 1.0.16
snd_seq_port_info_set_midi_voices@ALSA_0.9 1.0.16
snd_seq_port_info_set_name@ALSA_0.9 1.0.16
snd_seq_port_info_set_port@ALSA_0.9 1.0.16
snd_seq_port_info_set_port_specified@ALSA_0.9 1.0.16
snd_seq_port_info_set_synth_voices@ALSA_0.9 1.0.16
snd_seq_port_info_set_timestamp_queue@ALSA_0.9 1.0.16
snd_seq_port_info_set_timestamp_real@ALSA_0.9 1.0.16
snd_seq_port_info_set_timestamping@ALSA_0.9 1.0.16
snd_seq_port_info_set_type@ALSA_0.9 1.0.16
snd_seq_port_info_sizeof@ALSA_0.9 1.0.16
snd_seq_port_subscribe_copy@ALSA_0.9 1.0.16
snd_seq_port_subscribe_free@ALSA_0.9 1.0.16
snd_seq_port_subscribe_get_dest@ALSA_0.9 1.0.16
snd_seq_port_subscribe_get_exclusive@ALSA_0.9 1.0.16
snd_seq_port_subscribe_get_queue@ALSA_0.9 1.0.16
snd_seq_port_subscribe_get_sender@ALSA_0.9 1.0.16
snd_seq_port_subscribe_get_time_real@ALSA_0.9 1.0.16
snd_seq_port_subscribe_get_time_update@ALSA_0.9 1.0.16
snd_seq_port_subscribe_malloc@ALSA_0.9 1.0.16
snd_seq_port_subscribe_set_dest@ALSA_0.9 1.0.16
snd_seq_port_subscribe_set_exclusive@ALSA_0.9 1.0.16
snd_seq_port_subscribe_set_queue@ALSA_0.9 1.0.16
snd_seq_port_subscribe_set_sender@ALSA_0.9 1.0.16
snd_seq_port_subscribe_set_time_real@ALSA_0.9 1.0.16
snd_seq_port_subscribe_set_time_update@ALSA_0.9 1.0.16
snd_seq_port_subscribe_sizeof@ALSA_0.9 1.0.16
snd_seq_query_named_queue@ALSA_0.9 1.0.16
snd_seq_query_next_client@ALSA_0.9 1.0.16
snd_seq_query_next_port@ALSA_0.9 1.0.16
snd_seq_query_port_subscribers@ALSA_0.9 1.0.16
snd_seq_query_subscribe_copy@ALSA_0.9 1.0.16
snd_seq_query_subscribe_free@ALSA_0.9 1.0.16
snd_seq_query_subscribe_get_addr@ALSA_0.9 1.0.16
snd_seq_query_subscribe_get_client@ALSA_0.9 1.0.16
snd_seq_query_subscribe_get_exclusive@ALSA_0.9 1.0.16
snd_seq_query_subscribe_get_index@ALSA_0.9 1.0.16
snd_seq_query_subscribe_get_num_subs@ALSA_0.9 1.0.16
snd_seq_query_subscribe_get_port@ALSA_0.9 1.0.16
snd_seq_query_subscribe_get_queue@ALSA_0.9 1.0.16
snd_seq_query_subscribe_get_root@ALSA_0.9 1.0.16
snd_seq_query_subscribe_get_time_real@ALSA_0.9 1.0.16
snd_seq_query_subscribe_get_time_update@ALSA_0.9 1.0.16
snd_seq_query_subscribe_get_type@ALSA_0.9 1.0.16
snd_seq_query_subscribe_malloc@ALSA_0.9 1.0.16
snd_seq_query_subscribe_set_client@ALSA_0.9 1.0.16
snd_seq_query_subscribe_set_index@ALSA_0.9 1.0.16
snd_seq_query_subscribe_set_port@ALSA_0.9 1.0.16
snd_seq_query_subscribe_set_root@ALSA_0.9 1.0.16
snd_seq_query_subscribe_set_type@ALSA_0.9 1.0.16
snd_seq_query_subscribe_sizeof@ALSA_0.9 1.0.16
snd_seq_queue_info_copy@ALSA_0.9 1.0.16
snd_seq_queue_info_free@ALSA_0.9 1.0.16
snd_seq_queue_info_get_flags@ALSA_0.9 1.0.16
snd_seq_queue_info_get_locked@ALSA_0.9 1.0.16
snd_seq_queue_info_get_name@ALSA_0.9 1.0.16
snd_seq_queue_info_get_owner@ALSA_0.9 1.0.16
snd_seq_queue_info_get_queue@ALSA_0.9 1.0.16
snd_seq_queue_info_malloc@ALSA_0.9 1.0.16
snd_seq_queue_info_set_flags@ALSA_0.9 1.0.16
snd_seq_queue_info_set_locked@ALSA_0.9 1.0.16
snd_seq_queue_info_set_name@ALSA_0.9 1.0.16
snd_seq_queue_info_set_owner@ALSA_0.9 1.0.16
snd_seq_queue_info_sizeof@ALSA_0.9 1.0.16
snd_seq_queue_status_copy@ALSA_0.9 1.0.16
snd_seq_queue_status_free@ALSA_0.9 1.0.16
snd_seq_queue_status_get_events@ALSA_0.9 1.0.16
snd_seq_queue_status_get_queue@ALSA_0.9 1.0.16
snd_seq_queue_status_get_real_time@ALSA_0.9 1.0.16
snd_seq_queue_status_get_status@ALSA_0.9 1.0.16
snd_seq_queue_status_get_tick_time@ALSA_0.9 1.0.16
snd_seq_queue_status_malloc@ALSA_0.9 1.0.16
snd_seq_queue_status_sizeof@ALSA_0.9 1.0.16
snd_seq_queue_tempo_copy@ALSA_0.9 1.0.16
snd_seq_queue_tempo_free@ALSA_0.9 1.0.16
snd_seq_queue_tempo_get_ppq@ALSA_0.9 1.0.16
snd_seq_queue_tempo_get_queue@ALSA_0.9 1.0.16
snd_seq_queue_tempo_get_skew@ALSA_0.9 1.0.16
snd_seq_queue_tempo_get_skew_base@ALSA_0.9 1.0.16
snd_seq_queue_tempo_get_tempo@ALSA_0.9 1.0.16
snd_seq_queue_tempo_malloc@ALSA_0.9 1.0.16
snd_seq_queue_tempo_set_ppq@ALSA_0.9 1.0.16
snd_seq_queue_tempo_set_skew@ALSA_0.9 1.0.16
snd_seq_queue_tempo_set_skew_base@ALSA_0.9 1.0.16
snd_seq_queue_tempo_set_tempo@ALSA_0.9 1.0.16
snd_seq_queue_tempo_sizeof@ALSA_0.9 1.0.16
snd_seq_queue_timer_copy@ALSA_0.9 1.0.16
snd_seq_queue_timer_free@ALSA_0.9 1.0.16
snd_seq_queue_timer_get_id@ALSA_0.9 1.0.16
snd_seq_queue_timer_get_queue@ALSA_0.9 1.0.16
snd_seq_queue_timer_get_resolution@ALSA_0.9 1.0.16
snd_seq_queue_timer_get_type@ALSA_0.9 1.0.16
snd_seq_queue_timer_malloc@ALSA_0.9 1.0.16
snd_seq_queue_timer_set_id@ALSA_0.9 1.0.16
snd_seq_queue_timer_set_resolution@ALSA_0.9 1.0.16
snd_seq_queue_timer_set_type@ALSA_0.9 1.0.16
snd_seq_queue_timer_sizeof@ALSA_0.9 1.0.16
snd_seq_remove_events@ALSA_0.9 1.0.16
snd_seq_remove_events_copy@ALSA_0.9 1.0.16
snd_seq_remove_events_free@ALSA_0.9 1.0.16
snd_seq_remove_events_get_channel@ALSA_0.9 1.0.16
snd_seq_remove_events_get_condition@ALSA_0.9 1.0.16
snd_seq_remove_events_get_dest@ALSA_0.9 1.0.16
snd_seq_remove_events_get_event_type@ALSA_0.9 1.0.16
snd_seq_remove_events_get_queue@ALSA_0.9 1.0.16
snd_seq_remove_events_get_tag@ALSA_0.9 1.0.16
snd_seq_remove_events_get_time@ALSA_0.9 1.0.16
snd_seq_remove_events_malloc@ALSA_0.9 1.0.16
snd_seq_remove_events_set_channel@ALSA_0.9 1.0.16
snd_seq_remove_events_set_condition@ALSA_0.9 1.0.16
snd_seq_remove_events_set_dest@ALSA_0.9 1.0.16
snd_seq_remove_events_set_event_type@ALSA_0.9 1.0.16
snd_seq_remove_events_set_queue@ALSA_0.9 1.0.16
snd_seq_remove_events_set_tag@ALSA_0.9 1.0.16
snd_seq_remove_events_set_time@ALSA_0.9 1.0.16
snd_seq_remove_events_sizeof@ALSA_0.9 1.0.16
snd_seq_reset_pool_input@ALSA_0.9 1.0.16
snd_seq_reset_pool_output@ALSA_0.9 1.0.16
snd_seq_set_bit@ALSA_0.9 1.0.16
snd_seq_set_client_event_filter@ALSA_0.9 1.0.16
snd_seq_set_client_info@ALSA_0.9 1.0.16
snd_seq_set_client_name@ALSA_0.9 1.0.16
snd_seq_set_client_pool@ALSA_0.9 1.0.16
snd_seq_set_client_pool_input@ALSA_0.9 1.0.16
snd_seq_set_client_pool_output@ALSA_0.9 1.0.16
snd_seq_set_client_pool_output_room@ALSA_0.9 1.0.16
snd_seq_set_input_buffer_size@ALSA_0.9 1.0.16
snd_seq_set_output_buffer_size@ALSA_0.9 1.0.16
snd_seq_set_port_info@ALSA_0.9 1.0.16
snd_seq_set_queue_info@ALSA_0.9 1.0.16
snd_seq_set_queue_tempo@ALSA_0.9 1.0.16
snd_seq_set_queue_timer@ALSA_0.9 1.0.16
snd_seq_set_queue_usage@ALSA_0.9 1.0.16
snd_seq_subscribe_port@ALSA_0.9 1.0.16
snd_seq_sync_output_queue@ALSA_0.9 1.0.16
snd_seq_system_info@ALSA_0.9 1.0.16
snd_seq_system_info_copy@ALSA_0.9 1.0.16
snd_seq_system_info_free@ALSA_0.9 1.0.16
snd_seq_system_info_get_channels@ALSA_0.9 1.0.16
snd_seq_system_info_get_clients@ALSA_0.9 1.0.16
snd_seq_system_info_get_cur_clients@ALSA_0.9 1.0.16
snd_seq_system_info_get_cur_queues@ALSA_0.9 1.0.16
snd_seq_system_info_get_ports@ALSA_0.9 1.0.16
snd_seq_system_info_get_queues@ALSA_0.9 1.0.16
snd_seq_system_info_malloc@ALSA_0.9 1.0.16
snd_seq_system_info_sizeof@ALSA_0.9 1.0.16
snd_seq_type@ALSA_0.9 1.0.16
snd_seq_unset_bit@ALSA_0.9 1.0.17
snd_seq_unsubscribe_port@ALSA_0.9 1.0.16
snd_shm_area_create@ALSA_0.9 1.0.16
snd_shm_area_destroy@ALSA_0.9 1.0.16
snd_shm_area_destructor@ALSA_0.9 1.0.16
snd_shm_area_share@ALSA_0.9 1.0.16
snd_spcm_init@ALSA_0.9 1.0.16
snd_spcm_init_duplex@ALSA_0.9 1.0.16
snd_spcm_init_get_params@ALSA_0.9 1.0.16
snd_strerror@ALSA_0.9 1.0.16
snd_timer_async@ALSA_0.9 1.0.16
snd_timer_close@ALSA_0.9 1.0.16
snd_timer_continue@ALSA_0.9 1.0.16
snd_timer_ginfo_copy@ALSA_0.9 1.0.16
snd_timer_ginfo_free@ALSA_0.9 1.0.16
snd_timer_ginfo_get_card@ALSA_0.9 1.0.16
snd_timer_ginfo_get_clients@ALSA_0.9 1.0.16
snd_timer_ginfo_get_flags@ALSA_0.9 1.0.16
snd_timer_ginfo_get_id@ALSA_0.9 1.0.16
snd_timer_ginfo_get_name@ALSA_0.9 1.0.16
snd_timer_ginfo_get_resolution@ALSA_0.9 1.0.16
snd_timer_ginfo_get_resolution_max@ALSA_0.9 1.0.16
snd_timer_ginfo_get_resolution_min@ALSA_0.9 1.0.16
snd_timer_ginfo_get_tid@ALSA_0.9 1.0.16
snd_timer_ginfo_malloc@ALSA_0.9 1.0.16
snd_timer_ginfo_set_tid@ALSA_0.9 1.0.16
snd_timer_ginfo_sizeof@ALSA_0.9 1.0.16
snd_timer_hw_open@ALSA_0.9 1.0.16
snd_timer_id_copy@ALSA_0.9 1.0.16
snd_timer_id_free@ALSA_0.9 1.0.16
snd_timer_id_get_card@ALSA_0.9 1.0.16
snd_timer_id_get_class@ALSA_0.9 1.0.16
snd_timer_id_get_device@ALSA_0.9 1.0.16
snd_timer_id_get_sclass@ALSA_0.9 1.0.16
snd_timer_id_get_subdevice@ALSA_0.9 1.0.16
snd_timer_id_malloc@ALSA_0.9 1.0.16
snd_timer_id_set_card@ALSA_0.9 1.0.16
snd_timer_id_set_class@ALSA_0.9 1.0.16
snd_timer_id_set_device@ALSA_0.9 1.0.16
snd_timer_id_set_sclass@ALSA_0.9 1.0.16
snd_timer_id_set_subdevice@ALSA_0.9 1.0.16
snd_timer_id_sizeof@ALSA_0.9 1.0.16
snd_timer_info@ALSA_0.9 1.0.16
snd_timer_info_copy@ALSA_0.9 1.0.16
snd_timer_info_free@ALSA_0.9 1.0.16
snd_timer_info_get_card@ALSA_0.9 1.0.16
snd_timer_info_get_id@ALSA_0.9 1.0.16
snd_timer_info_get_name@ALSA_0.9 1.0.16
snd_timer_info_get_resolution@ALSA_0.9 1.0.16
snd_timer_info_get_ticks@ALSA_0.9 1.0.16
snd_timer_info_is_slave@ALSA_0.9 1.0.16
snd_timer_info_malloc@ALSA_0.9 1.0.16
snd_timer_info_sizeof@ALSA_0.9 1.0.16
snd_timer_name@ALSA_0.9 1.0.16
snd_timer_nonblock@ALSA_0.9 1.0.16
snd_timer_open@ALSA_0.9 1.0.16
snd_timer_open_lconf@ALSA_0.9 1.0.16
snd_timer_params@ALSA_0.9 1.0.16
snd_timer_params_copy@ALSA_0.9 1.0.16
snd_timer_params_free@ALSA_0.9 1.0.16
snd_timer_params_get_auto_start@ALSA_0.9 1.0.16
snd_timer_params_get_early_event@ALSA_0.9 1.0.16
snd_timer_params_get_exclusive@ALSA_0.9.0 1.0.16
snd_timer_params_get_filter@ALSA_0.9.0 1.0.16
snd_timer_params_get_queue_size@ALSA_0.9 1.0.16
snd_timer_params_get_ticks@ALSA_0.9 1.0.16
snd_timer_params_malloc@ALSA_0.9 1.0.16
snd_timer_params_set_auto_start@ALSA_0.9 1.0.16
snd_timer_params_set_early_event@ALSA_0.9 1.0.16
snd_timer_params_set_exclusive@ALSA_0.9.0 1.0.16
snd_timer_params_set_filter@ALSA_0.9.0 1.0.16
snd_timer_params_set_queue_size@ALSA_0.9 1.0.16
snd_timer_params_set_ticks@ALSA_0.9 1.0.16
snd_timer_params_sizeof@ALSA_0.9 1.0.16
snd_timer_poll_descriptors@ALSA_0.9 1.0.16
snd_timer_poll_descriptors_count@ALSA_0.9 1.0.16
snd_timer_poll_descriptors_revents@ALSA_0.9 1.0.16
snd_timer_query_close@ALSA_0.9 1.0.16
snd_timer_query_hw_open@ALSA_0.9 1.0.16
snd_timer_query_info@ALSA_0.9.0 1.0.16
snd_timer_query_next_device@ALSA_0.9 1.0.16
snd_timer_query_open@ALSA_0.9 1.0.16
snd_timer_query_open_lconf@ALSA_0.9 1.0.16
snd_timer_query_params@ALSA_0.9.0 1.0.16
snd_timer_query_status@ALSA_0.9.0 1.0.16
snd_timer_read@ALSA_0.9 1.0.16
snd_timer_start@ALSA_0.9 1.0.16
snd_timer_status@ALSA_0.9 1.0.16
snd_timer_status_copy@ALSA_0.9 1.0.16
snd_timer_status_free@ALSA_0.9 1.0.16
snd_timer_status_get_lost@ALSA_0.9 1.0.16
snd_timer_status_get_overrun@ALSA_0.9 1.0.16
snd_timer_status_get_queue@ALSA_0.9 1.0.16
snd_timer_status_get_resolution@ALSA_0.9 1.0.16
snd_timer_status_get_timestamp@ALSA_0.9 1.0.16
snd_timer_status_malloc@ALSA_0.9 1.0.16
snd_timer_status_sizeof@ALSA_0.9 1.0.16
snd_timer_stop@ALSA_0.9 1.0.16
snd_timer_type@ALSA_0.9 1.0.16
snd_tlv_convert_from_dB@ALSA_0.9 1.0.16
snd_tlv_convert_to_dB@ALSA_0.9 1.0.16
snd_tlv_get_dB_range@ALSA_0.9 1.0.16
snd_tlv_parse_dB_info@ALSA_0.9 1.0.16
snd_use_case_free_list@ALSA_0.9 1.0.24.1
snd_use_case_get@ALSA_0.9 1.0.24.1
snd_use_case_get_list@ALSA_0.9 1.0.24.1
snd_use_case_geti@ALSA_0.9 1.0.24.1
snd_use_case_identifier@ALSA_0.9 1.0.24.1
snd_use_case_mgr_close@ALSA_0.9 1.0.24.1
snd_use_case_mgr_open@ALSA_0.9 1.0.24.1
snd_use_case_mgr_reload@ALSA_0.9 1.0.24.1
snd_use_case_mgr_reset@ALSA_0.9 1.0.24.1
snd_use_case_set@ALSA_0.9 1.0.24.1
snd_user_file@ALSA_0.9 1.0.16
|