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 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959
|
// Code generated by 'yaegi extract syscall'. DO NOT EDIT.
//go:build go1.22
// +build go1.22
package syscall
import (
"go/constant"
"go/token"
"reflect"
"syscall"
)
func init() {
Symbols["syscall/syscall"] = map[string]reflect.Value{
// function, constant and variable definitions
"AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)),
"AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)),
"AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)),
"AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)),
"AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)),
"AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)),
"AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)),
"AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)),
"AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)),
"AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)),
"AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)),
"AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)),
"AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)),
"AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)),
"AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)),
"AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)),
"AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)),
"AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)),
"AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)),
"AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)),
"AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)),
"AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"AF_UTUN": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)),
"Accept": reflect.ValueOf(syscall.Accept),
"Access": reflect.ValueOf(syscall.Access),
"Adjtime": reflect.ValueOf(syscall.Adjtime),
"B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)),
"B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)),
"B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)),
"B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)),
"B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)),
"B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)),
"B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)),
"B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)),
"B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)),
"B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)),
"B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)),
"B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)),
"B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)),
"B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)),
"B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)),
"B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)),
"B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)),
"B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)),
"B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)),
"B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)),
"B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)),
"B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)),
"BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)),
"BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)),
"BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)),
"BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)),
"BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)),
"BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)),
"BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)),
"BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)),
"BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)),
"BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)),
"BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)),
"BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)),
"BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)),
"BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)),
"BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)),
"BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)),
"BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)),
"BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)),
"BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)),
"BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)),
"BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)),
"BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)),
"BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)),
"BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)),
"BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)),
"BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)),
"BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)),
"BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)),
"BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)),
"BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)),
"BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"Bind": reflect.ValueOf(syscall.Bind),
"BpfBuflen": reflect.ValueOf(syscall.BpfBuflen),
"BpfDatalink": reflect.ValueOf(syscall.BpfDatalink),
"BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl),
"BpfInterface": reflect.ValueOf(syscall.BpfInterface),
"BpfJump": reflect.ValueOf(syscall.BpfJump),
"BpfStats": reflect.ValueOf(syscall.BpfStats),
"BpfStmt": reflect.ValueOf(syscall.BpfStmt),
"BpfTimeout": reflect.ValueOf(syscall.BpfTimeout),
"BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString),
"ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString),
"CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)),
"CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)),
"CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)),
"CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)),
"CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)),
"CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)),
"CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)),
"CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)),
"CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)),
"CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"Chdir": reflect.ValueOf(syscall.Chdir),
"CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion),
"Chflags": reflect.ValueOf(syscall.Chflags),
"Chmod": reflect.ValueOf(syscall.Chmod),
"Chown": reflect.ValueOf(syscall.Chown),
"Chroot": reflect.ValueOf(syscall.Chroot),
"Clearenv": reflect.ValueOf(syscall.Clearenv),
"Close": reflect.ValueOf(syscall.Close),
"CloseOnExec": reflect.ValueOf(syscall.CloseOnExec),
"CmsgLen": reflect.ValueOf(syscall.CmsgLen),
"CmsgSpace": reflect.ValueOf(syscall.CmsgSpace),
"Connect": reflect.ValueOf(syscall.Connect),
"DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)),
"DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)),
"DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)),
"DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)),
"DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)),
"DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)),
"DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)),
"DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)),
"DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)),
"DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)),
"DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)),
"DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)),
"DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)),
"DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)),
"DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)),
"DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)),
"DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)),
"DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)),
"Dup": reflect.ValueOf(syscall.Dup),
"Dup2": reflect.ValueOf(syscall.Dup2),
"E2BIG": reflect.ValueOf(syscall.E2BIG),
"EACCES": reflect.ValueOf(syscall.EACCES),
"EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE),
"EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL),
"EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT),
"EAGAIN": reflect.ValueOf(syscall.EAGAIN),
"EALREADY": reflect.ValueOf(syscall.EALREADY),
"EAUTH": reflect.ValueOf(syscall.EAUTH),
"EBADARCH": reflect.ValueOf(syscall.EBADARCH),
"EBADEXEC": reflect.ValueOf(syscall.EBADEXEC),
"EBADF": reflect.ValueOf(syscall.EBADF),
"EBADMACHO": reflect.ValueOf(syscall.EBADMACHO),
"EBADMSG": reflect.ValueOf(syscall.EBADMSG),
"EBADRPC": reflect.ValueOf(syscall.EBADRPC),
"EBUSY": reflect.ValueOf(syscall.EBUSY),
"ECANCELED": reflect.ValueOf(syscall.ECANCELED),
"ECHILD": reflect.ValueOf(syscall.ECHILD),
"ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED),
"ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED),
"ECONNRESET": reflect.ValueOf(syscall.ECONNRESET),
"EDEADLK": reflect.ValueOf(syscall.EDEADLK),
"EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ),
"EDEVERR": reflect.ValueOf(syscall.EDEVERR),
"EDOM": reflect.ValueOf(syscall.EDOM),
"EDQUOT": reflect.ValueOf(syscall.EDQUOT),
"EEXIST": reflect.ValueOf(syscall.EEXIST),
"EFAULT": reflect.ValueOf(syscall.EFAULT),
"EFBIG": reflect.ValueOf(syscall.EFBIG),
"EFTYPE": reflect.ValueOf(syscall.EFTYPE),
"EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN),
"EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH),
"EIDRM": reflect.ValueOf(syscall.EIDRM),
"EILSEQ": reflect.ValueOf(syscall.EILSEQ),
"EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS),
"EINTR": reflect.ValueOf(syscall.EINTR),
"EINVAL": reflect.ValueOf(syscall.EINVAL),
"EIO": reflect.ValueOf(syscall.EIO),
"EISCONN": reflect.ValueOf(syscall.EISCONN),
"EISDIR": reflect.ValueOf(syscall.EISDIR),
"ELAST": reflect.ValueOf(syscall.ELAST),
"ELOOP": reflect.ValueOf(syscall.ELOOP),
"EMFILE": reflect.ValueOf(syscall.EMFILE),
"EMLINK": reflect.ValueOf(syscall.EMLINK),
"EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE),
"EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP),
"ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG),
"ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH),
"ENETDOWN": reflect.ValueOf(syscall.ENETDOWN),
"ENETRESET": reflect.ValueOf(syscall.ENETRESET),
"ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH),
"ENFILE": reflect.ValueOf(syscall.ENFILE),
"ENOATTR": reflect.ValueOf(syscall.ENOATTR),
"ENOBUFS": reflect.ValueOf(syscall.ENOBUFS),
"ENODATA": reflect.ValueOf(syscall.ENODATA),
"ENODEV": reflect.ValueOf(syscall.ENODEV),
"ENOENT": reflect.ValueOf(syscall.ENOENT),
"ENOEXEC": reflect.ValueOf(syscall.ENOEXEC),
"ENOLCK": reflect.ValueOf(syscall.ENOLCK),
"ENOLINK": reflect.ValueOf(syscall.ENOLINK),
"ENOMEM": reflect.ValueOf(syscall.ENOMEM),
"ENOMSG": reflect.ValueOf(syscall.ENOMSG),
"ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY),
"ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT),
"ENOSPC": reflect.ValueOf(syscall.ENOSPC),
"ENOSR": reflect.ValueOf(syscall.ENOSR),
"ENOSTR": reflect.ValueOf(syscall.ENOSTR),
"ENOSYS": reflect.ValueOf(syscall.ENOSYS),
"ENOTBLK": reflect.ValueOf(syscall.ENOTBLK),
"ENOTCONN": reflect.ValueOf(syscall.ENOTCONN),
"ENOTDIR": reflect.ValueOf(syscall.ENOTDIR),
"ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY),
"ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE),
"ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK),
"ENOTSUP": reflect.ValueOf(syscall.ENOTSUP),
"ENOTTY": reflect.ValueOf(syscall.ENOTTY),
"ENXIO": reflect.ValueOf(syscall.ENXIO),
"EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP),
"EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW),
"EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD),
"EPERM": reflect.ValueOf(syscall.EPERM),
"EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT),
"EPIPE": reflect.ValueOf(syscall.EPIPE),
"EPROCLIM": reflect.ValueOf(syscall.EPROCLIM),
"EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL),
"EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH),
"EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL),
"EPROTO": reflect.ValueOf(syscall.EPROTO),
"EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT),
"EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE),
"EPWROFF": reflect.ValueOf(syscall.EPWROFF),
"EQFULL": reflect.ValueOf(syscall.EQFULL),
"ERANGE": reflect.ValueOf(syscall.ERANGE),
"EREMOTE": reflect.ValueOf(syscall.EREMOTE),
"EROFS": reflect.ValueOf(syscall.EROFS),
"ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH),
"ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS),
"ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN),
"ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT),
"ESPIPE": reflect.ValueOf(syscall.ESPIPE),
"ESRCH": reflect.ValueOf(syscall.ESRCH),
"ESTALE": reflect.ValueOf(syscall.ESTALE),
"ETIME": reflect.ValueOf(syscall.ETIME),
"ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT),
"ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS),
"ETXTBSY": reflect.ValueOf(syscall.ETXTBSY),
"EUSERS": reflect.ValueOf(syscall.EUSERS),
"EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)),
"EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)),
"EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)),
"EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)),
"EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)),
"EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)),
"EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)),
"EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)),
"EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)),
"EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)),
"EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)),
"EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)),
"EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)),
"EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)),
"EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)),
"EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)),
"EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)),
"EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)),
"EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)),
"EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)),
"EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK),
"EXDEV": reflect.ValueOf(syscall.EXDEV),
"EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)),
"EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)),
"EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)),
"Environ": reflect.ValueOf(syscall.Environ),
"Exchangedata": reflect.ValueOf(syscall.Exchangedata),
"FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)),
"FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)),
"F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)),
"F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)),
"F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)),
"F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)),
"F_FINDSIGS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)),
"F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)),
"F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)),
"F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)),
"F_GETCODEDIR": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)),
"F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)),
"F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)),
"F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)),
"F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)),
"F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)),
"F_GETPROTECTIONLEVEL": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)),
"F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)),
"F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)),
"F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)),
"F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)),
"F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)),
"F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)),
"F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)),
"F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)),
"F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)),
"F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)),
"F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)),
"F_SETLKWTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)),
"F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)),
"F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)),
"F_SINGLE_WRITER": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)),
"F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)),
"F_TRANSCODEKEY": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)),
"F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"Fchdir": reflect.ValueOf(syscall.Fchdir),
"Fchflags": reflect.ValueOf(syscall.Fchflags),
"Fchmod": reflect.ValueOf(syscall.Fchmod),
"Fchown": reflect.ValueOf(syscall.Fchown),
"FcntlFlock": reflect.ValueOf(syscall.FcntlFlock),
"Flock": reflect.ValueOf(syscall.Flock),
"FlushBpf": reflect.ValueOf(syscall.FlushBpf),
"ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(),
"Fpathconf": reflect.ValueOf(syscall.Fpathconf),
"Fstat": reflect.ValueOf(syscall.Fstat),
"Fstatfs": reflect.ValueOf(syscall.Fstatfs),
"Fsync": reflect.ValueOf(syscall.Fsync),
"Ftruncate": reflect.ValueOf(syscall.Ftruncate),
"Futimes": reflect.ValueOf(syscall.Futimes),
"Getdirentries": reflect.ValueOf(syscall.Getdirentries),
"Getdtablesize": reflect.ValueOf(syscall.Getdtablesize),
"Getegid": reflect.ValueOf(syscall.Getegid),
"Getenv": reflect.ValueOf(syscall.Getenv),
"Geteuid": reflect.ValueOf(syscall.Geteuid),
"Getfsstat": reflect.ValueOf(syscall.Getfsstat),
"Getgid": reflect.ValueOf(syscall.Getgid),
"Getgroups": reflect.ValueOf(syscall.Getgroups),
"Getpagesize": reflect.ValueOf(syscall.Getpagesize),
"Getpeername": reflect.ValueOf(syscall.Getpeername),
"Getpgid": reflect.ValueOf(syscall.Getpgid),
"Getpgrp": reflect.ValueOf(syscall.Getpgrp),
"Getpid": reflect.ValueOf(syscall.Getpid),
"Getppid": reflect.ValueOf(syscall.Getppid),
"Getpriority": reflect.ValueOf(syscall.Getpriority),
"Getrlimit": reflect.ValueOf(syscall.Getrlimit),
"Getrusage": reflect.ValueOf(syscall.Getrusage),
"Getsid": reflect.ValueOf(syscall.Getsid),
"Getsockname": reflect.ValueOf(syscall.Getsockname),
"GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte),
"GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter),
"GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq),
"GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo),
"GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq),
"GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr),
"GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt),
"Gettimeofday": reflect.ValueOf(syscall.Gettimeofday),
"Getuid": reflect.ValueOf(syscall.Getuid),
"Getwd": reflect.ValueOf(syscall.Getwd),
"HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)),
"ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)),
"ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)),
"IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)),
"IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)),
"IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)),
"IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)),
"IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)),
"IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)),
"IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)),
"IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)),
"IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)),
"IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)),
"IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)),
"IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)),
"IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)),
"IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)),
"IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)),
"IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)),
"IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)),
"IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)),
"IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)),
"IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)),
"IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)),
"IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)),
"IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)),
"IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)),
"IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)),
"IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)),
"IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)),
"IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)),
"IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)),
"IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)),
"IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)),
"IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)),
"IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)),
"IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)),
"IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)),
"IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)),
"IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)),
"IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)),
"IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)),
"IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)),
"IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)),
"IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)),
"IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)),
"IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)),
"IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)),
"IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)),
"IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)),
"IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)),
"IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)),
"IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)),
"IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)),
"IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)),
"IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)),
"IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)),
"IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)),
"IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)),
"IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)),
"IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)),
"IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)),
"IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)),
"IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)),
"IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)),
"IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)),
"INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)),
"IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)),
"IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)),
"IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)),
"IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)),
"IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)),
"IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)),
"IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)),
"IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)),
"IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)),
"IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)),
"IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)),
"IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)),
"IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)),
"IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)),
"IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)),
"IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)),
"IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)),
"IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)),
"IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)),
"IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)),
"IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)),
"IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)),
"IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)),
"IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)),
"IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)),
"IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)),
"IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)),
"IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)),
"IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)),
"IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)),
"IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)),
"IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)),
"IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)),
"IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)),
"IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)),
"IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)),
"IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)),
"IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)),
"IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)),
"IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)),
"IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)),
"IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)),
"IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)),
"IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)),
"IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)),
"IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)),
"IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)),
"IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)),
"IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)),
"IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)),
"IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)),
"IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)),
"IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)),
"IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)),
"IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)),
"IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)),
"IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)),
"IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)),
"IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)),
"IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)),
"IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)),
"IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)),
"IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)),
"IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)),
"IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)),
"IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)),
"IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)),
"IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)),
"IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)),
"IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)),
"IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)),
"IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)),
"IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)),
"IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)),
"IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)),
"IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)),
"IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)),
"IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)),
"IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)),
"IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)),
"IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)),
"IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)),
"IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)),
"IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)),
"IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)),
"IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)),
"IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)),
"IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)),
"IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)),
"IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)),
"IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)),
"IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)),
"IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)),
"IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)),
"IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)),
"IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)),
"IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)),
"IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)),
"IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)),
"IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)),
"IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)),
"IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)),
"IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)),
"IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)),
"IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)),
"IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)),
"IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)),
"IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)),
"IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)),
"IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)),
"IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)),
"IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)),
"IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)),
"IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)),
"IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)),
"IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)),
"IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)),
"IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)),
"IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)),
"IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)),
"IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)),
"IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)),
"IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)),
"IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)),
"IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)),
"IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)),
"IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)),
"IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)),
"IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)),
"IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)),
"IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)),
"IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)),
"IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)),
"IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)),
"IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)),
"IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)),
"IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)),
"IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)),
"IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)),
"IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)),
"IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)),
"IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)),
"IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)),
"IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)),
"IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)),
"IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)),
"IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)),
"IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)),
"IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)),
"IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)),
"IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)),
"IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)),
"IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)),
"IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)),
"IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)),
"IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)),
"IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)),
"IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)),
"IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)),
"IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)),
"IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)),
"IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)),
"IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)),
"IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)),
"IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)),
"IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)),
"IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)),
"IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)),
"IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)),
"IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)),
"IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)),
"IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)),
"IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)),
"IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)),
"IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)),
"IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)),
"IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)),
"IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)),
"IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)),
"IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)),
"IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)),
"IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)),
"IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)),
"IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)),
"IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)),
"ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)),
"IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)),
"IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)),
"IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd),
"Issetugid": reflect.ValueOf(syscall.Issetugid),
"Kevent": reflect.ValueOf(syscall.Kevent),
"Kqueue": reflect.ValueOf(syscall.Kqueue),
"LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"Lchown": reflect.ValueOf(syscall.Lchown),
"Link": reflect.ValueOf(syscall.Link),
"Listen": reflect.ValueOf(syscall.Listen),
"Lstat": reflect.ValueOf(syscall.Lstat),
"MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)),
"MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)),
"MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)),
"MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)),
"MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)),
"MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)),
"MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)),
"MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)),
"MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)),
"MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)),
"MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"Mkdir": reflect.ValueOf(syscall.Mkdir),
"Mkfifo": reflect.ValueOf(syscall.Mkfifo),
"Mknod": reflect.ValueOf(syscall.Mknod),
"Mlock": reflect.ValueOf(syscall.Mlock),
"Mlockall": reflect.ValueOf(syscall.Mlockall),
"Mmap": reflect.ValueOf(syscall.Mmap),
"Mprotect": reflect.ValueOf(syscall.Mprotect),
"Munlock": reflect.ValueOf(syscall.Munlock),
"Munlockall": reflect.ValueOf(syscall.Munlockall),
"Munmap": reflect.ValueOf(syscall.Munmap),
"NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)),
"NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)),
"NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)),
"NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"NOTE_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"NOTE_CRITICAL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)),
"NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)),
"NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)),
"NOTE_EXIT_CSERROR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)),
"NOTE_EXIT_DECRYPTFAIL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)),
"NOTE_EXIT_DETAIL": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)),
"NOTE_EXIT_DETAIL_MASK": reflect.ValueOf(constant.MakeFromLiteral("458752", token.INT, 0)),
"NOTE_EXIT_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)),
"NOTE_EXIT_REPARENTED": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)),
"NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)),
"NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)),
"NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)),
"NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)),
"NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)),
"NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)),
"NOTE_LEEWAY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)),
"NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)),
"NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)),
"NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)),
"NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)),
"NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)),
"NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)),
"NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)),
"NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)),
"NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec),
"NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval),
"OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)),
"OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)),
"O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)),
"O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)),
"O_DP_GETRAWENCRYPTED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)),
"O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)),
"O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)),
"O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)),
"O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)),
"O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)),
"O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)),
"O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"Open": reflect.ValueOf(syscall.Open),
"PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)),
"PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)),
"PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)),
"PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)),
"PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)),
"PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)),
"PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)),
"PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)),
"PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)),
"PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)),
"PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"ParseDirent": reflect.ValueOf(syscall.ParseDirent),
"ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage),
"ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr),
"ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage),
"ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights),
"Pathconf": reflect.ValueOf(syscall.Pathconf),
"Pipe": reflect.ValueOf(syscall.Pipe),
"Pread": reflect.ValueOf(syscall.Pread),
"Pwrite": reflect.ValueOf(syscall.Pwrite),
"RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"RLIMIT_CPU_USAGE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)),
"RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)),
"RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)),
"RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)),
"RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)),
"RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)),
"RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)),
"RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)),
"RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)),
"RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)),
"RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)),
"RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)),
"RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)),
"RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)),
"RTF_PROXY": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)),
"RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"RTF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)),
"RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)),
"RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)),
"RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)),
"RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)),
"RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)),
"RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)),
"RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)),
"RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)),
"RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)),
"RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)),
"RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)),
"RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)),
"RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"Read": reflect.ValueOf(syscall.Read),
"ReadDirent": reflect.ValueOf(syscall.ReadDirent),
"Readlink": reflect.ValueOf(syscall.Readlink),
"Recvfrom": reflect.ValueOf(syscall.Recvfrom),
"Recvmsg": reflect.ValueOf(syscall.Recvmsg),
"Rename": reflect.ValueOf(syscall.Rename),
"Revoke": reflect.ValueOf(syscall.Revoke),
"Rmdir": reflect.ValueOf(syscall.Rmdir),
"RouteRIB": reflect.ValueOf(syscall.RouteRIB),
"SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"SIGABRT": reflect.ValueOf(syscall.SIGABRT),
"SIGALRM": reflect.ValueOf(syscall.SIGALRM),
"SIGBUS": reflect.ValueOf(syscall.SIGBUS),
"SIGCHLD": reflect.ValueOf(syscall.SIGCHLD),
"SIGCONT": reflect.ValueOf(syscall.SIGCONT),
"SIGEMT": reflect.ValueOf(syscall.SIGEMT),
"SIGFPE": reflect.ValueOf(syscall.SIGFPE),
"SIGHUP": reflect.ValueOf(syscall.SIGHUP),
"SIGILL": reflect.ValueOf(syscall.SIGILL),
"SIGINFO": reflect.ValueOf(syscall.SIGINFO),
"SIGINT": reflect.ValueOf(syscall.SIGINT),
"SIGIO": reflect.ValueOf(syscall.SIGIO),
"SIGIOT": reflect.ValueOf(syscall.SIGIOT),
"SIGKILL": reflect.ValueOf(syscall.SIGKILL),
"SIGPIPE": reflect.ValueOf(syscall.SIGPIPE),
"SIGPROF": reflect.ValueOf(syscall.SIGPROF),
"SIGQUIT": reflect.ValueOf(syscall.SIGQUIT),
"SIGSEGV": reflect.ValueOf(syscall.SIGSEGV),
"SIGSTOP": reflect.ValueOf(syscall.SIGSTOP),
"SIGSYS": reflect.ValueOf(syscall.SIGSYS),
"SIGTERM": reflect.ValueOf(syscall.SIGTERM),
"SIGTRAP": reflect.ValueOf(syscall.SIGTRAP),
"SIGTSTP": reflect.ValueOf(syscall.SIGTSTP),
"SIGTTIN": reflect.ValueOf(syscall.SIGTTIN),
"SIGTTOU": reflect.ValueOf(syscall.SIGTTOU),
"SIGURG": reflect.ValueOf(syscall.SIGURG),
"SIGUSR1": reflect.ValueOf(syscall.SIGUSR1),
"SIGUSR2": reflect.ValueOf(syscall.SIGUSR2),
"SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM),
"SIGWINCH": reflect.ValueOf(syscall.SIGWINCH),
"SIGXCPU": reflect.ValueOf(syscall.SIGXCPU),
"SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ),
"SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)),
"SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)),
"SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)),
"SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)),
"SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)),
"SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)),
"SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)),
"SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)),
"SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)),
"SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)),
"SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)),
"SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)),
"SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)),
"SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)),
"SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)),
"SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)),
"SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)),
"SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)),
"SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)),
"SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)),
"SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)),
"SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)),
"SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)),
"SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)),
"SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)),
"SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)),
"SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)),
"SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)),
"SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)),
"SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)),
"SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)),
"SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)),
"SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)),
"SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)),
"SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)),
"SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)),
"SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)),
"SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)),
"SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)),
"SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)),
"SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301057", token.INT, 0)),
"SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)),
"SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)),
"SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)),
"SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)),
"SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)),
"SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)),
"SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)),
"SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)),
"SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)),
"SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)),
"SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)),
"SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)),
"SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)),
"SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)),
"SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)),
"SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)),
"SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)),
"SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)),
"SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)),
"SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)),
"SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)),
"SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)),
"SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)),
"SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)),
"SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)),
"SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)),
"SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)),
"SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)),
"SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)),
"SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)),
"SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)),
"SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)),
"SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)),
"SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)),
"SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)),
"SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)),
"SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)),
"SO_NUMRCVPKT": reflect.ValueOf(constant.MakeFromLiteral("4370", token.INT, 0)),
"SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)),
"SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)),
"SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)),
"SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)),
"SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)),
"SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)),
"SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)),
"SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)),
"SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)),
"SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)),
"SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)),
"SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)),
"SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)),
"SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)),
"SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)),
"SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)),
"SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)),
"SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)),
"SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)),
"SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)),
"SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)),
"SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)),
"SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)),
"SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)),
"SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)),
"SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)),
"SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)),
"SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)),
"SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)),
"SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)),
"SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)),
"SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)),
"SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)),
"SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)),
"SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)),
"SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)),
"SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)),
"SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)),
"SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)),
"SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)),
"SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)),
"SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)),
"SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)),
"SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)),
"SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)),
"SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)),
"SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)),
"SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)),
"SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)),
"SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)),
"SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)),
"SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)),
"SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)),
"SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)),
"SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)),
"SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)),
"SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)),
"SYS_CSOPS_AUDITTOKEN": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)),
"SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)),
"SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)),
"SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)),
"SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)),
"SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)),
"SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)),
"SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)),
"SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)),
"SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)),
"SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)),
"SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)),
"SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)),
"SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)),
"SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)),
"SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)),
"SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)),
"SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)),
"SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)),
"SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)),
"SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)),
"SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)),
"SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)),
"SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)),
"SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)),
"SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)),
"SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)),
"SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)),
"SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)),
"SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)),
"SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)),
"SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)),
"SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)),
"SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)),
"SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)),
"SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)),
"SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)),
"SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)),
"SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)),
"SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)),
"SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)),
"SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)),
"SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)),
"SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)),
"SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)),
"SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)),
"SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)),
"SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)),
"SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)),
"SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)),
"SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)),
"SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)),
"SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)),
"SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)),
"SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)),
"SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)),
"SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)),
"SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)),
"SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)),
"SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)),
"SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)),
"SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)),
"SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)),
"SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)),
"SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)),
"SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)),
"SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)),
"SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)),
"SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)),
"SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)),
"SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)),
"SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)),
"SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)),
"SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)),
"SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)),
"SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)),
"SYS_KAS_INFO": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)),
"SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)),
"SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)),
"SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)),
"SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)),
"SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)),
"SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)),
"SYS_LEDGER": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)),
"SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)),
"SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)),
"SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)),
"SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)),
"SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)),
"SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)),
"SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)),
"SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)),
"SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)),
"SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)),
"SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)),
"SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)),
"SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)),
"SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)),
"SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)),
"SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)),
"SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)),
"SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)),
"SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)),
"SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)),
"SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)),
"SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)),
"SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)),
"SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)),
"SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)),
"SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)),
"SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)),
"SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)),
"SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)),
"SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)),
"SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)),
"SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)),
"SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)),
"SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)),
"SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)),
"SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)),
"SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)),
"SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)),
"SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"SYS_OPEN_DPROTECTED_NP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)),
"SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)),
"SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)),
"SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)),
"SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)),
"SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)),
"SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)),
"SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)),
"SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)),
"SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)),
"SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)),
"SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)),
"SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)),
"SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)),
"SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)),
"SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)),
"SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)),
"SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)),
"SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)),
"SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)),
"SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)),
"SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)),
"SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)),
"SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)),
"SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)),
"SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)),
"SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)),
"SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)),
"SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)),
"SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)),
"SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)),
"SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)),
"SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)),
"SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)),
"SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)),
"SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)),
"SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)),
"SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)),
"SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)),
"SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)),
"SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)),
"SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)),
"SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)),
"SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)),
"SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)),
"SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)),
"SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)),
"SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)),
"SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)),
"SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)),
"SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)),
"SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)),
"SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)),
"SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)),
"SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)),
"SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)),
"SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)),
"SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)),
"SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)),
"SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)),
"SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)),
"SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)),
"SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)),
"SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)),
"SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)),
"SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)),
"SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)),
"SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)),
"SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)),
"SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)),
"SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)),
"SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)),
"SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)),
"SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)),
"SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)),
"SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)),
"SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)),
"SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)),
"SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)),
"SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)),
"SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)),
"SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)),
"SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)),
"SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)),
"SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)),
"SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)),
"SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)),
"SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)),
"SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)),
"SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)),
"SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)),
"SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)),
"SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)),
"SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)),
"SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)),
"SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)),
"SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)),
"SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)),
"SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)),
"SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)),
"SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)),
"SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)),
"SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)),
"SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)),
"SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)),
"SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)),
"SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)),
"SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)),
"SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)),
"SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)),
"SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)),
"SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)),
"SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)),
"SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)),
"SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)),
"SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)),
"SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)),
"SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)),
"SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)),
"SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)),
"SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)),
"SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)),
"SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)),
"SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)),
"SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)),
"SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)),
"SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)),
"SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)),
"SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)),
"SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)),
"SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)),
"SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)),
"SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)),
"SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)),
"SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)),
"SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)),
"SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)),
"SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)),
"SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)),
"SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)),
"SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)),
"SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)),
"SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)),
"SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)),
"SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)),
"SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)),
"SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)),
"SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)),
"SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)),
"SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)),
"SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)),
"SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)),
"SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)),
"SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)),
"SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)),
"SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)),
"SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)),
"SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)),
"SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)),
"SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)),
"SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)),
"SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)),
"SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)),
"SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)),
"SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)),
"SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)),
"SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)),
"SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)),
"SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)),
"SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)),
"SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)),
"SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)),
"S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)),
"S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)),
"S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)),
"S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)),
"S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)),
"S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)),
"S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)),
"S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)),
"S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)),
"S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)),
"S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)),
"S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)),
"S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)),
"S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)),
"S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"Seek": reflect.ValueOf(syscall.Seek),
"Select": reflect.ValueOf(syscall.Select),
"Sendfile": reflect.ValueOf(syscall.Sendfile),
"Sendmsg": reflect.ValueOf(syscall.Sendmsg),
"SendmsgN": reflect.ValueOf(syscall.SendmsgN),
"Sendto": reflect.ValueOf(syscall.Sendto),
"SetBpf": reflect.ValueOf(syscall.SetBpf),
"SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen),
"SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink),
"SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl),
"SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate),
"SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface),
"SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc),
"SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout),
"SetKevent": reflect.ValueOf(syscall.SetKevent),
"SetNonblock": reflect.ValueOf(syscall.SetNonblock),
"Setegid": reflect.ValueOf(syscall.Setegid),
"Setenv": reflect.ValueOf(syscall.Setenv),
"Seteuid": reflect.ValueOf(syscall.Seteuid),
"Setgid": reflect.ValueOf(syscall.Setgid),
"Setgroups": reflect.ValueOf(syscall.Setgroups),
"Setlogin": reflect.ValueOf(syscall.Setlogin),
"Setpgid": reflect.ValueOf(syscall.Setpgid),
"Setpriority": reflect.ValueOf(syscall.Setpriority),
"Setprivexec": reflect.ValueOf(syscall.Setprivexec),
"Setregid": reflect.ValueOf(syscall.Setregid),
"Setreuid": reflect.ValueOf(syscall.Setreuid),
"Setrlimit": reflect.ValueOf(syscall.Setrlimit),
"Setsid": reflect.ValueOf(syscall.Setsid),
"SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte),
"SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter),
"SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq),
"SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq),
"SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr),
"SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt),
"SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger),
"SetsockoptString": reflect.ValueOf(syscall.SetsockoptString),
"SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval),
"Settimeofday": reflect.ValueOf(syscall.Settimeofday),
"Setuid": reflect.ValueOf(syscall.Setuid),
"SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)),
"SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)),
"SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)),
"SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)),
"SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)),
"SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)),
"SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)),
"SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)),
"SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)),
"SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings),
"Socket": reflect.ValueOf(syscall.Socket),
"SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(),
"Socketpair": reflect.ValueOf(syscall.Socketpair),
"Stat": reflect.ValueOf(syscall.Stat),
"Statfs": reflect.ValueOf(syscall.Statfs),
"Stderr": reflect.ValueOf(&syscall.Stderr).Elem(),
"Stdin": reflect.ValueOf(&syscall.Stdin).Elem(),
"Stdout": reflect.ValueOf(&syscall.Stdout).Elem(),
"StringBytePtr": reflect.ValueOf(syscall.StringBytePtr),
"StringByteSlice": reflect.ValueOf(syscall.StringByteSlice),
"StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr),
"Symlink": reflect.ValueOf(syscall.Symlink),
"Sync": reflect.ValueOf(syscall.Sync),
"Sysctl": reflect.ValueOf(syscall.Sysctl),
"SysctlUint32": reflect.ValueOf(syscall.SysctlUint32),
"TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"TCP_ENABLE_ECN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)),
"TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)),
"TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)),
"TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)),
"TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)),
"TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)),
"TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)),
"TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)),
"TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)),
"TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)),
"TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"TCP_SENDMOREACKS": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)),
"TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)),
"TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)),
"TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)),
"TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)),
"TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)),
"TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)),
"TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)),
"TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)),
"TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)),
"TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)),
"TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)),
"TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)),
"TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)),
"TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)),
"TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)),
"TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)),
"TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)),
"TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)),
"TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)),
"TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)),
"TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)),
"TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)),
"TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)),
"TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)),
"TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)),
"TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)),
"TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)),
"TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)),
"TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)),
"TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)),
"TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)),
"TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)),
"TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)),
"TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)),
"TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)),
"TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)),
"TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)),
"TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)),
"TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)),
"TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)),
"TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)),
"TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)),
"TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)),
"TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)),
"TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)),
"TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)),
"TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)),
"TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)),
"TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)),
"TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)),
"TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)),
"TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)),
"TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec),
"TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec),
"Truncate": reflect.ValueOf(syscall.Truncate),
"Umask": reflect.ValueOf(syscall.Umask),
"Undelete": reflect.ValueOf(syscall.Undelete),
"UnixRights": reflect.ValueOf(syscall.UnixRights),
"Unlink": reflect.ValueOf(syscall.Unlink),
"Unmount": reflect.ValueOf(syscall.Unmount),
"Unsetenv": reflect.ValueOf(syscall.Unsetenv),
"Utimes": reflect.ValueOf(syscall.Utimes),
"UtimesNano": reflect.ValueOf(syscall.UtimesNano),
"VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)),
"VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)),
"VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)),
"VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)),
"VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)),
"VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)),
"VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)),
"VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)),
"VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)),
"VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)),
"VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)),
"VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)),
"VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)),
"VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)),
"VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)),
"VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)),
"WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)),
"WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)),
"WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)),
"Wait4": reflect.ValueOf(syscall.Wait4),
"Write": reflect.ValueOf(syscall.Write),
// type definitions
"BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)),
"BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)),
"BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)),
"BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)),
"BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)),
"Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)),
"Conn": reflect.ValueOf((*syscall.Conn)(nil)),
"Credential": reflect.ValueOf((*syscall.Credential)(nil)),
"Dirent": reflect.ValueOf((*syscall.Dirent)(nil)),
"Errno": reflect.ValueOf((*syscall.Errno)(nil)),
"Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)),
"FdSet": reflect.ValueOf((*syscall.FdSet)(nil)),
"Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)),
"Fsid": reflect.ValueOf((*syscall.Fsid)(nil)),
"Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)),
"ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)),
"IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)),
"IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)),
"IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)),
"IfData": reflect.ValueOf((*syscall.IfData)(nil)),
"IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)),
"IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)),
"IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)),
"IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)),
"Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)),
"Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)),
"InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)),
"InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)),
"InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)),
"Iovec": reflect.ValueOf((*syscall.Iovec)(nil)),
"Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)),
"Linger": reflect.ValueOf((*syscall.Linger)(nil)),
"Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)),
"Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)),
"ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)),
"Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)),
"RawConn": reflect.ValueOf((*syscall.RawConn)(nil)),
"RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)),
"RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)),
"RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)),
"RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)),
"RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)),
"RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)),
"Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)),
"RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)),
"RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)),
"RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)),
"RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)),
"Rusage": reflect.ValueOf((*syscall.Rusage)(nil)),
"Signal": reflect.ValueOf((*syscall.Signal)(nil)),
"Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)),
"SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)),
"SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)),
"SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)),
"SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)),
"SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)),
"Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)),
"Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)),
"SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)),
"Termios": reflect.ValueOf((*syscall.Termios)(nil)),
"Timespec": reflect.ValueOf((*syscall.Timespec)(nil)),
"Timeval": reflect.ValueOf((*syscall.Timeval)(nil)),
"Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)),
"WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)),
// interface wrapper definitions
"_Conn": reflect.ValueOf((*_syscall_Conn)(nil)),
"_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)),
"_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)),
"_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)),
}
}
// _syscall_Conn is an interface wrapper for Conn type
type _syscall_Conn struct {
IValue interface{}
WSyscallConn func() (syscall.RawConn, error)
}
func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) {
return W.WSyscallConn()
}
// _syscall_RawConn is an interface wrapper for RawConn type
type _syscall_RawConn struct {
IValue interface{}
WControl func(f func(fd uintptr)) error
WRead func(f func(fd uintptr) (done bool)) error
WWrite func(f func(fd uintptr) (done bool)) error
}
func (W _syscall_RawConn) Control(f func(fd uintptr)) error {
return W.WControl(f)
}
func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error {
return W.WRead(f)
}
func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error {
return W.WWrite(f)
}
// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type
type _syscall_RoutingMessage struct {
IValue interface{}
}
// _syscall_Sockaddr is an interface wrapper for Sockaddr type
type _syscall_Sockaddr struct {
IValue interface{}
}
|