package obus
Pure Ocaml implementation of the D-Bus protocol
Install
Dune Dependency
Authors
Maintainers
Sources
obus-1.2.5.tar.gz
md5=81eb1034c6ef4421a2368a9b352199de
sha512=4b540497188a7d78f4f14f94c6b7fdff47dd06436a34e650ff378dd77bb3e2acb7afd45cd72daf4ddba06e732e9944d560c2882dc37862f1b1f1bb6df37e6205
doc/src/obus.udisks/uDisks_interfaces.ml.html
Source file uDisks_interfaces.ml
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 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225
(* File auto-generated by obus-gen-interface, DO NOT EDIT. *) open OBus_value open OBus_value.C open OBus_member open OBus_object module Org_freedesktop_UDisks = struct let interface = "org.freedesktop.UDisks" let m_DriveInhibitAllPolling = { Method.interface = interface; Method.member = "DriveInhibitAllPolling"; Method.i_args = (arg1 (Some "options", array basic_string)); Method.o_args = (arg1 (Some "cookie", basic_string)); Method.annotations = []; } let m_DriveSetAllSpindownTimeouts = { Method.interface = interface; Method.member = "DriveSetAllSpindownTimeouts"; Method.i_args = (arg2 (Some "timeout_seconds", basic_int32) (Some "options", array basic_string)); Method.o_args = (arg1 (Some "cookie", basic_string)); Method.annotations = []; } let m_DriveUninhibitAllPolling = { Method.interface = interface; Method.member = "DriveUninhibitAllPolling"; Method.i_args = (arg1 (Some "cookie", basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_DriveUnsetAllSpindownTimeouts = { Method.interface = interface; Method.member = "DriveUnsetAllSpindownTimeouts"; Method.i_args = (arg1 (Some "cookie", basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_EnumerateAdapters = { Method.interface = interface; Method.member = "EnumerateAdapters"; Method.i_args = (arg0); Method.o_args = (arg1 (Some "devices", array basic_object_path)); Method.annotations = []; } let m_EnumerateDeviceFiles = { Method.interface = interface; Method.member = "EnumerateDeviceFiles"; Method.i_args = (arg0); Method.o_args = (arg1 (Some "device_files", array basic_string)); Method.annotations = []; } let m_EnumerateDevices = { Method.interface = interface; Method.member = "EnumerateDevices"; Method.i_args = (arg0); Method.o_args = (arg1 (Some "devices", array basic_object_path)); Method.annotations = []; } let m_EnumerateExpanders = { Method.interface = interface; Method.member = "EnumerateExpanders"; Method.i_args = (arg0); Method.o_args = (arg1 (Some "devices", array basic_object_path)); Method.annotations = []; } let m_EnumeratePorts = { Method.interface = interface; Method.member = "EnumeratePorts"; Method.i_args = (arg0); Method.o_args = (arg1 (Some "devices", array basic_object_path)); Method.annotations = []; } let m_FindDeviceByDeviceFile = { Method.interface = interface; Method.member = "FindDeviceByDeviceFile"; Method.i_args = (arg1 (Some "device_file", basic_string)); Method.o_args = (arg1 (Some "device", basic_object_path)); Method.annotations = []; } let m_FindDeviceByMajorMinor = { Method.interface = interface; Method.member = "FindDeviceByMajorMinor"; Method.i_args = (arg2 (Some "device_major", basic_int64) (Some "device_minor", basic_int64)); Method.o_args = (arg1 (Some "device", basic_object_path)); Method.annotations = []; } let m_Inhibit = { Method.interface = interface; Method.member = "Inhibit"; Method.i_args = (arg0); Method.o_args = (arg1 (Some "cookie", basic_string)); Method.annotations = []; } let m_LinuxLvm2LVCreate = { Method.interface = interface; Method.member = "LinuxLvm2LVCreate"; Method.i_args = (arg9 (Some "group_uuid", basic_string) (Some "name", basic_string) (Some "size", basic_uint64) (Some "num_stripes", basic_uint32) (Some "stripe_size", basic_uint64) (Some "num_mirrors", basic_uint32) (Some "options", array basic_string) (Some "fstype", basic_string) (Some "fsoptions", array basic_string)); Method.o_args = (arg1 (Some "created_device", basic_object_path)); Method.annotations = []; } let m_LinuxLvm2LVRemove = { Method.interface = interface; Method.member = "LinuxLvm2LVRemove"; Method.i_args = (arg3 (Some "group_uuid", basic_string) (Some "uuid", basic_string) (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LinuxLvm2LVSetName = { Method.interface = interface; Method.member = "LinuxLvm2LVSetName"; Method.i_args = (arg3 (Some "group_uuid", basic_string) (Some "uuid", basic_string) (Some "name", basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LinuxLvm2LVStart = { Method.interface = interface; Method.member = "LinuxLvm2LVStart"; Method.i_args = (arg3 (Some "group_uuid", basic_string) (Some "uuid", basic_string) (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LinuxLvm2VGAddPV = { Method.interface = interface; Method.member = "LinuxLvm2VGAddPV"; Method.i_args = (arg3 (Some "uuid", basic_string) (Some "physical_volume", basic_object_path) (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LinuxLvm2VGRemovePV = { Method.interface = interface; Method.member = "LinuxLvm2VGRemovePV"; Method.i_args = (arg3 (Some "vg_uuid", basic_string) (Some "pv_uuid", basic_string) (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LinuxLvm2VGSetName = { Method.interface = interface; Method.member = "LinuxLvm2VGSetName"; Method.i_args = (arg2 (Some "uuid", basic_string) (Some "name", basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LinuxLvm2VGStart = { Method.interface = interface; Method.member = "LinuxLvm2VGStart"; Method.i_args = (arg2 (Some "uuid", basic_string) (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LinuxLvm2VGStop = { Method.interface = interface; Method.member = "LinuxLvm2VGStop"; Method.i_args = (arg2 (Some "uuid", basic_string) (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LinuxMdCreate = { Method.interface = interface; Method.member = "LinuxMdCreate"; Method.i_args = (arg5 (Some "components", array basic_object_path) (Some "level", basic_string) (Some "stripe_size", basic_uint64) (Some "name", basic_string) (Some "options", array basic_string)); Method.o_args = (arg1 (Some "device", basic_object_path)); Method.annotations = []; } let m_LinuxMdStart = { Method.interface = interface; Method.member = "LinuxMdStart"; Method.i_args = (arg2 (Some "components", array basic_object_path) (Some "options", array basic_string)); Method.o_args = (arg1 (Some "device", basic_object_path)); Method.annotations = []; } let m_Uninhibit = { Method.interface = interface; Method.member = "Uninhibit"; Method.i_args = (arg1 (Some "cookie", basic_string)); Method.o_args = (arg0); Method.annotations = []; } let s_AdapterAdded = { Signal.interface = interface; Signal.member = "AdapterAdded"; Signal.args = (arg1 (Some "adapter", basic_object_path)); Signal.annotations = []; } let s_AdapterChanged = { Signal.interface = interface; Signal.member = "AdapterChanged"; Signal.args = (arg1 (Some "adapter", basic_object_path)); Signal.annotations = []; } let s_AdapterRemoved = { Signal.interface = interface; Signal.member = "AdapterRemoved"; Signal.args = (arg1 (Some "adapter", basic_object_path)); Signal.annotations = []; } let s_DeviceAdded = { Signal.interface = interface; Signal.member = "DeviceAdded"; Signal.args = (arg1 (Some "device", basic_object_path)); Signal.annotations = []; } let s_DeviceChanged = { Signal.interface = interface; Signal.member = "DeviceChanged"; Signal.args = (arg1 (Some "device", basic_object_path)); Signal.annotations = []; } let s_DeviceJobChanged = { Signal.interface = interface; Signal.member = "DeviceJobChanged"; Signal.args = (arg8 (Some "device", basic_object_path) (Some "job_in_progress", basic_boolean) (Some "job_is_cancellable", basic_boolean) (Some "job_id", basic_string) (Some "job_num_tasks", basic_int32) (Some "job_cur_task", basic_int32) (Some "job_cur_task_id", basic_string) (Some "job_cur_task_percentage", basic_double)); Signal.annotations = []; } let s_DeviceRemoved = { Signal.interface = interface; Signal.member = "DeviceRemoved"; Signal.args = (arg1 (Some "device", basic_object_path)); Signal.annotations = []; } let s_ExpanderAdded = { Signal.interface = interface; Signal.member = "ExpanderAdded"; Signal.args = (arg1 (Some "expander", basic_object_path)); Signal.annotations = []; } let s_ExpanderChanged = { Signal.interface = interface; Signal.member = "ExpanderChanged"; Signal.args = (arg1 (Some "expander", basic_object_path)); Signal.annotations = []; } let s_ExpanderRemoved = { Signal.interface = interface; Signal.member = "ExpanderRemoved"; Signal.args = (arg1 (Some "expander", basic_object_path)); Signal.annotations = []; } let s_PortAdded = { Signal.interface = interface; Signal.member = "PortAdded"; Signal.args = (arg1 (Some "port", basic_object_path)); Signal.annotations = []; } let s_PortChanged = { Signal.interface = interface; Signal.member = "PortChanged"; Signal.args = (arg1 (Some "port", basic_object_path)); Signal.annotations = []; } let s_PortRemoved = { Signal.interface = interface; Signal.member = "PortRemoved"; Signal.args = (arg1 (Some "port", basic_object_path)); Signal.annotations = []; } let p_DaemonIsInhibited = { Property.interface = interface; Property.member = "DaemonIsInhibited"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DaemonVersion = { Property.interface = interface; Property.member = "DaemonVersion"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_KnownFilesystems = { Property.interface = interface; Property.member = "KnownFilesystems"; Property.typ = array (structure (seq14 basic_string basic_string basic_boolean basic_boolean basic_boolean basic_uint32 basic_boolean basic_boolean basic_boolean basic_boolean basic_boolean basic_boolean basic_boolean basic_boolean)); Property.access = Property.readable; Property.annotations = []; } let p_SupportsLuksDevices = { Property.interface = interface; Property.member = "SupportsLuksDevices"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } type 'a members = { m_DriveInhibitAllPolling : 'a OBus_object.t -> string list -> string Lwt.t; m_DriveSetAllSpindownTimeouts : 'a OBus_object.t -> int32 * string list -> string Lwt.t; m_DriveUninhibitAllPolling : 'a OBus_object.t -> string -> unit Lwt.t; m_DriveUnsetAllSpindownTimeouts : 'a OBus_object.t -> string -> unit Lwt.t; m_EnumerateAdapters : 'a OBus_object.t -> unit -> OBus_path.t list Lwt.t; m_EnumerateDeviceFiles : 'a OBus_object.t -> unit -> string list Lwt.t; m_EnumerateDevices : 'a OBus_object.t -> unit -> OBus_path.t list Lwt.t; m_EnumerateExpanders : 'a OBus_object.t -> unit -> OBus_path.t list Lwt.t; m_EnumeratePorts : 'a OBus_object.t -> unit -> OBus_path.t list Lwt.t; m_FindDeviceByDeviceFile : 'a OBus_object.t -> string -> OBus_path.t Lwt.t; m_FindDeviceByMajorMinor : 'a OBus_object.t -> int64 * int64 -> OBus_path.t Lwt.t; m_Inhibit : 'a OBus_object.t -> unit -> string Lwt.t; m_LinuxLvm2LVCreate : 'a OBus_object.t -> string * string * int64 * int32 * int64 * int32 * string list * string * string list -> OBus_path.t Lwt.t; m_LinuxLvm2LVRemove : 'a OBus_object.t -> string * string * string list -> unit Lwt.t; m_LinuxLvm2LVSetName : 'a OBus_object.t -> string * string * string -> unit Lwt.t; m_LinuxLvm2LVStart : 'a OBus_object.t -> string * string * string list -> unit Lwt.t; m_LinuxLvm2VGAddPV : 'a OBus_object.t -> string * OBus_path.t * string list -> unit Lwt.t; m_LinuxLvm2VGRemovePV : 'a OBus_object.t -> string * string * string list -> unit Lwt.t; m_LinuxLvm2VGSetName : 'a OBus_object.t -> string * string -> unit Lwt.t; m_LinuxLvm2VGStart : 'a OBus_object.t -> string * string list -> unit Lwt.t; m_LinuxLvm2VGStop : 'a OBus_object.t -> string * string list -> unit Lwt.t; m_LinuxMdCreate : 'a OBus_object.t -> OBus_path.t list * string * int64 * string * string list -> OBus_path.t Lwt.t; m_LinuxMdStart : 'a OBus_object.t -> OBus_path.t list * string list -> OBus_path.t Lwt.t; m_Uninhibit : 'a OBus_object.t -> string -> unit Lwt.t; p_DaemonIsInhibited : 'a OBus_object.t -> bool React.signal; p_DaemonVersion : 'a OBus_object.t -> string React.signal; p_KnownFilesystems : 'a OBus_object.t -> (string * string * bool * bool * bool * int32 * bool * bool * bool * bool * bool * bool * bool * bool) list React.signal; p_SupportsLuksDevices : 'a OBus_object.t -> bool React.signal; } let make members = OBus_object.make_interface_unsafe interface [ ] [| method_info m_DriveInhibitAllPolling members.m_DriveInhibitAllPolling; method_info m_DriveSetAllSpindownTimeouts members.m_DriveSetAllSpindownTimeouts; method_info m_DriveUninhibitAllPolling members.m_DriveUninhibitAllPolling; method_info m_DriveUnsetAllSpindownTimeouts members.m_DriveUnsetAllSpindownTimeouts; method_info m_EnumerateAdapters members.m_EnumerateAdapters; method_info m_EnumerateDeviceFiles members.m_EnumerateDeviceFiles; method_info m_EnumerateDevices members.m_EnumerateDevices; method_info m_EnumerateExpanders members.m_EnumerateExpanders; method_info m_EnumeratePorts members.m_EnumeratePorts; method_info m_FindDeviceByDeviceFile members.m_FindDeviceByDeviceFile; method_info m_FindDeviceByMajorMinor members.m_FindDeviceByMajorMinor; method_info m_Inhibit members.m_Inhibit; method_info m_LinuxLvm2LVCreate members.m_LinuxLvm2LVCreate; method_info m_LinuxLvm2LVRemove members.m_LinuxLvm2LVRemove; method_info m_LinuxLvm2LVSetName members.m_LinuxLvm2LVSetName; method_info m_LinuxLvm2LVStart members.m_LinuxLvm2LVStart; method_info m_LinuxLvm2VGAddPV members.m_LinuxLvm2VGAddPV; method_info m_LinuxLvm2VGRemovePV members.m_LinuxLvm2VGRemovePV; method_info m_LinuxLvm2VGSetName members.m_LinuxLvm2VGSetName; method_info m_LinuxLvm2VGStart members.m_LinuxLvm2VGStart; method_info m_LinuxLvm2VGStop members.m_LinuxLvm2VGStop; method_info m_LinuxMdCreate members.m_LinuxMdCreate; method_info m_LinuxMdStart members.m_LinuxMdStart; method_info m_Uninhibit members.m_Uninhibit; |] [| signal_info s_AdapterAdded; signal_info s_AdapterChanged; signal_info s_AdapterRemoved; signal_info s_DeviceAdded; signal_info s_DeviceChanged; signal_info s_DeviceJobChanged; signal_info s_DeviceRemoved; signal_info s_ExpanderAdded; signal_info s_ExpanderChanged; signal_info s_ExpanderRemoved; signal_info s_PortAdded; signal_info s_PortChanged; signal_info s_PortRemoved; |] [| property_r_info p_DaemonIsInhibited members.p_DaemonIsInhibited; property_r_info p_DaemonVersion members.p_DaemonVersion; property_r_info p_KnownFilesystems members.p_KnownFilesystems; property_r_info p_SupportsLuksDevices members.p_SupportsLuksDevices; |] end module Org_freedesktop_UDisks_Adapter = struct let interface = "org.freedesktop.UDisks.Adapter" let s_Changed = { Signal.interface = interface; Signal.member = "Changed"; Signal.args = (arg0); Signal.annotations = []; } let p_Driver = { Property.interface = interface; Property.member = "Driver"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_Fabric = { Property.interface = interface; Property.member = "Fabric"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_Model = { Property.interface = interface; Property.member = "Model"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_NativePath = { Property.interface = interface; Property.member = "NativePath"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_NumPorts = { Property.interface = interface; Property.member = "NumPorts"; Property.typ = basic_uint32; Property.access = Property.readable; Property.annotations = []; } let p_Vendor = { Property.interface = interface; Property.member = "Vendor"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } type 'a members = { p_Driver : 'a OBus_object.t -> string React.signal; p_Fabric : 'a OBus_object.t -> string React.signal; p_Model : 'a OBus_object.t -> string React.signal; p_NativePath : 'a OBus_object.t -> string React.signal; p_NumPorts : 'a OBus_object.t -> int32 React.signal; p_Vendor : 'a OBus_object.t -> string React.signal; } let make members = OBus_object.make_interface_unsafe interface [ ] [| |] [| signal_info s_Changed; |] [| property_r_info p_Driver members.p_Driver; property_r_info p_Fabric members.p_Fabric; property_r_info p_Model members.p_Model; property_r_info p_NativePath members.p_NativePath; property_r_info p_NumPorts members.p_NumPorts; property_r_info p_Vendor members.p_Vendor; |] end module Org_freedesktop_UDisks_Device = struct let interface = "org.freedesktop.UDisks.Device" let m_DriveAtaSmartInitiateSelftest = { Method.interface = interface; Method.member = "DriveAtaSmartInitiateSelftest"; Method.i_args = (arg2 (Some "test", basic_string) (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_DriveAtaSmartRefreshData = { Method.interface = interface; Method.member = "DriveAtaSmartRefreshData"; Method.i_args = (arg1 (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_DriveBenchmark = { Method.interface = interface; Method.member = "DriveBenchmark"; Method.i_args = (arg2 (Some "do_write_benchmark", basic_boolean) (Some "options", array basic_string)); Method.o_args = (arg3 (Some "read_transfer_rate_results", array (structure (seq2 basic_uint64 basic_double))) (Some "write_transfer_rate_results", array (structure (seq2 basic_uint64 basic_double))) (Some "access_time_results", array (structure (seq2 basic_uint64 basic_double)))); Method.annotations = []; } let m_DriveDetach = { Method.interface = interface; Method.member = "DriveDetach"; Method.i_args = (arg1 (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_DriveEject = { Method.interface = interface; Method.member = "DriveEject"; Method.i_args = (arg1 (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_DriveInhibitPolling = { Method.interface = interface; Method.member = "DriveInhibitPolling"; Method.i_args = (arg1 (Some "options", array basic_string)); Method.o_args = (arg1 (Some "cookie", basic_string)); Method.annotations = []; } let m_DrivePollMedia = { Method.interface = interface; Method.member = "DrivePollMedia"; Method.i_args = (arg0); Method.o_args = (arg0); Method.annotations = []; } let m_DriveSetSpindownTimeout = { Method.interface = interface; Method.member = "DriveSetSpindownTimeout"; Method.i_args = (arg2 (Some "timeout_seconds", basic_int32) (Some "options", array basic_string)); Method.o_args = (arg1 (Some "cookie", basic_string)); Method.annotations = []; } let m_DriveUninhibitPolling = { Method.interface = interface; Method.member = "DriveUninhibitPolling"; Method.i_args = (arg1 (Some "cookie", basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_DriveUnsetSpindownTimeout = { Method.interface = interface; Method.member = "DriveUnsetSpindownTimeout"; Method.i_args = (arg1 (Some "cookie", basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_FilesystemCheck = { Method.interface = interface; Method.member = "FilesystemCheck"; Method.i_args = (arg1 (Some "options", array basic_string)); Method.o_args = (arg1 (Some "is_clean", basic_boolean)); Method.annotations = []; } let m_FilesystemCreate = { Method.interface = interface; Method.member = "FilesystemCreate"; Method.i_args = (arg2 (Some "fstype", basic_string) (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_FilesystemListOpenFiles = { Method.interface = interface; Method.member = "FilesystemListOpenFiles"; Method.i_args = (arg0); Method.o_args = (arg1 (Some "processes", array (structure (seq3 basic_uint32 basic_uint32 basic_string)))); Method.annotations = []; } let m_FilesystemMount = { Method.interface = interface; Method.member = "FilesystemMount"; Method.i_args = (arg2 (Some "filesystem_type", basic_string) (Some "options", array basic_string)); Method.o_args = (arg1 (Some "mount_path", basic_string)); Method.annotations = []; } let m_FilesystemSetLabel = { Method.interface = interface; Method.member = "FilesystemSetLabel"; Method.i_args = (arg1 (Some "new_label", basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_FilesystemUnmount = { Method.interface = interface; Method.member = "FilesystemUnmount"; Method.i_args = (arg1 (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_JobCancel = { Method.interface = interface; Method.member = "JobCancel"; Method.i_args = (arg0); Method.o_args = (arg0); Method.annotations = []; } let m_LinuxLvm2LVStop = { Method.interface = interface; Method.member = "LinuxLvm2LVStop"; Method.i_args = (arg1 (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LinuxMdAddSpare = { Method.interface = interface; Method.member = "LinuxMdAddSpare"; Method.i_args = (arg2 (Some "component", basic_object_path) (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LinuxMdCheck = { Method.interface = interface; Method.member = "LinuxMdCheck"; Method.i_args = (arg1 (Some "options", array basic_string)); Method.o_args = (arg1 (Some "number_of_errors", basic_uint64)); Method.annotations = []; } let m_LinuxMdExpand = { Method.interface = interface; Method.member = "LinuxMdExpand"; Method.i_args = (arg2 (Some "components", array basic_object_path) (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LinuxMdRemoveComponent = { Method.interface = interface; Method.member = "LinuxMdRemoveComponent"; Method.i_args = (arg2 (Some "component", basic_object_path) (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LinuxMdStop = { Method.interface = interface; Method.member = "LinuxMdStop"; Method.i_args = (arg1 (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LuksChangePassphrase = { Method.interface = interface; Method.member = "LuksChangePassphrase"; Method.i_args = (arg2 (Some "current_passphrase", basic_string) (Some "new_passphrase", basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LuksLock = { Method.interface = interface; Method.member = "LuksLock"; Method.i_args = (arg1 (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_LuksUnlock = { Method.interface = interface; Method.member = "LuksUnlock"; Method.i_args = (arg2 (Some "passphrase", basic_string) (Some "options", array basic_string)); Method.o_args = (arg1 (Some "cleartext_device", basic_object_path)); Method.annotations = []; } let m_PartitionCreate = { Method.interface = interface; Method.member = "PartitionCreate"; Method.i_args = (arg8 (Some "offset", basic_uint64) (Some "size", basic_uint64) (Some "type", basic_string) (Some "label", basic_string) (Some "flags", array basic_string) (Some "options", array basic_string) (Some "fstype", basic_string) (Some "fsoptions", array basic_string)); Method.o_args = (arg1 (Some "created_device", basic_object_path)); Method.annotations = []; } let m_PartitionDelete = { Method.interface = interface; Method.member = "PartitionDelete"; Method.i_args = (arg1 (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_PartitionModify = { Method.interface = interface; Method.member = "PartitionModify"; Method.i_args = (arg3 (Some "type", basic_string) (Some "label", basic_string) (Some "flags", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let m_PartitionTableCreate = { Method.interface = interface; Method.member = "PartitionTableCreate"; Method.i_args = (arg2 (Some "scheme", basic_string) (Some "options", array basic_string)); Method.o_args = (arg0); Method.annotations = []; } let s_Changed = { Signal.interface = interface; Signal.member = "Changed"; Signal.args = (arg0); Signal.annotations = []; } let s_JobChanged = { Signal.interface = interface; Signal.member = "JobChanged"; Signal.args = (arg5 (Some "job_in_progress", basic_boolean) (Some "job_is_cancellable", basic_boolean) (Some "job_id", basic_string) (Some "job_initiated_by_uid", basic_uint32) (Some "job_percentage", basic_double)); Signal.annotations = []; } let p_DeviceBlockSize = { Property.interface = interface; Property.member = "DeviceBlockSize"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_DeviceDetectionTime = { Property.interface = interface; Property.member = "DeviceDetectionTime"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_DeviceFile = { Property.interface = interface; Property.member = "DeviceFile"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DeviceFileById = { Property.interface = interface; Property.member = "DeviceFileById"; Property.typ = array basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DeviceFileByPath = { Property.interface = interface; Property.member = "DeviceFileByPath"; Property.typ = array basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DeviceFilePresentation = { Property.interface = interface; Property.member = "DeviceFilePresentation"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsDrive = { Property.interface = interface; Property.member = "DeviceIsDrive"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsLinuxDmmp = { Property.interface = interface; Property.member = "DeviceIsLinuxDmmp"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsLinuxDmmpComponent = { Property.interface = interface; Property.member = "DeviceIsLinuxDmmpComponent"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsLinuxLoop = { Property.interface = interface; Property.member = "DeviceIsLinuxLoop"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsLinuxLvm2LV = { Property.interface = interface; Property.member = "DeviceIsLinuxLvm2LV"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsLinuxLvm2PV = { Property.interface = interface; Property.member = "DeviceIsLinuxLvm2PV"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsLinuxMd = { Property.interface = interface; Property.member = "DeviceIsLinuxMd"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsLinuxMdComponent = { Property.interface = interface; Property.member = "DeviceIsLinuxMdComponent"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsLuks = { Property.interface = interface; Property.member = "DeviceIsLuks"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsLuksCleartext = { Property.interface = interface; Property.member = "DeviceIsLuksCleartext"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsMediaAvailable = { Property.interface = interface; Property.member = "DeviceIsMediaAvailable"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsMediaChangeDetected = { Property.interface = interface; Property.member = "DeviceIsMediaChangeDetected"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsMediaChangeDetectionInhibitable = { Property.interface = interface; Property.member = "DeviceIsMediaChangeDetectionInhibitable"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsMediaChangeDetectionInhibited = { Property.interface = interface; Property.member = "DeviceIsMediaChangeDetectionInhibited"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsMediaChangeDetectionPolling = { Property.interface = interface; Property.member = "DeviceIsMediaChangeDetectionPolling"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsMounted = { Property.interface = interface; Property.member = "DeviceIsMounted"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsOpticalDisc = { Property.interface = interface; Property.member = "DeviceIsOpticalDisc"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsPartition = { Property.interface = interface; Property.member = "DeviceIsPartition"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsPartitionTable = { Property.interface = interface; Property.member = "DeviceIsPartitionTable"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsReadOnly = { Property.interface = interface; Property.member = "DeviceIsReadOnly"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsRemovable = { Property.interface = interface; Property.member = "DeviceIsRemovable"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceIsSystemInternal = { Property.interface = interface; Property.member = "DeviceIsSystemInternal"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceMajor = { Property.interface = interface; Property.member = "DeviceMajor"; Property.typ = basic_int64; Property.access = Property.readable; Property.annotations = []; } let p_DeviceMediaDetectionTime = { Property.interface = interface; Property.member = "DeviceMediaDetectionTime"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_DeviceMinor = { Property.interface = interface; Property.member = "DeviceMinor"; Property.typ = basic_int64; Property.access = Property.readable; Property.annotations = []; } let p_DeviceMountPaths = { Property.interface = interface; Property.member = "DeviceMountPaths"; Property.typ = array basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DeviceMountedByUid = { Property.interface = interface; Property.member = "DeviceMountedByUid"; Property.typ = basic_uint32; Property.access = Property.readable; Property.annotations = []; } let p_DevicePresentationHide = { Property.interface = interface; Property.member = "DevicePresentationHide"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DevicePresentationIconName = { Property.interface = interface; Property.member = "DevicePresentationIconName"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DevicePresentationName = { Property.interface = interface; Property.member = "DevicePresentationName"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DevicePresentationNopolicy = { Property.interface = interface; Property.member = "DevicePresentationNopolicy"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DeviceSize = { Property.interface = interface; Property.member = "DeviceSize"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_DriveAdapter = { Property.interface = interface; Property.member = "DriveAdapter"; Property.typ = basic_object_path; Property.access = Property.readable; Property.annotations = []; } let p_DriveAtaSmartBlob = { Property.interface = interface; Property.member = "DriveAtaSmartBlob"; Property.typ = byte_array; Property.access = Property.readable; Property.annotations = []; } let p_DriveAtaSmartIsAvailable = { Property.interface = interface; Property.member = "DriveAtaSmartIsAvailable"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DriveAtaSmartStatus = { Property.interface = interface; Property.member = "DriveAtaSmartStatus"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DriveAtaSmartTimeCollected = { Property.interface = interface; Property.member = "DriveAtaSmartTimeCollected"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_DriveCanDetach = { Property.interface = interface; Property.member = "DriveCanDetach"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DriveCanSpindown = { Property.interface = interface; Property.member = "DriveCanSpindown"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DriveConnectionInterface = { Property.interface = interface; Property.member = "DriveConnectionInterface"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DriveConnectionSpeed = { Property.interface = interface; Property.member = "DriveConnectionSpeed"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_DriveIsMediaEjectable = { Property.interface = interface; Property.member = "DriveIsMediaEjectable"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DriveIsRotational = { Property.interface = interface; Property.member = "DriveIsRotational"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_DriveMedia = { Property.interface = interface; Property.member = "DriveMedia"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DriveMediaCompatibility = { Property.interface = interface; Property.member = "DriveMediaCompatibility"; Property.typ = array basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DriveModel = { Property.interface = interface; Property.member = "DriveModel"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DrivePorts = { Property.interface = interface; Property.member = "DrivePorts"; Property.typ = array basic_object_path; Property.access = Property.readable; Property.annotations = []; } let p_DriveRevision = { Property.interface = interface; Property.member = "DriveRevision"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DriveRotationRate = { Property.interface = interface; Property.member = "DriveRotationRate"; Property.typ = basic_uint32; Property.access = Property.readable; Property.annotations = []; } let p_DriveSerial = { Property.interface = interface; Property.member = "DriveSerial"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DriveSimilarDevices = { Property.interface = interface; Property.member = "DriveSimilarDevices"; Property.typ = array basic_object_path; Property.access = Property.readable; Property.annotations = []; } let p_DriveVendor = { Property.interface = interface; Property.member = "DriveVendor"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DriveWriteCache = { Property.interface = interface; Property.member = "DriveWriteCache"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_DriveWwn = { Property.interface = interface; Property.member = "DriveWwn"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_IdLabel = { Property.interface = interface; Property.member = "IdLabel"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_IdType = { Property.interface = interface; Property.member = "IdType"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_IdUsage = { Property.interface = interface; Property.member = "IdUsage"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_IdUuid = { Property.interface = interface; Property.member = "IdUuid"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_IdVersion = { Property.interface = interface; Property.member = "IdVersion"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_JobId = { Property.interface = interface; Property.member = "JobId"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_JobInProgress = { Property.interface = interface; Property.member = "JobInProgress"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_JobInitiatedByUid = { Property.interface = interface; Property.member = "JobInitiatedByUid"; Property.typ = basic_uint32; Property.access = Property.readable; Property.annotations = []; } let p_JobIsCancellable = { Property.interface = interface; Property.member = "JobIsCancellable"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_JobPercentage = { Property.interface = interface; Property.member = "JobPercentage"; Property.typ = basic_double; Property.access = Property.readable; Property.annotations = []; } let p_LinuxDmmpComponentHolder = { Property.interface = interface; Property.member = "LinuxDmmpComponentHolder"; Property.typ = basic_object_path; Property.access = Property.readable; Property.annotations = []; } let p_LinuxDmmpName = { Property.interface = interface; Property.member = "LinuxDmmpName"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxDmmpParameters = { Property.interface = interface; Property.member = "LinuxDmmpParameters"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxDmmpSlaves = { Property.interface = interface; Property.member = "LinuxDmmpSlaves"; Property.typ = array basic_object_path; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLoopFilename = { Property.interface = interface; Property.member = "LinuxLoopFilename"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2LVGroupName = { Property.interface = interface; Property.member = "LinuxLvm2LVGroupName"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2LVGroupUuid = { Property.interface = interface; Property.member = "LinuxLvm2LVGroupUuid"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2LVName = { Property.interface = interface; Property.member = "LinuxLvm2LVName"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2LVUuid = { Property.interface = interface; Property.member = "LinuxLvm2LVUuid"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2PVGroupExtentSize = { Property.interface = interface; Property.member = "LinuxLvm2PVGroupExtentSize"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2PVGroupLogicalVolumes = { Property.interface = interface; Property.member = "LinuxLvm2PVGroupLogicalVolumes"; Property.typ = array basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2PVGroupName = { Property.interface = interface; Property.member = "LinuxLvm2PVGroupName"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2PVGroupPhysicalVolumes = { Property.interface = interface; Property.member = "LinuxLvm2PVGroupPhysicalVolumes"; Property.typ = array basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2PVGroupSequenceNumber = { Property.interface = interface; Property.member = "LinuxLvm2PVGroupSequenceNumber"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2PVGroupSize = { Property.interface = interface; Property.member = "LinuxLvm2PVGroupSize"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2PVGroupUnallocatedSize = { Property.interface = interface; Property.member = "LinuxLvm2PVGroupUnallocatedSize"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2PVGroupUuid = { Property.interface = interface; Property.member = "LinuxLvm2PVGroupUuid"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2PVNumMetadataAreas = { Property.interface = interface; Property.member = "LinuxLvm2PVNumMetadataAreas"; Property.typ = basic_uint32; Property.access = Property.readable; Property.annotations = []; } let p_LinuxLvm2PVUuid = { Property.interface = interface; Property.member = "LinuxLvm2PVUuid"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdComponentHolder = { Property.interface = interface; Property.member = "LinuxMdComponentHolder"; Property.typ = basic_object_path; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdComponentHomeHost = { Property.interface = interface; Property.member = "LinuxMdComponentHomeHost"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdComponentLevel = { Property.interface = interface; Property.member = "LinuxMdComponentLevel"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdComponentName = { Property.interface = interface; Property.member = "LinuxMdComponentName"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdComponentNumRaidDevices = { Property.interface = interface; Property.member = "LinuxMdComponentNumRaidDevices"; Property.typ = basic_int32; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdComponentPosition = { Property.interface = interface; Property.member = "LinuxMdComponentPosition"; Property.typ = basic_int32; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdComponentState = { Property.interface = interface; Property.member = "LinuxMdComponentState"; Property.typ = array basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdComponentUuid = { Property.interface = interface; Property.member = "LinuxMdComponentUuid"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdComponentVersion = { Property.interface = interface; Property.member = "LinuxMdComponentVersion"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdHomeHost = { Property.interface = interface; Property.member = "LinuxMdHomeHost"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdIsDegraded = { Property.interface = interface; Property.member = "LinuxMdIsDegraded"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdLevel = { Property.interface = interface; Property.member = "LinuxMdLevel"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdName = { Property.interface = interface; Property.member = "LinuxMdName"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdNumRaidDevices = { Property.interface = interface; Property.member = "LinuxMdNumRaidDevices"; Property.typ = basic_int32; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdSlaves = { Property.interface = interface; Property.member = "LinuxMdSlaves"; Property.typ = array basic_object_path; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdState = { Property.interface = interface; Property.member = "LinuxMdState"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdSyncAction = { Property.interface = interface; Property.member = "LinuxMdSyncAction"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdSyncPercentage = { Property.interface = interface; Property.member = "LinuxMdSyncPercentage"; Property.typ = basic_double; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdSyncSpeed = { Property.interface = interface; Property.member = "LinuxMdSyncSpeed"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdUuid = { Property.interface = interface; Property.member = "LinuxMdUuid"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LinuxMdVersion = { Property.interface = interface; Property.member = "LinuxMdVersion"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_LuksCleartextSlave = { Property.interface = interface; Property.member = "LuksCleartextSlave"; Property.typ = basic_object_path; Property.access = Property.readable; Property.annotations = []; } let p_LuksCleartextUnlockedByUid = { Property.interface = interface; Property.member = "LuksCleartextUnlockedByUid"; Property.typ = basic_uint32; Property.access = Property.readable; Property.annotations = []; } let p_LuksHolder = { Property.interface = interface; Property.member = "LuksHolder"; Property.typ = basic_object_path; Property.access = Property.readable; Property.annotations = []; } let p_NativePath = { Property.interface = interface; Property.member = "NativePath"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_OpticalDiscIsAppendable = { Property.interface = interface; Property.member = "OpticalDiscIsAppendable"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_OpticalDiscIsBlank = { Property.interface = interface; Property.member = "OpticalDiscIsBlank"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_OpticalDiscIsClosed = { Property.interface = interface; Property.member = "OpticalDiscIsClosed"; Property.typ = basic_boolean; Property.access = Property.readable; Property.annotations = []; } let p_OpticalDiscNumAudioTracks = { Property.interface = interface; Property.member = "OpticalDiscNumAudioTracks"; Property.typ = basic_uint32; Property.access = Property.readable; Property.annotations = []; } let p_OpticalDiscNumSessions = { Property.interface = interface; Property.member = "OpticalDiscNumSessions"; Property.typ = basic_uint32; Property.access = Property.readable; Property.annotations = []; } let p_OpticalDiscNumTracks = { Property.interface = interface; Property.member = "OpticalDiscNumTracks"; Property.typ = basic_uint32; Property.access = Property.readable; Property.annotations = []; } let p_PartitionAlignmentOffset = { Property.interface = interface; Property.member = "PartitionAlignmentOffset"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_PartitionFlags = { Property.interface = interface; Property.member = "PartitionFlags"; Property.typ = array basic_string; Property.access = Property.readable; Property.annotations = []; } let p_PartitionLabel = { Property.interface = interface; Property.member = "PartitionLabel"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_PartitionNumber = { Property.interface = interface; Property.member = "PartitionNumber"; Property.typ = basic_int32; Property.access = Property.readable; Property.annotations = []; } let p_PartitionOffset = { Property.interface = interface; Property.member = "PartitionOffset"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_PartitionScheme = { Property.interface = interface; Property.member = "PartitionScheme"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_PartitionSize = { Property.interface = interface; Property.member = "PartitionSize"; Property.typ = basic_uint64; Property.access = Property.readable; Property.annotations = []; } let p_PartitionSlave = { Property.interface = interface; Property.member = "PartitionSlave"; Property.typ = basic_object_path; Property.access = Property.readable; Property.annotations = []; } let p_PartitionTableCount = { Property.interface = interface; Property.member = "PartitionTableCount"; Property.typ = basic_int32; Property.access = Property.readable; Property.annotations = []; } let p_PartitionTableScheme = { Property.interface = interface; Property.member = "PartitionTableScheme"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_PartitionType = { Property.interface = interface; Property.member = "PartitionType"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_PartitionUuid = { Property.interface = interface; Property.member = "PartitionUuid"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } type 'a members = { m_DriveAtaSmartInitiateSelftest : 'a OBus_object.t -> string * string list -> unit Lwt.t; m_DriveAtaSmartRefreshData : 'a OBus_object.t -> string list -> unit Lwt.t; m_DriveBenchmark : 'a OBus_object.t -> bool * string list -> ((int64 * float) list * (int64 * float) list * (int64 * float) list) Lwt.t; m_DriveDetach : 'a OBus_object.t -> string list -> unit Lwt.t; m_DriveEject : 'a OBus_object.t -> string list -> unit Lwt.t; m_DriveInhibitPolling : 'a OBus_object.t -> string list -> string Lwt.t; m_DrivePollMedia : 'a OBus_object.t -> unit -> unit Lwt.t; m_DriveSetSpindownTimeout : 'a OBus_object.t -> int32 * string list -> string Lwt.t; m_DriveUninhibitPolling : 'a OBus_object.t -> string -> unit Lwt.t; m_DriveUnsetSpindownTimeout : 'a OBus_object.t -> string -> unit Lwt.t; m_FilesystemCheck : 'a OBus_object.t -> string list -> bool Lwt.t; m_FilesystemCreate : 'a OBus_object.t -> string * string list -> unit Lwt.t; m_FilesystemListOpenFiles : 'a OBus_object.t -> unit -> (int32 * int32 * string) list Lwt.t; m_FilesystemMount : 'a OBus_object.t -> string * string list -> string Lwt.t; m_FilesystemSetLabel : 'a OBus_object.t -> string -> unit Lwt.t; m_FilesystemUnmount : 'a OBus_object.t -> string list -> unit Lwt.t; m_JobCancel : 'a OBus_object.t -> unit -> unit Lwt.t; m_LinuxLvm2LVStop : 'a OBus_object.t -> string list -> unit Lwt.t; m_LinuxMdAddSpare : 'a OBus_object.t -> OBus_path.t * string list -> unit Lwt.t; m_LinuxMdCheck : 'a OBus_object.t -> string list -> int64 Lwt.t; m_LinuxMdExpand : 'a OBus_object.t -> OBus_path.t list * string list -> unit Lwt.t; m_LinuxMdRemoveComponent : 'a OBus_object.t -> OBus_path.t * string list -> unit Lwt.t; m_LinuxMdStop : 'a OBus_object.t -> string list -> unit Lwt.t; m_LuksChangePassphrase : 'a OBus_object.t -> string * string -> unit Lwt.t; m_LuksLock : 'a OBus_object.t -> string list -> unit Lwt.t; m_LuksUnlock : 'a OBus_object.t -> string * string list -> OBus_path.t Lwt.t; m_PartitionCreate : 'a OBus_object.t -> int64 * int64 * string * string * string list * string list * string * string list -> OBus_path.t Lwt.t; m_PartitionDelete : 'a OBus_object.t -> string list -> unit Lwt.t; m_PartitionModify : 'a OBus_object.t -> string * string * string list -> unit Lwt.t; m_PartitionTableCreate : 'a OBus_object.t -> string * string list -> unit Lwt.t; p_DeviceBlockSize : 'a OBus_object.t -> int64 React.signal; p_DeviceDetectionTime : 'a OBus_object.t -> int64 React.signal; p_DeviceFile : 'a OBus_object.t -> string React.signal; p_DeviceFileById : 'a OBus_object.t -> string list React.signal; p_DeviceFileByPath : 'a OBus_object.t -> string list React.signal; p_DeviceFilePresentation : 'a OBus_object.t -> string React.signal; p_DeviceIsDrive : 'a OBus_object.t -> bool React.signal; p_DeviceIsLinuxDmmp : 'a OBus_object.t -> bool React.signal; p_DeviceIsLinuxDmmpComponent : 'a OBus_object.t -> bool React.signal; p_DeviceIsLinuxLoop : 'a OBus_object.t -> bool React.signal; p_DeviceIsLinuxLvm2LV : 'a OBus_object.t -> bool React.signal; p_DeviceIsLinuxLvm2PV : 'a OBus_object.t -> bool React.signal; p_DeviceIsLinuxMd : 'a OBus_object.t -> bool React.signal; p_DeviceIsLinuxMdComponent : 'a OBus_object.t -> bool React.signal; p_DeviceIsLuks : 'a OBus_object.t -> bool React.signal; p_DeviceIsLuksCleartext : 'a OBus_object.t -> bool React.signal; p_DeviceIsMediaAvailable : 'a OBus_object.t -> bool React.signal; p_DeviceIsMediaChangeDetected : 'a OBus_object.t -> bool React.signal; p_DeviceIsMediaChangeDetectionInhibitable : 'a OBus_object.t -> bool React.signal; p_DeviceIsMediaChangeDetectionInhibited : 'a OBus_object.t -> bool React.signal; p_DeviceIsMediaChangeDetectionPolling : 'a OBus_object.t -> bool React.signal; p_DeviceIsMounted : 'a OBus_object.t -> bool React.signal; p_DeviceIsOpticalDisc : 'a OBus_object.t -> bool React.signal; p_DeviceIsPartition : 'a OBus_object.t -> bool React.signal; p_DeviceIsPartitionTable : 'a OBus_object.t -> bool React.signal; p_DeviceIsReadOnly : 'a OBus_object.t -> bool React.signal; p_DeviceIsRemovable : 'a OBus_object.t -> bool React.signal; p_DeviceIsSystemInternal : 'a OBus_object.t -> bool React.signal; p_DeviceMajor : 'a OBus_object.t -> int64 React.signal; p_DeviceMediaDetectionTime : 'a OBus_object.t -> int64 React.signal; p_DeviceMinor : 'a OBus_object.t -> int64 React.signal; p_DeviceMountPaths : 'a OBus_object.t -> string list React.signal; p_DeviceMountedByUid : 'a OBus_object.t -> int32 React.signal; p_DevicePresentationHide : 'a OBus_object.t -> bool React.signal; p_DevicePresentationIconName : 'a OBus_object.t -> string React.signal; p_DevicePresentationName : 'a OBus_object.t -> string React.signal; p_DevicePresentationNopolicy : 'a OBus_object.t -> bool React.signal; p_DeviceSize : 'a OBus_object.t -> int64 React.signal; p_DriveAdapter : 'a OBus_object.t -> OBus_path.t React.signal; p_DriveAtaSmartBlob : 'a OBus_object.t -> string React.signal; p_DriveAtaSmartIsAvailable : 'a OBus_object.t -> bool React.signal; p_DriveAtaSmartStatus : 'a OBus_object.t -> string React.signal; p_DriveAtaSmartTimeCollected : 'a OBus_object.t -> int64 React.signal; p_DriveCanDetach : 'a OBus_object.t -> bool React.signal; p_DriveCanSpindown : 'a OBus_object.t -> bool React.signal; p_DriveConnectionInterface : 'a OBus_object.t -> string React.signal; p_DriveConnectionSpeed : 'a OBus_object.t -> int64 React.signal; p_DriveIsMediaEjectable : 'a OBus_object.t -> bool React.signal; p_DriveIsRotational : 'a OBus_object.t -> bool React.signal; p_DriveMedia : 'a OBus_object.t -> string React.signal; p_DriveMediaCompatibility : 'a OBus_object.t -> string list React.signal; p_DriveModel : 'a OBus_object.t -> string React.signal; p_DrivePorts : 'a OBus_object.t -> OBus_path.t list React.signal; p_DriveRevision : 'a OBus_object.t -> string React.signal; p_DriveRotationRate : 'a OBus_object.t -> int32 React.signal; p_DriveSerial : 'a OBus_object.t -> string React.signal; p_DriveSimilarDevices : 'a OBus_object.t -> OBus_path.t list React.signal; p_DriveVendor : 'a OBus_object.t -> string React.signal; p_DriveWriteCache : 'a OBus_object.t -> string React.signal; p_DriveWwn : 'a OBus_object.t -> string React.signal; p_IdLabel : 'a OBus_object.t -> string React.signal; p_IdType : 'a OBus_object.t -> string React.signal; p_IdUsage : 'a OBus_object.t -> string React.signal; p_IdUuid : 'a OBus_object.t -> string React.signal; p_IdVersion : 'a OBus_object.t -> string React.signal; p_JobId : 'a OBus_object.t -> string React.signal; p_JobInProgress : 'a OBus_object.t -> bool React.signal; p_JobInitiatedByUid : 'a OBus_object.t -> int32 React.signal; p_JobIsCancellable : 'a OBus_object.t -> bool React.signal; p_JobPercentage : 'a OBus_object.t -> float React.signal; p_LinuxDmmpComponentHolder : 'a OBus_object.t -> OBus_path.t React.signal; p_LinuxDmmpName : 'a OBus_object.t -> string React.signal; p_LinuxDmmpParameters : 'a OBus_object.t -> string React.signal; p_LinuxDmmpSlaves : 'a OBus_object.t -> OBus_path.t list React.signal; p_LinuxLoopFilename : 'a OBus_object.t -> string React.signal; p_LinuxLvm2LVGroupName : 'a OBus_object.t -> string React.signal; p_LinuxLvm2LVGroupUuid : 'a OBus_object.t -> string React.signal; p_LinuxLvm2LVName : 'a OBus_object.t -> string React.signal; p_LinuxLvm2LVUuid : 'a OBus_object.t -> string React.signal; p_LinuxLvm2PVGroupExtentSize : 'a OBus_object.t -> int64 React.signal; p_LinuxLvm2PVGroupLogicalVolumes : 'a OBus_object.t -> string list React.signal; p_LinuxLvm2PVGroupName : 'a OBus_object.t -> string React.signal; p_LinuxLvm2PVGroupPhysicalVolumes : 'a OBus_object.t -> string list React.signal; p_LinuxLvm2PVGroupSequenceNumber : 'a OBus_object.t -> int64 React.signal; p_LinuxLvm2PVGroupSize : 'a OBus_object.t -> int64 React.signal; p_LinuxLvm2PVGroupUnallocatedSize : 'a OBus_object.t -> int64 React.signal; p_LinuxLvm2PVGroupUuid : 'a OBus_object.t -> string React.signal; p_LinuxLvm2PVNumMetadataAreas : 'a OBus_object.t -> int32 React.signal; p_LinuxLvm2PVUuid : 'a OBus_object.t -> string React.signal; p_LinuxMdComponentHolder : 'a OBus_object.t -> OBus_path.t React.signal; p_LinuxMdComponentHomeHost : 'a OBus_object.t -> string React.signal; p_LinuxMdComponentLevel : 'a OBus_object.t -> string React.signal; p_LinuxMdComponentName : 'a OBus_object.t -> string React.signal; p_LinuxMdComponentNumRaidDevices : 'a OBus_object.t -> int32 React.signal; p_LinuxMdComponentPosition : 'a OBus_object.t -> int32 React.signal; p_LinuxMdComponentState : 'a OBus_object.t -> string list React.signal; p_LinuxMdComponentUuid : 'a OBus_object.t -> string React.signal; p_LinuxMdComponentVersion : 'a OBus_object.t -> string React.signal; p_LinuxMdHomeHost : 'a OBus_object.t -> string React.signal; p_LinuxMdIsDegraded : 'a OBus_object.t -> bool React.signal; p_LinuxMdLevel : 'a OBus_object.t -> string React.signal; p_LinuxMdName : 'a OBus_object.t -> string React.signal; p_LinuxMdNumRaidDevices : 'a OBus_object.t -> int32 React.signal; p_LinuxMdSlaves : 'a OBus_object.t -> OBus_path.t list React.signal; p_LinuxMdState : 'a OBus_object.t -> string React.signal; p_LinuxMdSyncAction : 'a OBus_object.t -> string React.signal; p_LinuxMdSyncPercentage : 'a OBus_object.t -> float React.signal; p_LinuxMdSyncSpeed : 'a OBus_object.t -> int64 React.signal; p_LinuxMdUuid : 'a OBus_object.t -> string React.signal; p_LinuxMdVersion : 'a OBus_object.t -> string React.signal; p_LuksCleartextSlave : 'a OBus_object.t -> OBus_path.t React.signal; p_LuksCleartextUnlockedByUid : 'a OBus_object.t -> int32 React.signal; p_LuksHolder : 'a OBus_object.t -> OBus_path.t React.signal; p_NativePath : 'a OBus_object.t -> string React.signal; p_OpticalDiscIsAppendable : 'a OBus_object.t -> bool React.signal; p_OpticalDiscIsBlank : 'a OBus_object.t -> bool React.signal; p_OpticalDiscIsClosed : 'a OBus_object.t -> bool React.signal; p_OpticalDiscNumAudioTracks : 'a OBus_object.t -> int32 React.signal; p_OpticalDiscNumSessions : 'a OBus_object.t -> int32 React.signal; p_OpticalDiscNumTracks : 'a OBus_object.t -> int32 React.signal; p_PartitionAlignmentOffset : 'a OBus_object.t -> int64 React.signal; p_PartitionFlags : 'a OBus_object.t -> string list React.signal; p_PartitionLabel : 'a OBus_object.t -> string React.signal; p_PartitionNumber : 'a OBus_object.t -> int32 React.signal; p_PartitionOffset : 'a OBus_object.t -> int64 React.signal; p_PartitionScheme : 'a OBus_object.t -> string React.signal; p_PartitionSize : 'a OBus_object.t -> int64 React.signal; p_PartitionSlave : 'a OBus_object.t -> OBus_path.t React.signal; p_PartitionTableCount : 'a OBus_object.t -> int32 React.signal; p_PartitionTableScheme : 'a OBus_object.t -> string React.signal; p_PartitionType : 'a OBus_object.t -> string React.signal; p_PartitionUuid : 'a OBus_object.t -> string React.signal; } let make members = OBus_object.make_interface_unsafe interface [ ] [| method_info m_DriveAtaSmartInitiateSelftest members.m_DriveAtaSmartInitiateSelftest; method_info m_DriveAtaSmartRefreshData members.m_DriveAtaSmartRefreshData; method_info m_DriveBenchmark members.m_DriveBenchmark; method_info m_DriveDetach members.m_DriveDetach; method_info m_DriveEject members.m_DriveEject; method_info m_DriveInhibitPolling members.m_DriveInhibitPolling; method_info m_DrivePollMedia members.m_DrivePollMedia; method_info m_DriveSetSpindownTimeout members.m_DriveSetSpindownTimeout; method_info m_DriveUninhibitPolling members.m_DriveUninhibitPolling; method_info m_DriveUnsetSpindownTimeout members.m_DriveUnsetSpindownTimeout; method_info m_FilesystemCheck members.m_FilesystemCheck; method_info m_FilesystemCreate members.m_FilesystemCreate; method_info m_FilesystemListOpenFiles members.m_FilesystemListOpenFiles; method_info m_FilesystemMount members.m_FilesystemMount; method_info m_FilesystemSetLabel members.m_FilesystemSetLabel; method_info m_FilesystemUnmount members.m_FilesystemUnmount; method_info m_JobCancel members.m_JobCancel; method_info m_LinuxLvm2LVStop members.m_LinuxLvm2LVStop; method_info m_LinuxMdAddSpare members.m_LinuxMdAddSpare; method_info m_LinuxMdCheck members.m_LinuxMdCheck; method_info m_LinuxMdExpand members.m_LinuxMdExpand; method_info m_LinuxMdRemoveComponent members.m_LinuxMdRemoveComponent; method_info m_LinuxMdStop members.m_LinuxMdStop; method_info m_LuksChangePassphrase members.m_LuksChangePassphrase; method_info m_LuksLock members.m_LuksLock; method_info m_LuksUnlock members.m_LuksUnlock; method_info m_PartitionCreate members.m_PartitionCreate; method_info m_PartitionDelete members.m_PartitionDelete; method_info m_PartitionModify members.m_PartitionModify; method_info m_PartitionTableCreate members.m_PartitionTableCreate; |] [| signal_info s_Changed; signal_info s_JobChanged; |] [| property_r_info p_DeviceBlockSize members.p_DeviceBlockSize; property_r_info p_DeviceDetectionTime members.p_DeviceDetectionTime; property_r_info p_DeviceFile members.p_DeviceFile; property_r_info p_DeviceFileById members.p_DeviceFileById; property_r_info p_DeviceFileByPath members.p_DeviceFileByPath; property_r_info p_DeviceFilePresentation members.p_DeviceFilePresentation; property_r_info p_DeviceIsDrive members.p_DeviceIsDrive; property_r_info p_DeviceIsLinuxDmmp members.p_DeviceIsLinuxDmmp; property_r_info p_DeviceIsLinuxDmmpComponent members.p_DeviceIsLinuxDmmpComponent; property_r_info p_DeviceIsLinuxLoop members.p_DeviceIsLinuxLoop; property_r_info p_DeviceIsLinuxLvm2LV members.p_DeviceIsLinuxLvm2LV; property_r_info p_DeviceIsLinuxLvm2PV members.p_DeviceIsLinuxLvm2PV; property_r_info p_DeviceIsLinuxMd members.p_DeviceIsLinuxMd; property_r_info p_DeviceIsLinuxMdComponent members.p_DeviceIsLinuxMdComponent; property_r_info p_DeviceIsLuks members.p_DeviceIsLuks; property_r_info p_DeviceIsLuksCleartext members.p_DeviceIsLuksCleartext; property_r_info p_DeviceIsMediaAvailable members.p_DeviceIsMediaAvailable; property_r_info p_DeviceIsMediaChangeDetected members.p_DeviceIsMediaChangeDetected; property_r_info p_DeviceIsMediaChangeDetectionInhibitable members.p_DeviceIsMediaChangeDetectionInhibitable; property_r_info p_DeviceIsMediaChangeDetectionInhibited members.p_DeviceIsMediaChangeDetectionInhibited; property_r_info p_DeviceIsMediaChangeDetectionPolling members.p_DeviceIsMediaChangeDetectionPolling; property_r_info p_DeviceIsMounted members.p_DeviceIsMounted; property_r_info p_DeviceIsOpticalDisc members.p_DeviceIsOpticalDisc; property_r_info p_DeviceIsPartition members.p_DeviceIsPartition; property_r_info p_DeviceIsPartitionTable members.p_DeviceIsPartitionTable; property_r_info p_DeviceIsReadOnly members.p_DeviceIsReadOnly; property_r_info p_DeviceIsRemovable members.p_DeviceIsRemovable; property_r_info p_DeviceIsSystemInternal members.p_DeviceIsSystemInternal; property_r_info p_DeviceMajor members.p_DeviceMajor; property_r_info p_DeviceMediaDetectionTime members.p_DeviceMediaDetectionTime; property_r_info p_DeviceMinor members.p_DeviceMinor; property_r_info p_DeviceMountPaths members.p_DeviceMountPaths; property_r_info p_DeviceMountedByUid members.p_DeviceMountedByUid; property_r_info p_DevicePresentationHide members.p_DevicePresentationHide; property_r_info p_DevicePresentationIconName members.p_DevicePresentationIconName; property_r_info p_DevicePresentationName members.p_DevicePresentationName; property_r_info p_DevicePresentationNopolicy members.p_DevicePresentationNopolicy; property_r_info p_DeviceSize members.p_DeviceSize; property_r_info p_DriveAdapter members.p_DriveAdapter; property_r_info p_DriveAtaSmartBlob members.p_DriveAtaSmartBlob; property_r_info p_DriveAtaSmartIsAvailable members.p_DriveAtaSmartIsAvailable; property_r_info p_DriveAtaSmartStatus members.p_DriveAtaSmartStatus; property_r_info p_DriveAtaSmartTimeCollected members.p_DriveAtaSmartTimeCollected; property_r_info p_DriveCanDetach members.p_DriveCanDetach; property_r_info p_DriveCanSpindown members.p_DriveCanSpindown; property_r_info p_DriveConnectionInterface members.p_DriveConnectionInterface; property_r_info p_DriveConnectionSpeed members.p_DriveConnectionSpeed; property_r_info p_DriveIsMediaEjectable members.p_DriveIsMediaEjectable; property_r_info p_DriveIsRotational members.p_DriveIsRotational; property_r_info p_DriveMedia members.p_DriveMedia; property_r_info p_DriveMediaCompatibility members.p_DriveMediaCompatibility; property_r_info p_DriveModel members.p_DriveModel; property_r_info p_DrivePorts members.p_DrivePorts; property_r_info p_DriveRevision members.p_DriveRevision; property_r_info p_DriveRotationRate members.p_DriveRotationRate; property_r_info p_DriveSerial members.p_DriveSerial; property_r_info p_DriveSimilarDevices members.p_DriveSimilarDevices; property_r_info p_DriveVendor members.p_DriveVendor; property_r_info p_DriveWriteCache members.p_DriveWriteCache; property_r_info p_DriveWwn members.p_DriveWwn; property_r_info p_IdLabel members.p_IdLabel; property_r_info p_IdType members.p_IdType; property_r_info p_IdUsage members.p_IdUsage; property_r_info p_IdUuid members.p_IdUuid; property_r_info p_IdVersion members.p_IdVersion; property_r_info p_JobId members.p_JobId; property_r_info p_JobInProgress members.p_JobInProgress; property_r_info p_JobInitiatedByUid members.p_JobInitiatedByUid; property_r_info p_JobIsCancellable members.p_JobIsCancellable; property_r_info p_JobPercentage members.p_JobPercentage; property_r_info p_LinuxDmmpComponentHolder members.p_LinuxDmmpComponentHolder; property_r_info p_LinuxDmmpName members.p_LinuxDmmpName; property_r_info p_LinuxDmmpParameters members.p_LinuxDmmpParameters; property_r_info p_LinuxDmmpSlaves members.p_LinuxDmmpSlaves; property_r_info p_LinuxLoopFilename members.p_LinuxLoopFilename; property_r_info p_LinuxLvm2LVGroupName members.p_LinuxLvm2LVGroupName; property_r_info p_LinuxLvm2LVGroupUuid members.p_LinuxLvm2LVGroupUuid; property_r_info p_LinuxLvm2LVName members.p_LinuxLvm2LVName; property_r_info p_LinuxLvm2LVUuid members.p_LinuxLvm2LVUuid; property_r_info p_LinuxLvm2PVGroupExtentSize members.p_LinuxLvm2PVGroupExtentSize; property_r_info p_LinuxLvm2PVGroupLogicalVolumes members.p_LinuxLvm2PVGroupLogicalVolumes; property_r_info p_LinuxLvm2PVGroupName members.p_LinuxLvm2PVGroupName; property_r_info p_LinuxLvm2PVGroupPhysicalVolumes members.p_LinuxLvm2PVGroupPhysicalVolumes; property_r_info p_LinuxLvm2PVGroupSequenceNumber members.p_LinuxLvm2PVGroupSequenceNumber; property_r_info p_LinuxLvm2PVGroupSize members.p_LinuxLvm2PVGroupSize; property_r_info p_LinuxLvm2PVGroupUnallocatedSize members.p_LinuxLvm2PVGroupUnallocatedSize; property_r_info p_LinuxLvm2PVGroupUuid members.p_LinuxLvm2PVGroupUuid; property_r_info p_LinuxLvm2PVNumMetadataAreas members.p_LinuxLvm2PVNumMetadataAreas; property_r_info p_LinuxLvm2PVUuid members.p_LinuxLvm2PVUuid; property_r_info p_LinuxMdComponentHolder members.p_LinuxMdComponentHolder; property_r_info p_LinuxMdComponentHomeHost members.p_LinuxMdComponentHomeHost; property_r_info p_LinuxMdComponentLevel members.p_LinuxMdComponentLevel; property_r_info p_LinuxMdComponentName members.p_LinuxMdComponentName; property_r_info p_LinuxMdComponentNumRaidDevices members.p_LinuxMdComponentNumRaidDevices; property_r_info p_LinuxMdComponentPosition members.p_LinuxMdComponentPosition; property_r_info p_LinuxMdComponentState members.p_LinuxMdComponentState; property_r_info p_LinuxMdComponentUuid members.p_LinuxMdComponentUuid; property_r_info p_LinuxMdComponentVersion members.p_LinuxMdComponentVersion; property_r_info p_LinuxMdHomeHost members.p_LinuxMdHomeHost; property_r_info p_LinuxMdIsDegraded members.p_LinuxMdIsDegraded; property_r_info p_LinuxMdLevel members.p_LinuxMdLevel; property_r_info p_LinuxMdName members.p_LinuxMdName; property_r_info p_LinuxMdNumRaidDevices members.p_LinuxMdNumRaidDevices; property_r_info p_LinuxMdSlaves members.p_LinuxMdSlaves; property_r_info p_LinuxMdState members.p_LinuxMdState; property_r_info p_LinuxMdSyncAction members.p_LinuxMdSyncAction; property_r_info p_LinuxMdSyncPercentage members.p_LinuxMdSyncPercentage; property_r_info p_LinuxMdSyncSpeed members.p_LinuxMdSyncSpeed; property_r_info p_LinuxMdUuid members.p_LinuxMdUuid; property_r_info p_LinuxMdVersion members.p_LinuxMdVersion; property_r_info p_LuksCleartextSlave members.p_LuksCleartextSlave; property_r_info p_LuksCleartextUnlockedByUid members.p_LuksCleartextUnlockedByUid; property_r_info p_LuksHolder members.p_LuksHolder; property_r_info p_NativePath members.p_NativePath; property_r_info p_OpticalDiscIsAppendable members.p_OpticalDiscIsAppendable; property_r_info p_OpticalDiscIsBlank members.p_OpticalDiscIsBlank; property_r_info p_OpticalDiscIsClosed members.p_OpticalDiscIsClosed; property_r_info p_OpticalDiscNumAudioTracks members.p_OpticalDiscNumAudioTracks; property_r_info p_OpticalDiscNumSessions members.p_OpticalDiscNumSessions; property_r_info p_OpticalDiscNumTracks members.p_OpticalDiscNumTracks; property_r_info p_PartitionAlignmentOffset members.p_PartitionAlignmentOffset; property_r_info p_PartitionFlags members.p_PartitionFlags; property_r_info p_PartitionLabel members.p_PartitionLabel; property_r_info p_PartitionNumber members.p_PartitionNumber; property_r_info p_PartitionOffset members.p_PartitionOffset; property_r_info p_PartitionScheme members.p_PartitionScheme; property_r_info p_PartitionSize members.p_PartitionSize; property_r_info p_PartitionSlave members.p_PartitionSlave; property_r_info p_PartitionTableCount members.p_PartitionTableCount; property_r_info p_PartitionTableScheme members.p_PartitionTableScheme; property_r_info p_PartitionType members.p_PartitionType; property_r_info p_PartitionUuid members.p_PartitionUuid; |] end module Org_freedesktop_UDisks_Expander = struct let interface = "org.freedesktop.UDisks.Expander" let s_Changed = { Signal.interface = interface; Signal.member = "Changed"; Signal.args = (arg0); Signal.annotations = []; } let p_Adapter = { Property.interface = interface; Property.member = "Adapter"; Property.typ = basic_object_path; Property.access = Property.readable; Property.annotations = []; } let p_Model = { Property.interface = interface; Property.member = "Model"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_NativePath = { Property.interface = interface; Property.member = "NativePath"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_NumPorts = { Property.interface = interface; Property.member = "NumPorts"; Property.typ = basic_uint32; Property.access = Property.readable; Property.annotations = []; } let p_Revision = { Property.interface = interface; Property.member = "Revision"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_UpstreamPorts = { Property.interface = interface; Property.member = "UpstreamPorts"; Property.typ = array basic_object_path; Property.access = Property.readable; Property.annotations = []; } let p_Vendor = { Property.interface = interface; Property.member = "Vendor"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } type 'a members = { p_Adapter : 'a OBus_object.t -> OBus_path.t React.signal; p_Model : 'a OBus_object.t -> string React.signal; p_NativePath : 'a OBus_object.t -> string React.signal; p_NumPorts : 'a OBus_object.t -> int32 React.signal; p_Revision : 'a OBus_object.t -> string React.signal; p_UpstreamPorts : 'a OBus_object.t -> OBus_path.t list React.signal; p_Vendor : 'a OBus_object.t -> string React.signal; } let make members = OBus_object.make_interface_unsafe interface [ ] [| |] [| signal_info s_Changed; |] [| property_r_info p_Adapter members.p_Adapter; property_r_info p_Model members.p_Model; property_r_info p_NativePath members.p_NativePath; property_r_info p_NumPorts members.p_NumPorts; property_r_info p_Revision members.p_Revision; property_r_info p_UpstreamPorts members.p_UpstreamPorts; property_r_info p_Vendor members.p_Vendor; |] end module Org_freedesktop_UDisks_Port = struct let interface = "org.freedesktop.UDisks.Port" let s_Changed = { Signal.interface = interface; Signal.member = "Changed"; Signal.args = (arg0); Signal.annotations = []; } let p_Adapter = { Property.interface = interface; Property.member = "Adapter"; Property.typ = basic_object_path; Property.access = Property.readable; Property.annotations = []; } let p_ConnectorType = { Property.interface = interface; Property.member = "ConnectorType"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_NativePath = { Property.interface = interface; Property.member = "NativePath"; Property.typ = basic_string; Property.access = Property.readable; Property.annotations = []; } let p_Number = { Property.interface = interface; Property.member = "Number"; Property.typ = basic_int32; Property.access = Property.readable; Property.annotations = []; } let p_Parent = { Property.interface = interface; Property.member = "Parent"; Property.typ = basic_object_path; Property.access = Property.readable; Property.annotations = []; } type 'a members = { p_Adapter : 'a OBus_object.t -> OBus_path.t React.signal; p_ConnectorType : 'a OBus_object.t -> string React.signal; p_NativePath : 'a OBus_object.t -> string React.signal; p_Number : 'a OBus_object.t -> int32 React.signal; p_Parent : 'a OBus_object.t -> OBus_path.t React.signal; } let make members = OBus_object.make_interface_unsafe interface [ ] [| |] [| signal_info s_Changed; |] [| property_r_info p_Adapter members.p_Adapter; property_r_info p_ConnectorType members.p_ConnectorType; property_r_info p_NativePath members.p_NativePath; property_r_info p_Number members.p_Number; property_r_info p_Parent members.p_Parent; |] end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>