summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/src_script_qscriptcontext.cpp
diff options
context:
space:
mode:
authorGareth Stockwell <ext-gareth.stockwell@nokia.com>2010-10-03 18:43:29 (GMT)
committerGareth Stockwell <ext-gareth.stockwell@nokia.com>2010-10-08 08:56:04 (GMT)
commit71af72bc037db6bac023bf9a0bbf6032c06b2d29 (patch)
treee80392dede2042da4275b718ee8622c3c9fe90ad /doc/src/snippets/code/src_script_qscriptcontext.cpp
parentd1b6c5d5e101c9ffdfdfb7b712ea69025150ab05 (diff)
downloadQt-71af72bc037db6bac023bf9a0bbf6032c06b2d29.zip
Qt-71af72bc037db6bac023bf9a0bbf6032c06b2d29.tar.gz
Qt-71af72bc037db6bac023bf9a0bbf6032c06b2d29.tar.bz2
Added qmake check for presence of RHttpDownloadMgr header
downloadmgrclient.h is not found on S^4 baselines, causing a build failure. This commit is a temporary workaround, which disables progressive download support if the header is not found. The correct solution is to determine whether the RHttpDownloadMgr definition has moved, and if so, to modify the .pro file to include the new path. Task-number: QTBUG-10769 Reviewed-by: TrustMe
Diffstat (limited to 'doc/src/snippets/code/src_script_qscriptcontext.cpp')
0 files changed, 0 insertions, 0 deletions
ref='#n3'>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 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.10.0"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>HDF5: File Access Properties</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript" src="cookie.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
  $(function() { init_search(); });
/* @license-end */
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="hdf5doxy.css" rel="stylesheet" type="text/css">
<!-- <link href="hdf5doxy.css" rel="stylesheet" type="text/css"/>
 -->
<script type="text/javascript" src="hdf5_navtree_hacks.js"></script>
</head>
<body>
<div style="background:#FFDDDD;font-size:120%;text-align:center;margin:0;padding:5px">Please, help us to better serve our user community by answering the following short survey:  <a href="https://www.hdfgroup.org/website-survey/">https://www.hdfgroup.org/website-survey/</a></div>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td id="projectlogo"><img alt="Logo" src="HDFG-logo.png"/></td>
  <td id="projectalign" style="padding-left: 0.5em;">
   <div id="projectname"><a href="https://www.hdfgroup.org">HDF5</a>
   &#160;<span id="projectnumber">1.15.0.6d85ea2</span>
   </div>
   <div id="projectbrief">API Reference</div>
  </td>
   <td>        <div id="MSearchBox" class="MSearchBoxInactive">
        <span class="left">
          <span id="MSearchSelect"                onmouseover="return searchBox.OnSearchSelectShow()"                onmouseout="return searchBox.OnSearchSelectHide()">&#160;</span>
          <input type="text" id="MSearchField" value="" placeholder="Search" accesskey="S"
               onfocus="searchBox.OnSearchFieldFocus(true)" 
               onblur="searchBox.OnSearchFieldFocus(false)" 
               onkeyup="searchBox.OnSearchFieldChange(event)"/>
          </span><span class="right">
            <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.svg" alt=""/></a>
          </span>
        </div>
</td>
 </tr>
 </tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.10.0 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "search/",'.html');
/* @license-end */
</script>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
  <div id="nav-tree">
    <div id="nav-tree-contents">
      <div id="nav-sync" class="sync"></div>
    </div>
  </div>
  <div id="splitbar" style="-moz-user-select:none;" 
       class="ui-resizable-handle">
  </div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
$(function(){initNavTree('group___f_a_p_l.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
     onmouseover="return searchBox.OnSearchSelectShow()"
     onmouseout="return searchBox.OnSearchSelectHide()"
     onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>

<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<div id="MSearchResults">
<div class="SRPage">
<div id="SRIndex">
<div id="SRResults"></div>
<div class="SRStatus" id="Loading">Loading...</div>
<div class="SRStatus" id="Searching">Searching...</div>
<div class="SRStatus" id="NoMatches">No Matches</div>
</div>
</div>
</div>
</div>

<div class="header">
  <div class="summary">
<a href="#func-members">Functions</a>  </div>
  <div class="headertitle"><div class="title">File Access Properties<div class="ingroups"><a class="el" href="group___h5_p.html">Property Lists (H5P)</a></div></div></div>
</div><!--header-->
<div class="contents">
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<p>Use file access properties to modify the default behavior of the HDF5 library when accessing files. The properties include selecting a virtual file driver (VFD), configuring the metadata cache (MDC), control file locking, etc. These properties are <em>not</em> persisted with files, and can be adjusted at runtime before a file is created or opened. </p><div></div><div>   <a class="anchor" id="table_fapl_id"></a>
<table class="doxtable">
<caption border="1" style="background-color:whitesmoke;">File access property list functions (H5P)</caption>
<tr>
<th>Function </th><th>Purpose  </th></tr>
<tr>
<td><a class="el" href="#gab99d5af749aeb3896fd9e3ceb273677a" title="Sets alignment properties of a file access property list.">H5Pset_alignment</a>/<a class="el" href="#ga6735afde382cfd746b92a1a3b0e6a2ab" title="Retrieves the current settings for alignment properties from a file access property list.">H5Pget_alignment</a> </td><td>Sets/retrieves alignment properties.  </td></tr>
<tr>
<td><a class="el" href="#ga034a5fc54d9b05296555544d8dd9fe89" title="Sets the raw data chunk cache parameters.">H5Pset_cache</a>/<a class="el" href="#ga9481a0b08d729ec68897d57db1827861" title="Queries the raw data chunk cache parameters.">H5Pget_cache</a> </td><td>Sets/retrieves metadata cache and raw data chunk cache parameters.  </td></tr>
<tr>
<td><a class="el" href="#ga237e300b96222a259896b24cf52405b0" title="Sets write tracking information for core driver, H5FD_CORE.">H5Pset_core_write_tracking</a>/<a class="el" href="#ga60ec714459a4911d28e46deb201f4f2e" title="Gets information about the write tracking feature used by the core VFD.">H5Pget_core_write_tracking</a> </td><td>Sets/retrieves write tracking information for core driver.  </td></tr>
<tr>
<td><a class="el" href="#gac21a815e9b133802df625c9f766ef325" title="Sets the number of files that can be held open in an external link open file cache.">H5Pset_elink_file_cache_size</a>/<a class="el" href="#ga4c9bcfff90f48bfefa2c25e551485923" title="Retrieves the size of the external link open file cache.">H5Pget_elink_file_cache_size</a> </td><td>Sets/retrieves the size of the external link open file cache from the specified file access property list.  </td></tr>
<tr>
<td><a class="el" href="#gaa44cc0e592608e12082dad9305b3c74d" title="Controls the library&#39;s behavior of evicting metadata associated with a closed object.">H5Pset_evict_on_close</a>/<a class="el" href="#ga12789fcfeaea073c13202e6401f404a6" title="Retrieves the file access property list setting that determines whether an HDF5 object will be evicte...">H5Pget_evict_on_close</a> </td><td>Set/get the file access property list setting that determines whether an HDF5 object will be evicted from the library's metadata cache when it is closed.  </td></tr>
<tr>
<td><a class="el" href="#ga61f01a12d5392ccf1321168f3c28f36f" title="Sets garbage collecting references flag.">H5Pset_gc_references</a>/<a class="el" href="#gaaa81d8427b419d80eff6e1d216d99b71" title="Returns garbage collecting references setting.">H5Pget_gc_references</a> </td><td>Sets/retrieves garbage collecting references flag.  </td></tr>
<tr>
<td><a class="el" href="#ga6b24e6daf4816bbfb89b63bab40aa982" title="Sets offset property for low-level access to a file in a family of files.">H5Pset_family_offset</a> </td><td>Sets offset property for low-level access to a file in a family of files.  </td></tr>
<tr>
<td><a class="el" href="#ga14977eaaf6565ba871b575de3163f1b3" title="Retrieves a data offset from the file access property list.">H5Pget_family_offset</a> </td><td>Retrieves a data offset from the file access property list.  </td></tr>
<tr>
<td><a class="el" href="#ga60e3567f677fd3ade75b909b636d7b9c" title="Sets the file close degree.">H5Pset_fclose_degree</a>/<a class="el" href="#ga41da04bb4f823ba9f7d6c57dc8fe2878" title="Returns the file close degree.">H5Pget_fclose_degree</a> </td><td>Sets/retrieves file close degree property.  </td></tr>
<tr>
<td><a class="el" href="#ga31d0299f6ad287e013b2a02a8ccc1fa2" title="Sets an initial file image in a memory buffer.">H5Pset_file_image</a> </td><td>Sets an initial file image in a memory buffer.  </td></tr>
<tr>
<td><a class="el" href="#ga337626cc516d5d1e3303ea6bc350e56b" title="Retrieves a copy of the file image designated as the initial content and structure of a file.">H5Pget_file_image</a> </td><td>Retrieves a copy of the file image designated as the initial content and structure of a file.  </td></tr>
<tr>
<td><a class="el" href="#ga14ea3598215afd078b964b672b40d63c" title="Sets the callbacks for working with file images.">H5Pset_file_image_callbacks</a>/<a class="el" href="#gae17e38082dfdbadd75c897f1e6a9096e" title="Retrieves callback routines for working with file images.">H5Pget_file_image_callbacks</a> </td><td>Sets/gets the callbacks for working with file images.  </td></tr>
<tr>
<td><a class="el" href="#ga503e9ff6121a67cf53f8b67054ed9391" title="Sets the file locking property values.">H5Pset_file_locking</a>/<a class="el" href="#ga5de19a5a8ac23ca417aa2d49d708dc2d" title="Retrieves the file locking property values.">H5Pget_file_locking</a> </td><td>Sets/retrieves file locking property values.  </td></tr>
<tr>
<td><a class="el" href="#ga8822e3dedc8e1414f20871a87d533cb1" title="Sets the minimum metadata block size.">H5Pset_meta_block_size</a>/<a class="el" href="#gac17861181246af0209c0da5209305461" title="Returns the current metadata block size setting.">H5Pget_meta_block_size</a> </td><td>Sets the minimum metadata blocksize or retrieves the current metadata block size setting.  </td></tr>
<tr>
<td><a class="el" href="#gab827cef16ec569c87cec94a8b3f350c5" title="Sets the number of read attempts in a file access property list.">H5Pset_metadata_read_attempts</a>/<a class="el" href="#ga670948d56435920f1e1c2e88b823935e" title="Retrieves the number of read attempts from a file access property list.">H5Pget_metadata_read_attempts</a> </td><td>Sets/gets the number of read attempts from a file access property list.  </td></tr>
<tr>
<td><a class="el" href="#gaf234199ad4cf9c708f45893f7f9cd4d3" title="Set the initial metadata cache configuration in the indicated File Access Property List to the suppli...">H5Pset_mdc_config</a>/<a class="el" href="#ga3012f7f3310c7d25ada7617896bef1ee" title="Get the current initial metadata cache configuration from the provided file access property list.">H5Pget_mdc_config</a> </td><td>Set/get the initial metadata cache configuration in the indicated file access property list.  </td></tr>
<tr>
<td><a class="el" href="#ga65cf9fea33d1324009efc2d5db848434" title="Sets the metadata cache image option for a file access property list.">H5Pset_mdc_image_config</a>/<a class="el" href="#gaaa18d59ee9efb12626410b1638f76f00" title="Retrieves the metadata cache image configuration values for a file access property list.">H5Pget_mdc_image_config</a> </td><td>Set/get the metadata cache image option for a file access property list.  </td></tr>
<tr>
<td><a class="el" href="#ga4d7206c5679d7243410058eceae59b2c" title="Sets metadata cache logging options.">H5Pset_mdc_log_options</a>/<a class="el" href="#gaa3a1ca6e294cc5074933239cc3d0e4a3" title="Gets metadata cache logging options.">H5Pget_mdc_log_options</a> </td><td>Set/get the metadata cache logging options.  </td></tr>
<tr>
<td><a class="el" href="#ga507341f31848c57008a3225bff3fe128" title="Specifies type of data to be accessed via the MULTI driver, enabling more direct access.">H5Pset_multi_type</a>/<a class="el" href="#ga251515e9fee4641037b4866a4f7c49fe" title="Retrieves type of data property for MULTI driver.">H5Pget_multi_type</a> </td><td>Sets/gets the type of data property for the MULTI driver.  </td></tr>
<tr>
<td><a class="el" href="#gab4a4a788af5b6e88381dda0df2efbf19" title="Sets a callback function to invoke when an object flush occurs in the file.">H5Pset_object_flush_cb</a>/<a class="el" href="#gadb66d434fd8d2f600213b0eec539564e" title="Retrieves the object flush property values from the file access property list.">H5Pget_object_flush_cb</a> </td><td>Set/get the object flush property values from the file access property list.  </td></tr>
<tr>
<td><a class="el" href="#ga8008cddafa81bd1ddada23f6d9a161ca" title="Sets the maximum size for the page buffer and the minimum percentage for metadata and raw data pages.">H5Pset_page_buffer_size</a>/<a class="el" href="#ga0da11baf31cf424d053aa7952c933d98" title="Retrieves the maximum size for the page buffer and the minimum percentage for metadata and raw data p...">H5Pget_page_buffer_size</a> </td><td>Set/get the maximum size for the page buffer.  </td></tr>
<tr>
<td><a class="el" href="#ga24fd737955839194bf5605d5f47928ee" title="Sets the maximum size of the data sieve buffer.">H5Pset_sieve_buf_size</a>/<a class="el" href="#gac2321d0c34bb2b3cf33cd7bf02ca8e66" title="Returns maximum data sieve buffer size.">H5Pget_sieve_buf_size</a> </td><td>Sets/retrieves maximum size of data sieve buffer.  </td></tr>
<tr>
<td><a class="el" href="#gacbe1724e7f70cd17ed687417a1d2a910" title="Controls the range of library release versions used when creating objects in a file.">H5Pset_libver_bounds</a> </td><td>Sets bounds on library versions, and indirectly format versions, to be used when creating objects.  </td></tr>
<tr>
<td><a class="el" href="#gad5d7e671c3a06bcee64bc25841aaf607" title="Retrieves library version bounds settings that indirectly control the format versions used when creat...">H5Pget_libver_bounds</a> </td><td>Retrieves library version bounds settings that indirectly control the format versions used when creating objects.  </td></tr>
<tr>
<td><a class="el" href="#ga5a99962a79412814b79be830f14c23dd" title="Sets the size of a contiguous block reserved for small data.">H5Pset_small_data_block_size</a> </td><td>Sets the size of a contiguous block reserved for small data.  </td></tr>
<tr>
<td><a class="el" href="#ga6896bea06d7744b56e22347f572f5470" title="Retrieves the current small data block size setting.">H5Pget_small_data_block_size</a> </td><td>Retrieves the current small data block size setting.  </td></tr>
<tr>
<td><a class="el" href="#ga8aaa97e70b2544c3d95d908e1ae5b0f0" title="Set the file VOL connector for a file access property list.">H5Pset_vol</a> </td><td>Sets the file VOL connector for a file access property list.  </td></tr>
<tr>
<td><a class="el" href="#ga2ad4dc5c6e5e4271334a7b1c6ee0777d" title="Query the capability flags for the VOL connector that will be used with this file access property lis...">H5Pget_vol_cap_flags</a> </td><td>Retrieves the capability flags for the VOL connector that will be used with a file access property list.  </td></tr>
<tr>
<td><a class="el" href="#ga5f133bdf09ca5a32622688d1ba5cc838" title="Returns the identifier of the current VOL connector.">H5Pget_vol_id</a> </td><td>Retrieves the identifier of the current VOL connector.  </td></tr>
<tr>
<td><a class="el" href="#gafc58db23c257cdcf2f0c1c3ae911ab0f" title="Returns a copy of the VOL information for a connector.">H5Pget_vol_info</a> </td><td>Retrieves a copy of the VOL information for a connector.  </td></tr>
<tr>
<td><a class="el" href="#ga6daceb4a9e51fca7cb198f964b67baf0" title="Set the MPI communicator and info.">H5Pset_mpi_params</a>/<a class="el" href="#ga5554cf0775f9d7ac3b0cd844533d4486" title="Get the MPI communicator and info.">H5Pget_mpi_params</a> </td><td>Sets/retrieves the MPI communicator and info.  </td></tr>
<tr>
<td><a class="el" href="#ga6380f9929cf42c8203813f7e72dde35c" title="Sets metadata write mode to be collective or independent (default)">H5Pset_coll_metadata_write</a>/<a class="el" href="#gac83ab4e788a5b6e0d578f40ca67d8d00" title="Retrieves metadata write mode setting.">H5Pget_coll_metadata_write</a> </td><td>Sets/retrieves metadata write mode setting.  </td></tr>
</table>
</div><div>  </div><div>   <a class="anchor" id="table_fd_pl_id"></a>
<table class="doxtable">
<caption border="1" style="background-color:whitesmoke;">File driver property list functions (H5P)</caption>
<tr>
<th>Function </th><th>Purpose  </th></tr>
<tr>
<td><a class="el" href="#ga8bcce60e23e9d2a019212c63b146502e" title="Sets a file driver.">H5Pset_driver</a> </td><td>Sets a file driver.  </td></tr>
<tr>
<td><a class="el" href="#ga43a733fe9723dd15f5ad7abda909a1b8" title="Returns low-lever driver identifier.">H5Pget_driver</a> </td><td>Returns the identifier for the driver used to create a file.  </td></tr>
<tr>
<td><a class="el" href="#ga1b072297fed53cd8586604e45c483a56" title="Returns a pointer to file driver information.">H5Pget_driver_info</a> </td><td>Returns a pointer to file driver information.  </td></tr>
<tr>
<td><a class="el" href="#ga156702db27ece40d21b37be5fe5e8b15" title="Sets a file driver according to a given driver name.">H5Pset_driver_by_name</a> </td><td>Sets a file driver according to a given driver name.  </td></tr>
<tr>
<td><a class="el" href="#gac4426b1d36aa8766fbe2deaf67a18c06" title="Sets a file driver according to a given driver value (ID).">H5Pset_driver_by_value</a> </td><td>Sets a file driver according to a given driver value.  </td></tr>
<tr>
<td><a class="el" href="#gac0d9eb573b84ce125433e81b2a475085" title="Retrieves a string representation of the configuration for the driver set on the given FAPL....">H5Pget_driver_config_str</a> </td><td>Retrieves a string representation of the configuration for the driver.  </td></tr>
<tr>
<td><a class="el" href="#ga6e6628f620a1c58c704129cf07282849" title="Modifies the file access property list to use the H5FD_CORE driver.">H5Pset_fapl_core</a>/<a class="el" href="#gac347d401cbb28fecd78c5f15ddb4c9c1" title="Queries core file driver properties.">H5Pget_fapl_core</a> </td><td>Sets the driver for buffered memory files (in RAM) or retrieves information regarding the driver.  </td></tr>
<tr>
<td><a class="el" href="#ga2839252e149484ef30fb214ae7b44ac7" title="Sets up use of the direct I/O driver.">H5Pset_fapl_direct</a>/<a class="el" href="#ga038e5f3952e49b6945039fc2b010ab16" title="Retrieves direct I/O driver settings.">H5Pget_fapl_direct</a> </td><td>Sets up use of the direct I/O driver or retrieves the direct I/O driver settings.  </td></tr>
<tr>
<td><a class="el" href="#ga95d19da25f196ce1ace10af00f49ab53" title="Sets the file access property list to use the family driver.">H5Pset_fapl_family</a>/<a class="el" href="#ga0bc1a003f26bf4b53e4487b6ca117389" title="Returns file access property list information.">H5Pget_fapl_family</a> </td><td>Sets driver for file families, designed for systems that do not support files larger than 2 gigabytes, or retrieves information regarding driver.  </td></tr>
<tr>
<td><a class="el" href="#ga970d077c8e712a4692f43fa4f38dde14" title="Modifies the file access property list to use the H5FD_HDFS driver.">H5Pset_fapl_hdfs</a>/<a class="el" href="#gae59e7d8e0e8823e6dd6034b66418ed00" title="Queries a File Access Property List for H5FD_HDFS file driver properties.">H5Pget_fapl_hdfs</a> </td><td>.  </td></tr>
<tr>
<td><a class="el" href="#ga714340ec9cbb65cb0a819e1d775825f0" title="Modifies the specified File Access Property List to use the H5FD_IOC driver.">H5Pset_fapl_ioc</a>/<a class="el" href="#ga8482cdac1272818e4e0f86a665f8ef98" title="Queries a File Access Property List for H5FD_IOC file driver properties.">H5Pget_fapl_ioc</a> </td><td>Modifies/queries the file driver properties of the I/O concentrator driver.  </td></tr>
<tr>
<td><a class="el" href="#ga4e03be2fe83ed02b32266a6c81427beb" title="Sets up the logging virtual file driver (H5FD_LOG) for use.">H5Pset_fapl_log</a> </td><td>The logging driver is a clone of the standard SEC2 (<a class="el" href="_h5_f_dsec2_8h.html#a15ae1f958e1cf11cb239916d76b10606">H5FD_SEC2</a>) driver with additional facilities for logging metrics and activity to a file.  </td></tr>
<tr>
<td><a class="el" href="#ga8491676811ccc7ba582e30fb63da6563">H5Pset_fapl_mirror</a>/<a class="el" href="#ga2c0636d9bb9c50d381afbd0d3140e593">H5Pget_fapl_mirror</a> </td><td>Modifies/queries the file driver properties of the mirror driver.  </td></tr>
<tr>
<td><a class="el" href="#gaa0204810c1fea1667d62cf7c176416ff" title="Stores MPI IO communicator information to the file access property list.">H5Pset_fapl_mpio</a>/<a class="el" href="#ga5d9e4b9f27791ccf19484a898f3fd6fa" title="Returns MPI IO communicator information.">H5Pget_fapl_mpio</a> </td><td>Sets driver for files on parallel file systems (MPI I/O) or retrieves information regarding the driver.  </td></tr>
<tr>
<td>H5Pset_fapl_mpiposix/H5Pget_fapl_mpiposix </td><td>No longer available.  </td></tr>
<tr>
<td><a class="el" href="#ga296bd22cc1e462351f8f0a00a46baf58" title="Sets up use of the multi-file driver.">H5Pset_fapl_multi</a>/<a class="el" href="#ga765b7880795a139f3b567743ac88c3c7" title="Returns information about the multi-file access property list.">H5Pget_fapl_multi</a> </td><td>Sets driver for multiple files, separating categories of metadata and raw data, or retrieves information regarding driver.  </td></tr>
<tr>
<td><a class="el" href="#ga4d053c7682e54287e550113972b7dda6" title="set the onion info for the file access property list">H5Pset_fapl_onion</a>/<a class="el" href="#ga89b9f918d53dee5e6c80060667b8d32f" title="get the onion info from the file access property list">H5Pget_fapl_onion</a> </td><td>Modifies/queries the file driver properties of the onion driver.  </td></tr>
<tr>
<td><a class="el" href="#gaad28d8c24f236590193215c5ae7a8f18" title="Modifies the specified File Access Property List to use the H5FD_ROS3 driver.">H5Pset_fapl_ros3</a>/<a class="el" href="#ga13e273711e160cbd58e60c701b4f50e6" title="Queries a File Access Property List for H5FD_ROS3 file driver properties.">H5Pget_fapl_ros3</a> </td><td>Modifies/queries the file driver properties of the ros3 driver.  </td></tr>
<tr>
<td><a class="el" href="#gaf581bceca36ad4eef3cd45b16eabbb20" title="Modifies the file access property list to use the H5FD_SEC2 driver.">H5Pset_fapl_sec2</a> </td><td>Sets driver for unbuffered permanent files or retrieves information regarding driver.  </td></tr>
<tr>
<td><a class="el" href="#ga502f1ad38f5143cf281df8282fef26ed" title="Emulates the old split file driver.">H5Pset_fapl_split</a> </td><td>Sets driver for split files, a limited case of multi driver with one metadata file and one raw data file.  </td></tr>
<tr>
<td><a class="el" href="#ga49f386ea235bb48128e54c962c499f07" title="Sets the file access property list to use the splitter driver.">H5Pset_fapl_splitter</a>/<a class="el" href="#gaf6ac1c131acee33dfb878593dfefb4ac" title="Gets splitter driver properties from the the file access property list.">H5Pget_fapl_splitter</a> </td><td>Modifies/queries the file driver properties of the splitter driver.  </td></tr>
<tr>
<td><a class="el" href="#ga77f0643117835e7f7992d573761b5052" title="Sets the standard I/O driver.">H5Pset_fapl_stdio</a> </td><td>Sets driver for buffered permanent files.  </td></tr>
<tr>
<td><a class="el" href="#ga65dbddbba216fdd0bdf99b4feaa74db2" title="Modifies the specified File Access Property List to use the H5FD_SUBFILING driver.">H5Pset_fapl_subfiling</a>/<a class="el" href="#ga2af70900a3ea50a83d65f8285730ef45" title="Queries a File Access Property List for H5FD_SUBFILING file driver properties.">H5Pget_fapl_subfiling</a> </td><td>Modifies/queries the file driver properties of the subfiling driver.  </td></tr>
<tr>
<td><a class="el" href="#ga0017f78e0f3de465621fde556f679830" title="Sets the Windows I/O driver.">H5Pset_fapl_windows</a> </td><td>Sets the Windows I/O driver.  </td></tr>
<tr>
<td><a class="el" href="#ga507341f31848c57008a3225bff3fe128" title="Specifies type of data to be accessed via the MULTI driver, enabling more direct access.">H5Pset_multi_type</a> </td><td>Specifies type of data to be accessed via the MULTI driver enabling more direct access.  </td></tr>
<tr>
<td><a class="el" href="#ga251515e9fee4641037b4866a4f7c49fe" title="Retrieves type of data property for MULTI driver.">H5Pget_multi_type</a> </td><td>Retrieves type of data property for MULTI driver.  </td></tr>
</table>
</div><div>   </div> <table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="func-members" name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:ga6e6628f620a1c58c704129cf07282849" id="r_ga6e6628f620a1c58c704129cf07282849"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga6e6628f620a1c58c704129cf07282849">H5Pset_fapl_core</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, size_t increment, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> backing_store)</td></tr>
<tr class="memdesc:ga6e6628f620a1c58c704129cf07282849"><td class="mdescLeft">&#160;</td><td class="mdescRight">Modifies the file access property list to use the <a class="el" href="_h5_f_dcore_8h.html#ae449696f6b86abcd1120beab21fff76a">H5FD_CORE</a> driver.  <br /></td></tr>
<tr class="separator:ga6e6628f620a1c58c704129cf07282849"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gac347d401cbb28fecd78c5f15ddb4c9c1" id="r_gac347d401cbb28fecd78c5f15ddb4c9c1"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gac347d401cbb28fecd78c5f15ddb4c9c1">H5Pget_fapl_core</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, size_t *increment, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *backing_store)</td></tr>
<tr class="memdesc:gac347d401cbb28fecd78c5f15ddb4c9c1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Queries core file driver properties.  <br /></td></tr>
<tr class="separator:gac347d401cbb28fecd78c5f15ddb4c9c1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga2839252e149484ef30fb214ae7b44ac7" id="r_ga2839252e149484ef30fb214ae7b44ac7"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga2839252e149484ef30fb214ae7b44ac7">H5Pset_fapl_direct</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, size_t alignment, size_t block_size, size_t cbuf_size)</td></tr>
<tr class="memdesc:ga2839252e149484ef30fb214ae7b44ac7"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets up use of the direct I/O driver.  <br /></td></tr>
<tr class="separator:ga2839252e149484ef30fb214ae7b44ac7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga038e5f3952e49b6945039fc2b010ab16" id="r_ga038e5f3952e49b6945039fc2b010ab16"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga038e5f3952e49b6945039fc2b010ab16">H5Pget_fapl_direct</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, size_t *boundary, size_t *block_size, size_t *cbuf_size)</td></tr>
<tr class="memdesc:ga038e5f3952e49b6945039fc2b010ab16"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves direct I/O driver settings.  <br /></td></tr>
<tr class="separator:ga038e5f3952e49b6945039fc2b010ab16"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga95d19da25f196ce1ace10af00f49ab53" id="r_ga95d19da25f196ce1ace10af00f49ab53"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga95d19da25f196ce1ace10af00f49ab53">H5Pset_fapl_family</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> memb_size, <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> memb_fapl_id)</td></tr>
<tr class="memdesc:ga95d19da25f196ce1ace10af00f49ab53"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the file access property list to use the family driver.  <br /></td></tr>
<tr class="separator:ga95d19da25f196ce1ace10af00f49ab53"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga0bc1a003f26bf4b53e4487b6ca117389" id="r_ga0bc1a003f26bf4b53e4487b6ca117389"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga0bc1a003f26bf4b53e4487b6ca117389">H5Pget_fapl_family</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> *memb_size, <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> *memb_fapl_id)</td></tr>
<tr class="memdesc:ga0bc1a003f26bf4b53e4487b6ca117389"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns file access property list information.  <br /></td></tr>
<tr class="separator:ga0bc1a003f26bf4b53e4487b6ca117389"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga970d077c8e712a4692f43fa4f38dde14" id="r_ga970d077c8e712a4692f43fa4f38dde14"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga970d077c8e712a4692f43fa4f38dde14">H5Pset_fapl_hdfs</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="struct_h5_f_d__hdfs__fapl__t.html">H5FD_hdfs_fapl_t</a> *fa)</td></tr>
<tr class="memdesc:ga970d077c8e712a4692f43fa4f38dde14"><td class="mdescLeft">&#160;</td><td class="mdescRight">Modifies the file access property list to use the <a class="el" href="_h5_f_dhdfs_8h.html#ac3868cc2fa0e9aec4bcb52830906d584">H5FD_HDFS</a> driver.  <br /></td></tr>
<tr class="separator:ga970d077c8e712a4692f43fa4f38dde14"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gae59e7d8e0e8823e6dd6034b66418ed00" id="r_gae59e7d8e0e8823e6dd6034b66418ed00"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gae59e7d8e0e8823e6dd6034b66418ed00">H5Pget_fapl_hdfs</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="struct_h5_f_d__hdfs__fapl__t.html">H5FD_hdfs_fapl_t</a> *fa_out)</td></tr>
<tr class="memdesc:gae59e7d8e0e8823e6dd6034b66418ed00"><td class="mdescLeft">&#160;</td><td class="mdescRight">Queries a File Access Property List for <a class="el" href="_h5_f_dhdfs_8h.html#ac3868cc2fa0e9aec4bcb52830906d584">H5FD_HDFS</a> file driver properties.  <br /></td></tr>
<tr class="separator:gae59e7d8e0e8823e6dd6034b66418ed00"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga4e03be2fe83ed02b32266a6c81427beb" id="r_ga4e03be2fe83ed02b32266a6c81427beb"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga4e03be2fe83ed02b32266a6c81427beb">H5Pset_fapl_log</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, const char *logfile, unsigned long long flags, size_t buf_size)</td></tr>
<tr class="memdesc:ga4e03be2fe83ed02b32266a6c81427beb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets up the logging virtual file driver (<a class="el" href="_h5_f_dlog_8h.html#a027aaf28f5104c77c4f51ecd29a5f7f4">H5FD_LOG</a>) for use.  <br /></td></tr>
<tr class="separator:ga4e03be2fe83ed02b32266a6c81427beb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga2c0636d9bb9c50d381afbd0d3140e593" id="r_ga2c0636d9bb9c50d381afbd0d3140e593"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga2c0636d9bb9c50d381afbd0d3140e593">H5Pget_fapl_mirror</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="struct_h5_f_d__mirror__fapl__t.html">H5FD_mirror_fapl_t</a> *fa_out)</td></tr>
<tr class="separator:ga2c0636d9bb9c50d381afbd0d3140e593"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga8491676811ccc7ba582e30fb63da6563" id="r_ga8491676811ccc7ba582e30fb63da6563"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga8491676811ccc7ba582e30fb63da6563">H5Pset_fapl_mirror</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="struct_h5_f_d__mirror__fapl__t.html">H5FD_mirror_fapl_t</a> *fa)</td></tr>
<tr class="separator:ga8491676811ccc7ba582e30fb63da6563"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaa0204810c1fea1667d62cf7c176416ff" id="r_gaa0204810c1fea1667d62cf7c176416ff"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gaa0204810c1fea1667d62cf7c176416ff">H5Pset_fapl_mpio</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, MPI_Comm comm, MPI_Info info)</td></tr>
<tr class="memdesc:gaa0204810c1fea1667d62cf7c176416ff"><td class="mdescLeft">&#160;</td><td class="mdescRight">Stores MPI IO communicator information to the file access property list.  <br /></td></tr>
<tr class="separator:gaa0204810c1fea1667d62cf7c176416ff"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga5d9e4b9f27791ccf19484a898f3fd6fa" id="r_ga5d9e4b9f27791ccf19484a898f3fd6fa"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga5d9e4b9f27791ccf19484a898f3fd6fa">H5Pget_fapl_mpio</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, MPI_Comm *comm, MPI_Info *info)</td></tr>
<tr class="memdesc:ga5d9e4b9f27791ccf19484a898f3fd6fa"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns MPI IO communicator information.  <br /></td></tr>
<tr class="separator:ga5d9e4b9f27791ccf19484a898f3fd6fa"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga296bd22cc1e462351f8f0a00a46baf58" id="r_ga296bd22cc1e462351f8f0a00a46baf58"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga296bd22cc1e462351f8f0a00a46baf58">H5Pset_fapl_multi</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, const <a class="el" href="_h5_f_dpublic_8h.html#a02887a6f018be1a0ce7358522095578b">H5FD_mem_t</a> *memb_map, const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> *memb_fapl, const char *const *memb_name, const <a class="el" href="_h5public_8h.html#a8c86e866f40d7167cf9a1934c72b856f">haddr_t</a> *memb_addr, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> relax)</td></tr>
<tr class="memdesc:ga296bd22cc1e462351f8f0a00a46baf58"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets up use of the multi-file driver.  <br /></td></tr>
<tr class="separator:ga296bd22cc1e462351f8f0a00a46baf58"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga765b7880795a139f3b567743ac88c3c7" id="r_ga765b7880795a139f3b567743ac88c3c7"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga765b7880795a139f3b567743ac88c3c7">H5Pget_fapl_multi</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5_f_dpublic_8h.html#a02887a6f018be1a0ce7358522095578b">H5FD_mem_t</a> *memb_map, <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> *memb_fapl, char **memb_name, <a class="el" href="_h5public_8h.html#a8c86e866f40d7167cf9a1934c72b856f">haddr_t</a> *memb_addr, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *relax)</td></tr>
<tr class="memdesc:ga765b7880795a139f3b567743ac88c3c7"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns information about the multi-file access property list.  <br /></td></tr>
<tr class="separator:ga765b7880795a139f3b567743ac88c3c7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga502f1ad38f5143cf281df8282fef26ed" id="r_ga502f1ad38f5143cf281df8282fef26ed"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga502f1ad38f5143cf281df8282fef26ed">H5Pset_fapl_split</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl, const char *meta_ext, <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> meta_plist_id, const char *raw_ext, <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> raw_plist_id)</td></tr>
<tr class="memdesc:ga502f1ad38f5143cf281df8282fef26ed"><td class="mdescLeft">&#160;</td><td class="mdescRight">Emulates the old split file driver.  <br /></td></tr>
<tr class="separator:ga502f1ad38f5143cf281df8282fef26ed"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga89b9f918d53dee5e6c80060667b8d32f" id="r_ga89b9f918d53dee5e6c80060667b8d32f"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga89b9f918d53dee5e6c80060667b8d32f">H5Pget_fapl_onion</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="struct_h5_f_d__onion__fapl__info__t.html">H5FD_onion_fapl_info_t</a> *fa_out)</td></tr>
<tr class="memdesc:ga89b9f918d53dee5e6c80060667b8d32f"><td class="mdescLeft">&#160;</td><td class="mdescRight">get the onion info from the file access property list  <br /></td></tr>
<tr class="separator:ga89b9f918d53dee5e6c80060667b8d32f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga4d053c7682e54287e550113972b7dda6" id="r_ga4d053c7682e54287e550113972b7dda6"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga4d053c7682e54287e550113972b7dda6">H5Pset_fapl_onion</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, const <a class="el" href="struct_h5_f_d__onion__fapl__info__t.html">H5FD_onion_fapl_info_t</a> *fa)</td></tr>
<tr class="memdesc:ga4d053c7682e54287e550113972b7dda6"><td class="mdescLeft">&#160;</td><td class="mdescRight">set the onion info for the file access property list  <br /></td></tr>
<tr class="separator:ga4d053c7682e54287e550113972b7dda6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga13e273711e160cbd58e60c701b4f50e6" id="r_ga13e273711e160cbd58e60c701b4f50e6"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga13e273711e160cbd58e60c701b4f50e6">H5Pget_fapl_ros3</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="struct_h5_f_d__ros3__fapl__t.html">H5FD_ros3_fapl_t</a> *fa_out)</td></tr>
<tr class="memdesc:ga13e273711e160cbd58e60c701b4f50e6"><td class="mdescLeft">&#160;</td><td class="mdescRight">Queries a File Access Property List for <a class="el" href="_h5_f_dros3_8h.html#ace004a4771dcfd40a4c0adecc1974570">H5FD_ROS3</a> file driver properties.  <br /></td></tr>
<tr class="separator:ga13e273711e160cbd58e60c701b4f50e6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaad28d8c24f236590193215c5ae7a8f18" id="r_gaad28d8c24f236590193215c5ae7a8f18"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gaad28d8c24f236590193215c5ae7a8f18">H5Pset_fapl_ros3</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, const <a class="el" href="struct_h5_f_d__ros3__fapl__t.html">H5FD_ros3_fapl_t</a> *fa)</td></tr>
<tr class="memdesc:gaad28d8c24f236590193215c5ae7a8f18"><td class="mdescLeft">&#160;</td><td class="mdescRight">Modifies the specified File Access Property List to use the <a class="el" href="_h5_f_dros3_8h.html#ace004a4771dcfd40a4c0adecc1974570">H5FD_ROS3</a> driver.  <br /></td></tr>
<tr class="separator:gaad28d8c24f236590193215c5ae7a8f18"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gafa91f06270a937cbbf20457ce0a7027e" id="r_gafa91f06270a937cbbf20457ce0a7027e"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gafa91f06270a937cbbf20457ce0a7027e">H5Pget_fapl_ros3_token</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, size_t size, char *token)</td></tr>
<tr class="memdesc:gafa91f06270a937cbbf20457ce0a7027e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Queries a File Access Property List for <a class="el" href="_h5_f_dros3_8h.html#ace004a4771dcfd40a4c0adecc1974570">H5FD_ROS3</a> file driver session/security token.  <br /></td></tr>
<tr class="separator:gafa91f06270a937cbbf20457ce0a7027e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga42bc76c556951027e30c4d26394323c6" id="r_ga42bc76c556951027e30c4d26394323c6"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga42bc76c556951027e30c4d26394323c6">H5Pset_fapl_ros3_token</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, const char *token)</td></tr>
<tr class="memdesc:ga42bc76c556951027e30c4d26394323c6"><td class="mdescLeft">&#160;</td><td class="mdescRight">Modifies the specified File Access Property List to use the <a class="el" href="_h5_f_dros3_8h.html#ace004a4771dcfd40a4c0adecc1974570">H5FD_ROS3</a> driver by adding the specified session/security token.  <br /></td></tr>
<tr class="separator:ga42bc76c556951027e30c4d26394323c6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaf581bceca36ad4eef3cd45b16eabbb20" id="r_gaf581bceca36ad4eef3cd45b16eabbb20"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gaf581bceca36ad4eef3cd45b16eabbb20">H5Pset_fapl_sec2</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id)</td></tr>
<tr class="memdesc:gaf581bceca36ad4eef3cd45b16eabbb20"><td class="mdescLeft">&#160;</td><td class="mdescRight">Modifies the file access property list to use the <a class="el" href="_h5_f_dsec2_8h.html#a15ae1f958e1cf11cb239916d76b10606">H5FD_SEC2</a> driver.  <br /></td></tr>
<tr class="separator:gaf581bceca36ad4eef3cd45b16eabbb20"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga49f386ea235bb48128e54c962c499f07" id="r_ga49f386ea235bb48128e54c962c499f07"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga49f386ea235bb48128e54c962c499f07">H5Pset_fapl_splitter</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="struct_h5_f_d__splitter__vfd__config__t.html">H5FD_splitter_vfd_config_t</a> *config_ptr)</td></tr>
<tr class="memdesc:ga49f386ea235bb48128e54c962c499f07"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the file access property list to use the splitter driver.  <br /></td></tr>
<tr class="separator:ga49f386ea235bb48128e54c962c499f07"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaf6ac1c131acee33dfb878593dfefb4ac" id="r_gaf6ac1c131acee33dfb878593dfefb4ac"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gaf6ac1c131acee33dfb878593dfefb4ac">H5Pget_fapl_splitter</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="struct_h5_f_d__splitter__vfd__config__t.html">H5FD_splitter_vfd_config_t</a> *config_ptr)</td></tr>
<tr class="memdesc:gaf6ac1c131acee33dfb878593dfefb4ac"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets splitter driver properties from the the file access property list.  <br /></td></tr>
<tr class="separator:gaf6ac1c131acee33dfb878593dfefb4ac"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga77f0643117835e7f7992d573761b5052" id="r_ga77f0643117835e7f7992d573761b5052"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga77f0643117835e7f7992d573761b5052">H5Pset_fapl_stdio</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id)</td></tr>
<tr class="memdesc:ga77f0643117835e7f7992d573761b5052"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the standard I/O driver.  <br /></td></tr>
<tr class="separator:ga77f0643117835e7f7992d573761b5052"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga714340ec9cbb65cb0a819e1d775825f0" id="r_ga714340ec9cbb65cb0a819e1d775825f0"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga714340ec9cbb65cb0a819e1d775825f0">H5Pset_fapl_ioc</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="struct_h5_f_d__ioc__config__t.html">H5FD_ioc_config_t</a> *vfd_config)</td></tr>
<tr class="memdesc:ga714340ec9cbb65cb0a819e1d775825f0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Modifies the specified File Access Property List to use the <a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> driver.  <br /></td></tr>
<tr class="separator:ga714340ec9cbb65cb0a819e1d775825f0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga8482cdac1272818e4e0f86a665f8ef98" id="r_ga8482cdac1272818e4e0f86a665f8ef98"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga8482cdac1272818e4e0f86a665f8ef98">H5Pget_fapl_ioc</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="struct_h5_f_d__ioc__config__t.html">H5FD_ioc_config_t</a> *config_out)</td></tr>
<tr class="memdesc:ga8482cdac1272818e4e0f86a665f8ef98"><td class="mdescLeft">&#160;</td><td class="mdescRight">Queries a File Access Property List for <a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> file driver properties.  <br /></td></tr>
<tr class="separator:ga8482cdac1272818e4e0f86a665f8ef98"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga65dbddbba216fdd0bdf99b4feaa74db2" id="r_ga65dbddbba216fdd0bdf99b4feaa74db2"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga65dbddbba216fdd0bdf99b4feaa74db2">H5Pset_fapl_subfiling</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, const <a class="el" href="struct_h5_f_d__subfiling__config__t.html">H5FD_subfiling_config_t</a> *vfd_config)</td></tr>
<tr class="memdesc:ga65dbddbba216fdd0bdf99b4feaa74db2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Modifies the specified File Access Property List to use the <a class="el" href="_h5_f_dsubfiling_8h.html#a070ba7b51cfe718ba4da75b308066a9d">H5FD_SUBFILING</a> driver.  <br /></td></tr>
<tr class="separator:ga65dbddbba216fdd0bdf99b4feaa74db2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga2af70900a3ea50a83d65f8285730ef45" id="r_ga2af70900a3ea50a83d65f8285730ef45"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga2af70900a3ea50a83d65f8285730ef45">H5Pget_fapl_subfiling</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="struct_h5_f_d__subfiling__config__t.html">H5FD_subfiling_config_t</a> *config_out)</td></tr>
<tr class="memdesc:ga2af70900a3ea50a83d65f8285730ef45"><td class="mdescLeft">&#160;</td><td class="mdescRight">Queries a File Access Property List for <a class="el" href="_h5_f_dsubfiling_8h.html#a070ba7b51cfe718ba4da75b308066a9d">H5FD_SUBFILING</a> file driver properties.  <br /></td></tr>
<tr class="separator:ga2af70900a3ea50a83d65f8285730ef45"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga0017f78e0f3de465621fde556f679830" id="r_ga0017f78e0f3de465621fde556f679830"><td class="memItemLeft" align="right" valign="top">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga0017f78e0f3de465621fde556f679830">H5Pset_fapl_windows</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id)</td></tr>
<tr class="memdesc:ga0017f78e0f3de465621fde556f679830"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the Windows I/O driver.  <br /></td></tr>
<tr class="separator:ga0017f78e0f3de465621fde556f679830"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga6735afde382cfd746b92a1a3b0e6a2ab" id="r_ga6735afde382cfd746b92a1a3b0e6a2ab"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga6735afde382cfd746b92a1a3b0e6a2ab">H5Pget_alignment</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> *threshold, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> *alignment)</td></tr>
<tr class="memdesc:ga6735afde382cfd746b92a1a3b0e6a2ab"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the current settings for alignment properties from a file access property list.  <br /></td></tr>
<tr class="separator:ga6735afde382cfd746b92a1a3b0e6a2ab"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga9481a0b08d729ec68897d57db1827861" id="r_ga9481a0b08d729ec68897d57db1827861"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga9481a0b08d729ec68897d57db1827861">H5Pget_cache</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, int *mdc_nelmts, size_t *rdcc_nslots, size_t *rdcc_nbytes, double *rdcc_w0)</td></tr>
<tr class="memdesc:ga9481a0b08d729ec68897d57db1827861"><td class="mdescLeft">&#160;</td><td class="mdescRight">Queries the raw data chunk cache parameters.  <br /></td></tr>
<tr class="separator:ga9481a0b08d729ec68897d57db1827861"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga60ec714459a4911d28e46deb201f4f2e" id="r_ga60ec714459a4911d28e46deb201f4f2e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga60ec714459a4911d28e46deb201f4f2e">H5Pget_core_write_tracking</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *is_enabled, size_t *page_size)</td></tr>
<tr class="memdesc:ga60ec714459a4911d28e46deb201f4f2e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets information about the write tracking feature used by the core VFD.  <br /></td></tr>
<tr class="separator:ga60ec714459a4911d28e46deb201f4f2e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga43a733fe9723dd15f5ad7abda909a1b8" id="r_ga43a733fe9723dd15f5ad7abda909a1b8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga43a733fe9723dd15f5ad7abda909a1b8">H5Pget_driver</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id)</td></tr>
<tr class="memdesc:ga43a733fe9723dd15f5ad7abda909a1b8"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns low-lever driver identifier.  <br /></td></tr>
<tr class="separator:ga43a733fe9723dd15f5ad7abda909a1b8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga1b072297fed53cd8586604e45c483a56" id="r_ga1b072297fed53cd8586604e45c483a56"><td class="memItemLeft" align="right" valign="top">const void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga1b072297fed53cd8586604e45c483a56">H5Pget_driver_info</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id)</td></tr>
<tr class="memdesc:ga1b072297fed53cd8586604e45c483a56"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a pointer to file driver information.  <br /></td></tr>
<tr class="separator:ga1b072297fed53cd8586604e45c483a56"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gac0d9eb573b84ce125433e81b2a475085" id="r_gac0d9eb573b84ce125433e81b2a475085"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#af629ed855824cf5955b54529adf78ad6">ssize_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gac0d9eb573b84ce125433e81b2a475085">H5Pget_driver_config_str</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, char *config_buf, size_t buf_size)</td></tr>
<tr class="memdesc:gac0d9eb573b84ce125433e81b2a475085"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves a string representation of the configuration for the driver set on the given FAPL. The returned string can be used to configure the same driver in an identical way.  <br /></td></tr>
<tr class="separator:gac0d9eb573b84ce125433e81b2a475085"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga4c9bcfff90f48bfefa2c25e551485923" id="r_ga4c9bcfff90f48bfefa2c25e551485923"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga4c9bcfff90f48bfefa2c25e551485923">H5Pget_elink_file_cache_size</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, unsigned *efc_size)</td></tr>
<tr class="memdesc:ga4c9bcfff90f48bfefa2c25e551485923"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the size of the external link open file cache.  <br /></td></tr>
<tr class="separator:ga4c9bcfff90f48bfefa2c25e551485923"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga12789fcfeaea073c13202e6401f404a6" id="r_ga12789fcfeaea073c13202e6401f404a6"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga12789fcfeaea073c13202e6401f404a6">H5Pget_evict_on_close</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *evict_on_close)</td></tr>
<tr class="memdesc:ga12789fcfeaea073c13202e6401f404a6"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the file access property list setting that determines whether an HDF5 object will be evicted from the library's metadata cache when it is closed.  <br /></td></tr>
<tr class="separator:ga12789fcfeaea073c13202e6401f404a6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga14977eaaf6565ba871b575de3163f1b3" id="r_ga14977eaaf6565ba871b575de3163f1b3"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga14977eaaf6565ba871b575de3163f1b3">H5Pget_family_offset</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> *offset)</td></tr>
<tr class="memdesc:ga14977eaaf6565ba871b575de3163f1b3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves a data offset from the file access property list.  <br /></td></tr>
<tr class="separator:ga14977eaaf6565ba871b575de3163f1b3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga41da04bb4f823ba9f7d6c57dc8fe2878" id="r_ga41da04bb4f823ba9f7d6c57dc8fe2878"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga41da04bb4f823ba9f7d6c57dc8fe2878">H5Pget_fclose_degree</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5_fpublic_8h.html#aa85fa00d037d2b0401cf72edf9a6475f">H5F_close_degree_t</a> *degree)</td></tr>
<tr class="memdesc:ga41da04bb4f823ba9f7d6c57dc8fe2878"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the file close degree.  <br /></td></tr>
<tr class="separator:ga41da04bb4f823ba9f7d6c57dc8fe2878"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga337626cc516d5d1e3303ea6bc350e56b" id="r_ga337626cc516d5d1e3303ea6bc350e56b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga337626cc516d5d1e3303ea6bc350e56b">H5Pget_file_image</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, void **buf_ptr_ptr, size_t *buf_len_ptr)</td></tr>
<tr class="memdesc:ga337626cc516d5d1e3303ea6bc350e56b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves a copy of the file image designated as the initial content and structure of a file.  <br /></td></tr>
<tr class="separator:ga337626cc516d5d1e3303ea6bc350e56b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gae17e38082dfdbadd75c897f1e6a9096e" id="r_gae17e38082dfdbadd75c897f1e6a9096e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gae17e38082dfdbadd75c897f1e6a9096e">H5Pget_file_image_callbacks</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="struct_h5_f_d__file__image__callbacks__t.html">H5FD_file_image_callbacks_t</a> *callbacks_ptr)</td></tr>
<tr class="memdesc:gae17e38082dfdbadd75c897f1e6a9096e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves callback routines for working with file images.  <br /></td></tr>
<tr class="separator:gae17e38082dfdbadd75c897f1e6a9096e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga5de19a5a8ac23ca417aa2d49d708dc2d" id="r_ga5de19a5a8ac23ca417aa2d49d708dc2d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga5de19a5a8ac23ca417aa2d49d708dc2d">H5Pget_file_locking</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *use_file_locking, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *ignore_when_disabled)</td></tr>
<tr class="memdesc:ga5de19a5a8ac23ca417aa2d49d708dc2d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the file locking property values.  <br /></td></tr>
<tr class="separator:ga5de19a5a8ac23ca417aa2d49d708dc2d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaaa81d8427b419d80eff6e1d216d99b71" id="r_gaaa81d8427b419d80eff6e1d216d99b71"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gaaa81d8427b419d80eff6e1d216d99b71">H5Pget_gc_references</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, unsigned *gc_ref)</td></tr>
<tr class="memdesc:gaaa81d8427b419d80eff6e1d216d99b71"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns garbage collecting references setting.  <br /></td></tr>
<tr class="separator:gaaa81d8427b419d80eff6e1d216d99b71"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gad5d7e671c3a06bcee64bc25841aaf607" id="r_gad5d7e671c3a06bcee64bc25841aaf607"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gad5d7e671c3a06bcee64bc25841aaf607">H5Pget_libver_bounds</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="_h5_fpublic_8h.html#a2d963b599894f684571fbd4d5e8a96a2">H5F_libver_t</a> *low, <a class="el" href="_h5_fpublic_8h.html#a2d963b599894f684571fbd4d5e8a96a2">H5F_libver_t</a> *high)</td></tr>
<tr class="memdesc:gad5d7e671c3a06bcee64bc25841aaf607"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves library version bounds settings that indirectly control the format versions used when creating objects.  <br /></td></tr>
<tr class="separator:gad5d7e671c3a06bcee64bc25841aaf607"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga3012f7f3310c7d25ada7617896bef1ee" id="r_ga3012f7f3310c7d25ada7617896bef1ee"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga3012f7f3310c7d25ada7617896bef1ee">H5Pget_mdc_config</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="struct_h5_a_c__cache__config__t.html">H5AC_cache_config_t</a> *config_ptr)</td></tr>
<tr class="memdesc:ga3012f7f3310c7d25ada7617896bef1ee"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the current initial metadata cache configuration from the provided file access property list.  <br /></td></tr>
<tr class="separator:ga3012f7f3310c7d25ada7617896bef1ee"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaaa18d59ee9efb12626410b1638f76f00" id="r_gaaa18d59ee9efb12626410b1638f76f00"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gaaa18d59ee9efb12626410b1638f76f00">H5Pget_mdc_image_config</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="struct_h5_a_c__cache__image__config__t.html">H5AC_cache_image_config_t</a> *config_ptr)</td></tr>
<tr class="memdesc:gaaa18d59ee9efb12626410b1638f76f00"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the metadata cache image configuration values for a file access property list.  <br /></td></tr>
<tr class="separator:gaaa18d59ee9efb12626410b1638f76f00"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaa3a1ca6e294cc5074933239cc3d0e4a3" id="r_gaa3a1ca6e294cc5074933239cc3d0e4a3"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gaa3a1ca6e294cc5074933239cc3d0e4a3">H5Pget_mdc_log_options</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *is_enabled, char *location, size_t *location_size, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *start_on_access)</td></tr>
<tr class="memdesc:gaa3a1ca6e294cc5074933239cc3d0e4a3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets metadata cache logging options.  <br /></td></tr>
<tr class="separator:gaa3a1ca6e294cc5074933239cc3d0e4a3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gac17861181246af0209c0da5209305461" id="r_gac17861181246af0209c0da5209305461"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gac17861181246af0209c0da5209305461">H5Pget_meta_block_size</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> *size)</td></tr>
<tr class="memdesc:gac17861181246af0209c0da5209305461"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current metadata block size setting.  <br /></td></tr>
<tr class="separator:gac17861181246af0209c0da5209305461"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga670948d56435920f1e1c2e88b823935e" id="r_ga670948d56435920f1e1c2e88b823935e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga670948d56435920f1e1c2e88b823935e">H5Pget_metadata_read_attempts</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, unsigned *attempts)</td></tr>
<tr class="memdesc:ga670948d56435920f1e1c2e88b823935e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the number of read attempts from a file access property list.  <br /></td></tr>
<tr class="separator:ga670948d56435920f1e1c2e88b823935e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga251515e9fee4641037b4866a4f7c49fe" id="r_ga251515e9fee4641037b4866a4f7c49fe"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga251515e9fee4641037b4866a4f7c49fe">H5Pget_multi_type</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5_f_dpublic_8h.html#a02887a6f018be1a0ce7358522095578b">H5FD_mem_t</a> *type)</td></tr>
<tr class="memdesc:ga251515e9fee4641037b4866a4f7c49fe"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves type of data property for MULTI driver.  <br /></td></tr>
<tr class="separator:ga251515e9fee4641037b4866a4f7c49fe"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gadb66d434fd8d2f600213b0eec539564e" id="r_gadb66d434fd8d2f600213b0eec539564e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gadb66d434fd8d2f600213b0eec539564e">H5Pget_object_flush_cb</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="_h5_fpublic_8h.html#a07cc80d29d745646218aa8cb068cf944">H5F_flush_cb_t</a> *func, void **udata)</td></tr>
<tr class="memdesc:gadb66d434fd8d2f600213b0eec539564e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the object flush property values from the file access property list.  <br /></td></tr>
<tr class="separator:gadb66d434fd8d2f600213b0eec539564e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga0da11baf31cf424d053aa7952c933d98" id="r_ga0da11baf31cf424d053aa7952c933d98"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga0da11baf31cf424d053aa7952c933d98">H5Pget_page_buffer_size</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, size_t *buf_size, unsigned *min_meta_perc, unsigned *min_raw_perc)</td></tr>
<tr class="memdesc:ga0da11baf31cf424d053aa7952c933d98"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the maximum size for the page buffer and the minimum percentage for metadata and raw data pages.  <br /></td></tr>
<tr class="separator:ga0da11baf31cf424d053aa7952c933d98"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gac2321d0c34bb2b3cf33cd7bf02ca8e66" id="r_gac2321d0c34bb2b3cf33cd7bf02ca8e66"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gac2321d0c34bb2b3cf33cd7bf02ca8e66">H5Pget_sieve_buf_size</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, size_t *size)</td></tr>
<tr class="memdesc:gac2321d0c34bb2b3cf33cd7bf02ca8e66"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns maximum data sieve buffer size.  <br /></td></tr>
<tr class="separator:gac2321d0c34bb2b3cf33cd7bf02ca8e66"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga6896bea06d7744b56e22347f572f5470" id="r_ga6896bea06d7744b56e22347f572f5470"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga6896bea06d7744b56e22347f572f5470">H5Pget_small_data_block_size</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> *size)</td></tr>
<tr class="memdesc:ga6896bea06d7744b56e22347f572f5470"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the current small data block size setting.  <br /></td></tr>
<tr class="separator:ga6896bea06d7744b56e22347f572f5470"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga5f133bdf09ca5a32622688d1ba5cc838" id="r_ga5f133bdf09ca5a32622688d1ba5cc838"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga5f133bdf09ca5a32622688d1ba5cc838">H5Pget_vol_id</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> *vol_id)</td></tr>
<tr class="memdesc:ga5f133bdf09ca5a32622688d1ba5cc838"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the identifier of the current VOL connector.  <br /></td></tr>
<tr class="separator:ga5f133bdf09ca5a32622688d1ba5cc838"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gafc58db23c257cdcf2f0c1c3ae911ab0f" id="r_gafc58db23c257cdcf2f0c1c3ae911ab0f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gafc58db23c257cdcf2f0c1c3ae911ab0f">H5Pget_vol_info</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, void **vol_info)</td></tr>
<tr class="memdesc:gafc58db23c257cdcf2f0c1c3ae911ab0f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a copy of the VOL information for a connector.  <br /></td></tr>
<tr class="separator:gafc58db23c257cdcf2f0c1c3ae911ab0f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gab99d5af749aeb3896fd9e3ceb273677a" id="r_gab99d5af749aeb3896fd9e3ceb273677a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gab99d5af749aeb3896fd9e3ceb273677a">H5Pset_alignment</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> threshold, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> alignment)</td></tr>
<tr class="memdesc:gab99d5af749aeb3896fd9e3ceb273677a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets alignment properties of a file access property list.  <br /></td></tr>
<tr class="separator:gab99d5af749aeb3896fd9e3ceb273677a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga034a5fc54d9b05296555544d8dd9fe89" id="r_ga034a5fc54d9b05296555544d8dd9fe89"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga034a5fc54d9b05296555544d8dd9fe89">H5Pset_cache</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, int mdc_nelmts, size_t rdcc_nslots, size_t rdcc_nbytes, double rdcc_w0)</td></tr>
<tr class="memdesc:ga034a5fc54d9b05296555544d8dd9fe89"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the raw data chunk cache parameters.  <br /></td></tr>
<tr class="separator:ga034a5fc54d9b05296555544d8dd9fe89"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga237e300b96222a259896b24cf52405b0" id="r_ga237e300b96222a259896b24cf52405b0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga237e300b96222a259896b24cf52405b0">H5Pset_core_write_tracking</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> is_enabled, size_t page_size)</td></tr>
<tr class="memdesc:ga237e300b96222a259896b24cf52405b0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets write tracking information for core driver, <a class="el" href="_h5_f_dcore_8h.html#ae449696f6b86abcd1120beab21fff76a">H5FD_CORE</a>.  <br /></td></tr>
<tr class="separator:ga237e300b96222a259896b24cf52405b0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga8bcce60e23e9d2a019212c63b146502e" id="r_ga8bcce60e23e9d2a019212c63b146502e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga8bcce60e23e9d2a019212c63b146502e">H5Pset_driver</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> driver_id, const void *driver_info)</td></tr>
<tr class="memdesc:ga8bcce60e23e9d2a019212c63b146502e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a file driver.  <br /></td></tr>
<tr class="separator:ga8bcce60e23e9d2a019212c63b146502e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga156702db27ece40d21b37be5fe5e8b15" id="r_ga156702db27ece40d21b37be5fe5e8b15"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga156702db27ece40d21b37be5fe5e8b15">H5Pset_driver_by_name</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, const char *driver_name, const char *driver_config)</td></tr>
<tr class="memdesc:ga156702db27ece40d21b37be5fe5e8b15"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a file driver according to a given driver name.  <br /></td></tr>
<tr class="separator:ga156702db27ece40d21b37be5fe5e8b15"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gac4426b1d36aa8766fbe2deaf67a18c06" id="r_gac4426b1d36aa8766fbe2deaf67a18c06"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gac4426b1d36aa8766fbe2deaf67a18c06">H5Pset_driver_by_value</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="_h5_f_dpublic_8h.html#a17ff64731b589ac818c2309d0d0ce8fb">H5FD_class_value_t</a> driver_value, const char *driver_config)</td></tr>
<tr class="memdesc:gac4426b1d36aa8766fbe2deaf67a18c06"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a file driver according to a given driver value (ID).  <br /></td></tr>
<tr class="separator:gac4426b1d36aa8766fbe2deaf67a18c06"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gac21a815e9b133802df625c9f766ef325" id="r_gac21a815e9b133802df625c9f766ef325"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gac21a815e9b133802df625c9f766ef325">H5Pset_elink_file_cache_size</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, unsigned efc_size)</td></tr>
<tr class="memdesc:gac21a815e9b133802df625c9f766ef325"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the number of files that can be held open in an external link open file cache.  <br /></td></tr>
<tr class="separator:gac21a815e9b133802df625c9f766ef325"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaa44cc0e592608e12082dad9305b3c74d" id="r_gaa44cc0e592608e12082dad9305b3c74d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gaa44cc0e592608e12082dad9305b3c74d">H5Pset_evict_on_close</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> evict_on_close)</td></tr>
<tr class="memdesc:gaa44cc0e592608e12082dad9305b3c74d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Controls the library's behavior of evicting metadata associated with a closed object.  <br /></td></tr>
<tr class="separator:gaa44cc0e592608e12082dad9305b3c74d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga6b24e6daf4816bbfb89b63bab40aa982" id="r_ga6b24e6daf4816bbfb89b63bab40aa982"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga6b24e6daf4816bbfb89b63bab40aa982">H5Pset_family_offset</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> offset)</td></tr>
<tr class="memdesc:ga6b24e6daf4816bbfb89b63bab40aa982"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets offset property for low-level access to a file in a family of files.  <br /></td></tr>
<tr class="separator:ga6b24e6daf4816bbfb89b63bab40aa982"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga60e3567f677fd3ade75b909b636d7b9c" id="r_ga60e3567f677fd3ade75b909b636d7b9c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga60e3567f677fd3ade75b909b636d7b9c">H5Pset_fclose_degree</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5_fpublic_8h.html#aa85fa00d037d2b0401cf72edf9a6475f">H5F_close_degree_t</a> degree)</td></tr>
<tr class="memdesc:ga60e3567f677fd3ade75b909b636d7b9c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the file close degree.  <br /></td></tr>
<tr class="separator:ga60e3567f677fd3ade75b909b636d7b9c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga31d0299f6ad287e013b2a02a8ccc1fa2" id="r_ga31d0299f6ad287e013b2a02a8ccc1fa2"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga31d0299f6ad287e013b2a02a8ccc1fa2">H5Pset_file_image</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, void *buf_ptr, size_t buf_len)</td></tr>
<tr class="memdesc:ga31d0299f6ad287e013b2a02a8ccc1fa2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets an initial file image in a memory buffer.  <br /></td></tr>
<tr class="separator:ga31d0299f6ad287e013b2a02a8ccc1fa2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga14ea3598215afd078b964b672b40d63c" id="r_ga14ea3598215afd078b964b672b40d63c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga14ea3598215afd078b964b672b40d63c">H5Pset_file_image_callbacks</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="struct_h5_f_d__file__image__callbacks__t.html">H5FD_file_image_callbacks_t</a> *callbacks_ptr)</td></tr>
<tr class="memdesc:ga14ea3598215afd078b964b672b40d63c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the callbacks for working with file images.  <br /></td></tr>
<tr class="separator:ga14ea3598215afd078b964b672b40d63c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga503e9ff6121a67cf53f8b67054ed9391" id="r_ga503e9ff6121a67cf53f8b67054ed9391"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga503e9ff6121a67cf53f8b67054ed9391">H5Pset_file_locking</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> use_file_locking, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> ignore_when_disabled)</td></tr>
<tr class="memdesc:ga503e9ff6121a67cf53f8b67054ed9391"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the file locking property values.  <br /></td></tr>
<tr class="separator:ga503e9ff6121a67cf53f8b67054ed9391"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga61f01a12d5392ccf1321168f3c28f36f" id="r_ga61f01a12d5392ccf1321168f3c28f36f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga61f01a12d5392ccf1321168f3c28f36f">H5Pset_gc_references</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, unsigned gc_ref)</td></tr>
<tr class="memdesc:ga61f01a12d5392ccf1321168f3c28f36f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets garbage collecting references flag.  <br /></td></tr>
<tr class="separator:ga61f01a12d5392ccf1321168f3c28f36f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gacbe1724e7f70cd17ed687417a1d2a910" id="r_gacbe1724e7f70cd17ed687417a1d2a910"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gacbe1724e7f70cd17ed687417a1d2a910">H5Pset_libver_bounds</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="_h5_fpublic_8h.html#a2d963b599894f684571fbd4d5e8a96a2">H5F_libver_t</a> low, <a class="el" href="_h5_fpublic_8h.html#a2d963b599894f684571fbd4d5e8a96a2">H5F_libver_t</a> high)</td></tr>
<tr class="memdesc:gacbe1724e7f70cd17ed687417a1d2a910"><td class="mdescLeft">&#160;</td><td class="mdescRight">Controls the range of library release versions used when creating objects in a file.  <br /></td></tr>
<tr class="separator:gacbe1724e7f70cd17ed687417a1d2a910"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaf234199ad4cf9c708f45893f7f9cd4d3" id="r_gaf234199ad4cf9c708f45893f7f9cd4d3"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gaf234199ad4cf9c708f45893f7f9cd4d3">H5Pset_mdc_config</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="struct_h5_a_c__cache__config__t.html">H5AC_cache_config_t</a> *config_ptr)</td></tr>
<tr class="memdesc:gaf234199ad4cf9c708f45893f7f9cd4d3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the initial metadata cache configuration in the indicated File Access Property List to the supplied value.  <br /></td></tr>
<tr class="separator:gaf234199ad4cf9c708f45893f7f9cd4d3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga4d7206c5679d7243410058eceae59b2c" id="r_ga4d7206c5679d7243410058eceae59b2c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga4d7206c5679d7243410058eceae59b2c">H5Pset_mdc_log_options</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> is_enabled, const char *location, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> start_on_access)</td></tr>
<tr class="memdesc:ga4d7206c5679d7243410058eceae59b2c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets metadata cache logging options.  <br /></td></tr>
<tr class="separator:ga4d7206c5679d7243410058eceae59b2c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga8822e3dedc8e1414f20871a87d533cb1" id="r_ga8822e3dedc8e1414f20871a87d533cb1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga8822e3dedc8e1414f20871a87d533cb1">H5Pset_meta_block_size</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> size)</td></tr>
<tr class="memdesc:ga8822e3dedc8e1414f20871a87d533cb1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the minimum metadata block size.  <br /></td></tr>
<tr class="separator:ga8822e3dedc8e1414f20871a87d533cb1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gab827cef16ec569c87cec94a8b3f350c5" id="r_gab827cef16ec569c87cec94a8b3f350c5"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gab827cef16ec569c87cec94a8b3f350c5">H5Pset_metadata_read_attempts</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, unsigned attempts)</td></tr>
<tr class="memdesc:gab827cef16ec569c87cec94a8b3f350c5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the number of read attempts in a file access property list.  <br /></td></tr>
<tr class="separator:gab827cef16ec569c87cec94a8b3f350c5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga507341f31848c57008a3225bff3fe128" id="r_ga507341f31848c57008a3225bff3fe128"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga507341f31848c57008a3225bff3fe128">H5Pset_multi_type</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5_f_dpublic_8h.html#a02887a6f018be1a0ce7358522095578b">H5FD_mem_t</a> type)</td></tr>
<tr class="memdesc:ga507341f31848c57008a3225bff3fe128"><td class="mdescLeft">&#160;</td><td class="mdescRight">Specifies type of data to be accessed via the <code>MULTI</code> driver, enabling more direct access.  <br /></td></tr>
<tr class="separator:ga507341f31848c57008a3225bff3fe128"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gab4a4a788af5b6e88381dda0df2efbf19" id="r_gab4a4a788af5b6e88381dda0df2efbf19"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gab4a4a788af5b6e88381dda0df2efbf19">H5Pset_object_flush_cb</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="_h5_fpublic_8h.html#a07cc80d29d745646218aa8cb068cf944">H5F_flush_cb_t</a> func, void *udata)</td></tr>
<tr class="memdesc:gab4a4a788af5b6e88381dda0df2efbf19"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a callback function to invoke when an object flush occurs in the file.  <br /></td></tr>
<tr class="separator:gab4a4a788af5b6e88381dda0df2efbf19"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga24fd737955839194bf5605d5f47928ee" id="r_ga24fd737955839194bf5605d5f47928ee"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga24fd737955839194bf5605d5f47928ee">H5Pset_sieve_buf_size</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, size_t size)</td></tr>
<tr class="memdesc:ga24fd737955839194bf5605d5f47928ee"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the maximum size of the data sieve buffer.  <br /></td></tr>
<tr class="separator:ga24fd737955839194bf5605d5f47928ee"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga5a99962a79412814b79be830f14c23dd" id="r_ga5a99962a79412814b79be830f14c23dd"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga5a99962a79412814b79be830f14c23dd">H5Pset_small_data_block_size</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> size)</td></tr>
<tr class="memdesc:ga5a99962a79412814b79be830f14c23dd"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the size of a contiguous block reserved for small data.  <br /></td></tr>
<tr class="separator:ga5a99962a79412814b79be830f14c23dd"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga8aaa97e70b2544c3d95d908e1ae5b0f0" id="r_ga8aaa97e70b2544c3d95d908e1ae5b0f0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga8aaa97e70b2544c3d95d908e1ae5b0f0">H5Pset_vol</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> new_vol_id, const void *new_vol_info)</td></tr>
<tr class="memdesc:ga8aaa97e70b2544c3d95d908e1ae5b0f0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the file VOL connector for a file access property list.  <br /></td></tr>
<tr class="separator:ga8aaa97e70b2544c3d95d908e1ae5b0f0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga2ad4dc5c6e5e4271334a7b1c6ee0777d" id="r_ga2ad4dc5c6e5e4271334a7b1c6ee0777d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga2ad4dc5c6e5e4271334a7b1c6ee0777d">H5Pget_vol_cap_flags</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, uint64_t *cap_flags)</td></tr>
<tr class="memdesc:ga2ad4dc5c6e5e4271334a7b1c6ee0777d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Query the capability flags for the VOL connector that will be used with this file access property list (FAPL).  <br /></td></tr>
<tr class="separator:ga2ad4dc5c6e5e4271334a7b1c6ee0777d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga6380f9929cf42c8203813f7e72dde35c" id="r_ga6380f9929cf42c8203813f7e72dde35c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga6380f9929cf42c8203813f7e72dde35c">H5Pset_coll_metadata_write</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> is_collective)</td></tr>
<tr class="memdesc:ga6380f9929cf42c8203813f7e72dde35c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets metadata write mode to be collective or independent (default)  <br /></td></tr>
<tr class="separator:ga6380f9929cf42c8203813f7e72dde35c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gac83ab4e788a5b6e0d578f40ca67d8d00" id="r_gac83ab4e788a5b6e0d578f40ca67d8d00"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#gac83ab4e788a5b6e0d578f40ca67d8d00">H5Pget_coll_metadata_write</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *is_collective)</td></tr>
<tr class="memdesc:gac83ab4e788a5b6e0d578f40ca67d8d00"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves metadata write mode setting.  <br /></td></tr>
<tr class="separator:gac83ab4e788a5b6e0d578f40ca67d8d00"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga5554cf0775f9d7ac3b0cd844533d4486" id="r_ga5554cf0775f9d7ac3b0cd844533d4486"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga5554cf0775f9d7ac3b0cd844533d4486">H5Pget_mpi_params</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, MPI_Comm *comm, MPI_Info *info)</td></tr>
<tr class="memdesc:ga5554cf0775f9d7ac3b0cd844533d4486"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the MPI communicator and info.  <br /></td></tr>
<tr class="separator:ga5554cf0775f9d7ac3b0cd844533d4486"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga6daceb4a9e51fca7cb198f964b67baf0" id="r_ga6daceb4a9e51fca7cb198f964b67baf0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga6daceb4a9e51fca7cb198f964b67baf0">H5Pset_mpi_params</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl_id, MPI_Comm comm, MPI_Info info)</td></tr>
<tr class="memdesc:ga6daceb4a9e51fca7cb198f964b67baf0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the MPI communicator and info.  <br /></td></tr>
<tr class="separator:ga6daceb4a9e51fca7cb198f964b67baf0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga65cf9fea33d1324009efc2d5db848434" id="r_ga65cf9fea33d1324009efc2d5db848434"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga65cf9fea33d1324009efc2d5db848434">H5Pset_mdc_image_config</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, <a class="el" href="struct_h5_a_c__cache__image__config__t.html">H5AC_cache_image_config_t</a> *config_ptr)</td></tr>
<tr class="memdesc:ga65cf9fea33d1324009efc2d5db848434"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the metadata cache image option for a file access property list.  <br /></td></tr>
<tr class="separator:ga65cf9fea33d1324009efc2d5db848434"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga8008cddafa81bd1ddada23f6d9a161ca" id="r_ga8008cddafa81bd1ddada23f6d9a161ca"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="#ga8008cddafa81bd1ddada23f6d9a161ca">H5Pset_page_buffer_size</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> plist_id, size_t buf_size, unsigned min_meta_per, unsigned min_raw_per)</td></tr>
<tr class="memdesc:ga8008cddafa81bd1ddada23f6d9a161ca"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the maximum size for the page buffer and the minimum percentage for metadata and raw data pages.  <br /></td></tr>
<tr class="separator:ga8008cddafa81bd1ddada23f6d9a161ca"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<h2 class="groupheader">Function Documentation</h2>
<a id="ga6735afde382cfd746b92a1a3b0e6a2ab" name="ga6735afde382cfd746b92a1a3b0e6a2ab"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga6735afde382cfd746b92a1a3b0e6a2ab">&#9670;&#160;</a></span>H5Pget_alignment()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_alignment </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> *</td>          <td class="paramname"><span class="paramname"><em>threshold</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> *</td>          <td class="paramname"><span class="paramname"><em>alignment</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves the current settings for alignment properties from a file access property list. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">threshold</td><td>Pointer to location of return threshold value </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">alignment</td><td>Pointer to location of return alignment value</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga6735afde382cfd746b92a1a3b0e6a2ab" title="Retrieves the current settings for alignment properties from a file access property list.">H5Pget_alignment()</a> retrieves the current settings for alignment properties from a file access property list. The <code>threshold</code> and/or <code>alignment</code> pointers may be null pointers (NULL).</p>
<dl class="section since"><dt>Since</dt><dd>1.0.0 </dd></dl>

</div>
</div>
<a id="ga9481a0b08d729ec68897d57db1827861" name="ga9481a0b08d729ec68897d57db1827861"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga9481a0b08d729ec68897d57db1827861">&#9670;&#160;</a></span>H5Pget_cache()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_cache </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int *</td>          <td class="paramname"><span class="paramname"><em>mdc_nelmts</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *</td>          <td class="paramname"><span class="paramname"><em>rdcc_nslots</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *</td>          <td class="paramname"><span class="paramname"><em>rdcc_nbytes</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double *</td>          <td class="paramname"><span class="paramname"><em>rdcc_w0</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Queries the raw data chunk cache parameters. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in,out]</td><td class="paramname">mdc_nelmts</td><td><em>No longer used</em> </td></tr>
    <tr><td class="paramdir">[in,out]</td><td class="paramname">rdcc_nslots</td><td>Number of elements (objects) in the raw data chunk cache </td></tr>
    <tr><td class="paramdir">[in,out]</td><td class="paramname">rdcc_nbytes</td><td>Total size of the raw data chunk cache, in bytes </td></tr>
    <tr><td class="paramdir">[in,out]</td><td class="paramname">rdcc_w0</td><td>Preemption policy</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga9481a0b08d729ec68897d57db1827861" title="Queries the raw data chunk cache parameters.">H5Pget_cache()</a> retrieves the maximum possible number of elements in the raw data chunk cache, the maximum possible number of bytes in the raw data chunk cache, and the preemption policy value.</p>
<p>Any (or all) arguments may be null pointers, in which case the corresponding datum is not returned.</p>
<p>Note that the <code>mdc_nelmts</code> parameter is no longer used.</p>
<dl class="section version"><dt>Version</dt><dd>1.8.0 Use of the <code>mdc_nelmts</code> parameter discontinued. Metadata cache configuration is managed with <a class="el" href="#gaf234199ad4cf9c708f45893f7f9cd4d3" title="Set the initial metadata cache configuration in the indicated File Access Property List to the suppli...">H5Pset_mdc_config()</a> and <a class="el" href="#ga3012f7f3310c7d25ada7617896bef1ee" title="Get the current initial metadata cache configuration from the provided file access property list.">H5Pget_mdc_config()</a> </dd>
<dd>
1.6.0 The <code>rdcc_nbytes</code> and <code>rdcc_nslots</code> parameters changed from type int to size_t.</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.0.0 </dd></dl>

</div>
</div>
<a id="gac83ab4e788a5b6e0d578f40ca67d8d00" name="gac83ab4e788a5b6e0d578f40ca67d8d00"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gac83ab4e788a5b6e0d578f40ca67d8d00">&#9670;&#160;</a></span>H5Pget_coll_metadata_write()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_coll_metadata_write </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *</td>          <td class="paramname"><span class="paramname"><em>is_collective</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves metadata write mode setting. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">is_collective</td><td>Pointer to a boolean value indicating whether metadata writes are collective (<code>&gt;0</code>) or independent (<code>0</code>). <em>Default mode:</em> Independent (<code>0</code>) </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gac83ab4e788a5b6e0d578f40ca67d8d00" title="Retrieves metadata write mode setting.">H5Pget_coll_metadata_write()</a> retrieves the collective metadata write setting from the file access property into <code>is_collective</code>.</p>
<dl class="section see"><dt>See also</dt><dd><ul>
<li><a class="el" href="group___g_a_p_l.html#ga8792cbe7eeace1382f588ed12a92092a" title="Retrieves metadata read mode setting.">H5Pget_all_coll_metadata_ops()</a> </li>
<li><a class="el" href="#gac83ab4e788a5b6e0d578f40ca67d8d00" title="Retrieves metadata write mode setting.">H5Pget_coll_metadata_write()</a> </li>
<li><a class="el" href="group___g_a_p_l.html#ga5bc0b1fc7e1e3961bf0b441e722949eb" title="Sets metadata I/O mode for read operations to be collective or independent (default)">H5Pset_all_coll_metadata_ops()</a> </li>
<li><a class="el" href="#ga6380f9929cf42c8203813f7e72dde35c" title="Sets metadata write mode to be collective or independent (default)">H5Pset_coll_metadata_write()</a> </li>
<li><a class="el" href="maybe_metadata_reads.html">Functions with No Access Property List Parameter that May Generate Metadata Reads</a></li>
</ul>
</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.10.0 </dd></dl>

</div>
</div>
<a id="ga60ec714459a4911d28e46deb201f4f2e" name="ga60ec714459a4911d28e46deb201f4f2e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga60ec714459a4911d28e46deb201f4f2e">&#9670;&#160;</a></span>H5Pget_core_write_tracking()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_core_write_tracking </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *</td>          <td class="paramname"><span class="paramname"><em>is_enabled</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *</td>          <td class="paramname"><span class="paramname"><em>page_size</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Gets information about the write tracking feature used by the core VFD. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">is_enabled</td><td>Whether the feature is enabled </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">page_size</td><td>Size, in bytes, of write aggregation pages</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga60ec714459a4911d28e46deb201f4f2e" title="Gets information about the write tracking feature used by the core VFD.">H5Pget_core_write_tracking()</a> retrieves information about the write tracking feature used by the core VFD.</p>
<p>When a file is created or opened for writing using the core virtual file driver (VFD) with the backing store option turned on, the VFD can be configured to track changes to the file and only write out the modified bytes. To avoid a large number of small writes, the changes can be aggregated into pages of a user-specified size. The core VFD is also known as the memory VFD. The driver identifier is <a class="el" href="_h5_f_dcore_8h.html#ae449696f6b86abcd1120beab21fff76a">H5FD_CORE</a>.</p>
<dl class="section note"><dt>Note</dt><dd>This function is only for use with the core VFD and must be used after the call to <a class="el" href="#ga6e6628f620a1c58c704129cf07282849" title="Modifies the file access property list to use the H5FD_CORE driver.">H5Pset_fapl_core()</a>. It is an error to use this function with any other VFD.</dd>
<dd>
This function only applies to the backing store write operation, which typically occurs when the file is flushed or closed. This function has no relationship to the increment parameter passed to <a class="el" href="#ga6e6628f620a1c58c704129cf07282849" title="Modifies the file access property list to use the H5FD_CORE driver.">H5Pset_fapl_core()</a>.</dd>
<dd>
For optimum performance, the <code>page_size</code> parameter should be a power of two.</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.8.13 </dd></dl>

</div>
</div>
<a id="ga43a733fe9723dd15f5ad7abda909a1b8" name="ga43a733fe9723dd15f5ad7abda909a1b8"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga43a733fe9723dd15f5ad7abda909a1b8">&#9670;&#160;</a></span>H5Pget_driver()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> H5Pget_driver </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em></span></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns low-lever driver identifier. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>Property list identifier</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a low level driver identifier if successful; otherwise returns <a class="el" href="_h5_ipublic_8h.html#a01eab13dccc91afd6909d74dccb780ba">H5I_INVALID_HID</a>.</dd></dl>
<p><a class="el" href="#ga43a733fe9723dd15f5ad7abda909a1b8" title="Returns low-lever driver identifier.">H5Pget_driver()</a> returns the identifier of the low-level file driver associated with the file access property list or data transfer property list <code>plist_id</code>.</p>
<p>Valid driver identifiers distributed with HDF5 are listed and described in the following table. </p><div></div><div>   <a class="anchor" id="table_file_drivers"></a>
<table class="doxtable">
<caption>Supported file drivers</caption>
<tr>
<th>Driver Name </th><th>Driver Identifier </th><th>Description </th><th>Related API  </th></tr>
<tr>
<td>POSIX </td><td><a class="el" href="_h5_f_dsec2_8h.html#a15ae1f958e1cf11cb239916d76b10606">H5FD_SEC2</a> </td><td>This driver uses POSIX file-system functions like read and write to perform I/O to a single, permanent file on local disk with no system buffering. This driver is POSIX-compliant and is the default file driver for all systems. </td><td><a class="el" href="#gaf581bceca36ad4eef3cd45b16eabbb20" title="Modifies the file access property list to use the H5FD_SEC2 driver.">H5Pset_fapl_sec2</a>  </td></tr>
<tr>
<td>Memory </td><td><a class="el" href="_h5_f_dcore_8h.html#ae449696f6b86abcd1120beab21fff76a">H5FD_CORE</a> </td><td>With this driver, an application can work with a file in memory for faster reads and writes. File contents are kept in memory until the file is closed. At closing, the memory version of the file can be written back to disk or abandoned. </td><td><a class="el" href="#ga6e6628f620a1c58c704129cf07282849" title="Modifies the file access property list to use the H5FD_CORE driver.">H5Pset_fapl_core</a>  </td></tr>
<tr>
<td>Log </td><td><a class="el" href="_h5_f_dlog_8h.html#a027aaf28f5104c77c4f51ecd29a5f7f4">H5FD_LOG</a> </td><td>This is the <a class="el" href="_h5_f_dsec2_8h.html#a15ae1f958e1cf11cb239916d76b10606">H5FD_SEC2</a> driver with logging capabilities. </td><td><a class="el" href="#ga4e03be2fe83ed02b32266a6c81427beb" title="Sets up the logging virtual file driver (H5FD_LOG) for use.">H5Pset_fapl_log</a>  </td></tr>
<tr>
<td>Family </td><td><a class="el" href="_h5_f_dfamily_8h.html#adbf24f060712550a2a9649589a6060c6">H5FD_FAMILY</a> </td><td>With this driver, the HDF5 file's address space is partitioned into pieces and sent to separate storage files using an underlying driver of the user's choice. This driver is for systems that do not support files larger than 2 gigabytes. </td><td><a class="el" href="#ga95d19da25f196ce1ace10af00f49ab53" title="Sets the file access property list to use the family driver.">H5Pset_fapl_family</a>  </td></tr>
<tr>
<td>Multi </td><td><a class="el" href="_h5_f_dmulti_8h.html#a754e05ae5e0f2d86f64002b338c0fd5c">H5FD_MULTI</a> </td><td>With this driver, data can be stored in multiple files according to the type of the data. I/O might work better if data is stored in separate files based on the type of data. The Split driver is a special case of this driver. </td><td><a class="el" href="#ga296bd22cc1e462351f8f0a00a46baf58" title="Sets up use of the multi-file driver.">H5Pset_fapl_multi</a> / <a class="el" href="#ga502f1ad38f5143cf281df8282fef26ed" title="Emulates the old split file driver.">H5Pset_fapl_split</a>  </td></tr>
<tr>
<td>STDIO </td><td><a class="el" href="_h5_f_dstdio_8h.html#a030a03b96a9f6e46035ce64e25389085">H5FD_STDIO</a> </td><td>This driver uses functions from the standard C stdio.h to perform I/O to a single, permanent file on local disk with additional system buffering. </td><td><a class="el" href="#ga77f0643117835e7f7992d573761b5052" title="Sets the standard I/O driver.">H5Pset_fapl_stdio</a>  </td></tr>
<tr>
<td>Split </td><td><a class="el" href="_h5_f_dsplitter_8h.html#ac6c45c6a8e1cb7f5b4400d95bf651eae">H5FD_SPLITTER</a> </td><td>This file driver splits a file into two parts. One part stores metadata, and the other part stores raw data. This splitting a file into two parts is a limited case of the Multi driver. </td><td><a class="el" href="#ga49f386ea235bb48128e54c962c499f07" title="Sets the file access property list to use the splitter driver.">H5Pset_fapl_splitter</a>  </td></tr>
<tr>
<td>Parallel </td><td><a class="el" href="_h5_f_dmpio_8h.html#a7a231bc1d78744088a4e1d297284cabf">H5FD_MPIO</a> </td><td>This is the standard HDF5 file driver for parallel file systems. This driver uses the MPI standard for both communication and file I/O. </td><td><a class="el" href="#gaa0204810c1fea1667d62cf7c176416ff" title="Stores MPI IO communicator information to the file access property list.">H5Pset_fapl_mpio</a>  </td></tr>
<tr>
<td>Direct </td><td><a class="el" href="_h5_f_ddirect_8h.html#a99213f218f9ab0c51f9c679228a1e436">H5FD_DIRECT</a> </td><td>This is the <a class="el" href="_h5_f_dsec2_8h.html#a15ae1f958e1cf11cb239916d76b10606">H5FD_SEC2</a> driver except data is written to or read from the file synchronously without being cached by the system. </td><td><a class="el" href="#ga2839252e149484ef30fb214ae7b44ac7" title="Sets up use of the direct I/O driver.">H5Pset_fapl_direct</a>  </td></tr>
<tr>
<td>Mirror </td><td><a class="el" href="_h5_f_dmirror_8h.html#a05b78c6f3d122b4112632080474b3412">H5FD_MIRROR</a> </td><td>Serial I/O to file using Unix “stdio” functions. </td><td><a class="el" href="#ga8491676811ccc7ba582e30fb63da6563">H5Pset_fapl_mirror</a>  </td></tr>
<tr>
<td>HDFS </td><td><a class="el" href="_h5_f_dhdfs_8h.html#ac3868cc2fa0e9aec4bcb52830906d584">H5FD_HDFS</a> </td><td>Read-Only access to Hadoop Distributed File System (HDFS). </td><td><a class="el" href="#ga970d077c8e712a4692f43fa4f38dde14" title="Modifies the file access property list to use the H5FD_HDFS driver.">H5Pset_fapl_hdfs</a>  </td></tr>
<tr>
<td>ros3 </td><td><a class="el" href="_h5_f_dros3_8h.html#ace004a4771dcfd40a4c0adecc1974570">H5FD_ROS3</a> </td><td>Read-Only access to Amazon's S3 service. </td><td><a class="el" href="#gaad28d8c24f236590193215c5ae7a8f18" title="Modifies the specified File Access Property List to use the H5FD_ROS3 driver.">H5Pset_fapl_ros3</a>  </td></tr>
<tr>
<td>Subfiling </td><td><a class="el" href="_h5_f_dsubfiling_8h.html#a070ba7b51cfe718ba4da75b308066a9d">H5FD_SUBFILING</a> </td><td>Derived from other "stacked" VFDs such as the splitter, mirror, and family VFDs. </td><td><a class="el" href="#ga65dbddbba216fdd0bdf99b4feaa74db2" title="Modifies the specified File Access Property List to use the H5FD_SUBFILING driver.">H5Pset_fapl_subfiling</a>  </td></tr>
<tr>
<td>IOC </td><td><a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> </td><td>Relays VFD calls to one VFD, and write calls to another VFD. Maintains two files. </td><td><a class="el" href="#ga714340ec9cbb65cb0a819e1d775825f0" title="Modifies the specified File Access Property List to use the H5FD_IOC driver.">H5Pset_fapl_ioc</a>  </td></tr>
<tr>
<td>Onion </td><td><a class="el" href="_h5_f_donion_8h.html#a1d6673897b4ebd1bad9846b5695ba346">H5FD_ONION</a> </td><td>Provide in-file provenance and revision/version control. </td><td><a class="el" href="#ga4d053c7682e54287e550113972b7dda6" title="set the onion info for the file access property list">H5Pset_fapl_onion</a>  </td></tr>
<tr>
<td>Windows </td><td><a class="el" href="_h5_f_dwindows_8h.html#ab5173993ddefd103bfb3d37c2837a9a4">H5FD_WINDOWS</a> </td><td>This driver was modified in HDF5-1.8.8 to be a wrapper of the POSIX driver, <a class="el" href="_h5_f_dsec2_8h.html#a15ae1f958e1cf11cb239916d76b10606">H5FD_SEC2</a>. This change should not affect user applications. </td><td><a class="el" href="#ga0017f78e0f3de465621fde556f679830" title="Sets the Windows I/O driver.">H5Pset_fapl_windows</a>  </td></tr>
<tr>
<td>Parallel POSIX </td><td>H5FD_MPIPOSIX </td><td>This driver is no longer available </td><td></td></tr>
<tr>
<td>Stream </td><td>H5FD_STREAM </td><td>This driver is no longer available. </td><td></td></tr>
</table>
</div><div>   </div> <pre class="fragment">     This list does not include custom drivers that might be
     defined and registered by a user.

     The returned driver identifier is only valid as long as the
     file driver remains registered.
</pre><dl class="section since"><dt>Since</dt><dd>1.2.0 </dd></dl>

</div>
</div>
<a id="gac0d9eb573b84ce125433e81b2a475085" name="gac0d9eb573b84ce125433e81b2a475085"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gac0d9eb573b84ce125433e81b2a475085">&#9670;&#160;</a></span>H5Pget_driver_config_str()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#af629ed855824cf5955b54529adf78ad6">ssize_t</a> H5Pget_driver_config_str </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">char *</td>          <td class="paramname"><span class="paramname"><em>config_buf</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t</td>          <td class="paramname"><span class="paramname"><em>buf_size</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves a string representation of the configuration for the driver set on the given FAPL. The returned string can be used to configure the same driver in an identical way. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">config_buf</td><td>Driver configuration string output buffer </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">buf_size</td><td>Size of driver configuration string output buffer</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns the length of the driver configuration string on success (not including the NUL terminator). Returns negative on failure.</dd></dl>
<p><a class="el" href="#gac0d9eb573b84ce125433e81b2a475085" title="Retrieves a string representation of the configuration for the driver set on the given FAPL....">H5Pget_driver_config_str()</a> retrieves a string representation of the configuration for the driver set on the given FAPL. The returned string can be used to configure the same driver in an identical way.</p>
<p>If <code>config_buf</code> is NULL, the length of the driver configuration string is simply returned. The caller can then allocate a buffer of the appropriate size and call this routine again.</p>
<dl class="section since"><dt>Since</dt><dd>1.14.0 </dd></dl>

</div>
</div>
<a id="ga1b072297fed53cd8586604e45c483a56" name="ga1b072297fed53cd8586604e45c483a56"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga1b072297fed53cd8586604e45c483a56">&#9670;&#160;</a></span>H5Pget_driver_info()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const void * H5Pget_driver_info </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em></span></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns a pointer to file driver information. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access or data transfer property list identifier</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a pointer to a struct containing low-level driver information. Otherwise returns NULL. NULL is also returned if no driver-specific properties have been registered. No error is pushed on the stack in this case.</dd></dl>
<p><a class="el" href="#ga1b072297fed53cd8586604e45c483a56" title="Returns a pointer to file driver information.">H5Pget_driver_info()</a> returns a pointer to file driver-specific information for the low-level driver associated with the file access or data transfer property list <code>plist_id</code>.</p>
<p>The pointer returned by this function points to an “uncopied” struct. Driver-specific versions of that struct are defined for each low-level driver in the relevant source code file H5FD*.c. For example, the struct used for the MULTI driver is <code>H5FD_multi_fapl_t</code> defined in H5FDmulti.c.</p>
<p>If no driver-specific properties have been registered, <a class="el" href="#ga1b072297fed53cd8586604e45c483a56" title="Returns a pointer to file driver information.">H5Pget_driver_info()</a> returns NULL.</p>
<dl class="section note"><dt>Note</dt><dd><a class="el" href="#ga1b072297fed53cd8586604e45c483a56" title="Returns a pointer to file driver information.">H5Pget_driver_info()</a> and <a class="el" href="#ga8bcce60e23e9d2a019212c63b146502e" title="Sets a file driver.">H5Pset_driver()</a> are used only when creating a virtual file driver (VFD) in the virtual file layer (VFL).</dd></dl>
<dl class="section version"><dt>Version</dt><dd>1.10.1 Return value was changed from <em>void</em> * to <em>const</em> <em>void</em> *. </dd>
<dd>
1.8.2 Function publicized in this release; previous releases described this function only in the virtual file driver documentation.</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="ga4c9bcfff90f48bfefa2c25e551485923" name="ga4c9bcfff90f48bfefa2c25e551485923"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga4c9bcfff90f48bfefa2c25e551485923">&#9670;&#160;</a></span>H5Pget_elink_file_cache_size()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_elink_file_cache_size </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">unsigned *</td>          <td class="paramname"><span class="paramname"><em>efc_size</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves the size of the external link open file cache. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">efc_size</td><td>External link open file cache size in number of files</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga4c9bcfff90f48bfefa2c25e551485923" title="Retrieves the size of the external link open file cache.">H5Pget_elink_file_cache_size()</a> retrieves the number of files that can be held open in an external link open file cache.</p>
<dl class="section since"><dt>Since</dt><dd>1.8.7 </dd></dl>

</div>
</div>
<a id="ga12789fcfeaea073c13202e6401f404a6" name="ga12789fcfeaea073c13202e6401f404a6"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga12789fcfeaea073c13202e6401f404a6">&#9670;&#160;</a></span>H5Pget_evict_on_close()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_evict_on_close </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *</td>          <td class="paramname"><span class="paramname"><em>evict_on_close</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves the file access property list setting that determines whether an HDF5 object will be evicted from the library's metadata cache when it is closed. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">evict_on_close</td><td>Pointer to a variable that will indicate if the object will be evicted on close</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p>The library's metadata cache is fairly conservative about holding on to HDF5 object metadata (object headers, chunk index structures, etc.), which can cause the cache size to grow, resulting in memory pressure on an application or system. When enabled, the "evict on
         close" property will cause all metadata for an object to be immediately evicted from the cache as long as it is not referenced by any other open object.</p>
<p>See <a class="el" href="#gaa44cc0e592608e12082dad9305b3c74d" title="Controls the library&#39;s behavior of evicting metadata associated with a closed object.">H5Pset_evict_on_close()</a> for additional notes on behavior.</p>
<dl class="section since"><dt>Since</dt><dd>1.10.1 </dd></dl>

</div>
</div>
<a id="ga14977eaaf6565ba871b575de3163f1b3" name="ga14977eaaf6565ba871b575de3163f1b3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga14977eaaf6565ba871b575de3163f1b3">&#9670;&#160;</a></span>H5Pget_family_offset()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_family_offset </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> *</td>          <td class="paramname"><span class="paramname"><em>offset</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves a data offset from the file access property list. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">offset</td><td>Offset in bytes within the HDF5 file</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga14977eaaf6565ba871b575de3163f1b3" title="Retrieves a data offset from the file access property list.">H5Pget_family_offset()</a> retrieves the value of offset from the file access property list <code>fapl_id</code> so that the user application can retrieve a file handle for low-level access to a particular member of a family of files. The file handle is retrieved with a separate call to <a class="el" href="group___h5_f.html#gae4020a66fb8da0586e3b74c81ffccea4" title="Returns pointer to the file handle from the virtual file driver.">H5Fget_vfd_handle()</a> (or, in special circumstances, to <a class="el" href="_h5_f_ddevelop_8h.html#a9fcfb5d6708f4c3f5d319b801ac252bc">H5FDget_vfd_handle()</a>, see <a class="el" href="_v_f_l.html">HDF5 Virtual File Layer</a>).</p>
<dl class="section since"><dt>Since</dt><dd>1.6.0 </dd></dl>

</div>
</div>
<a id="gac347d401cbb28fecd78c5f15ddb4c9c1" name="gac347d401cbb28fecd78c5f15ddb4c9c1"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gac347d401cbb28fecd78c5f15ddb4c9c1">&#9670;&#160;</a></span>H5Pget_fapl_core()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fapl_core </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *</td>          <td class="paramname"><span class="paramname"><em>increment</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *</td>          <td class="paramname"><span class="paramname"><em>backing_store</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Queries core file driver properties. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">increment</td><td>Size, in bytes, of memory increments </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">backing_store</td><td>Boolean flag indicating whether to write the file contents to disk when the file is closed </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gac347d401cbb28fecd78c5f15ddb4c9c1" title="Queries core file driver properties.">H5Pget_fapl_core()</a> queries the <a class="el" href="_h5_f_dcore_8h.html#ae449696f6b86abcd1120beab21fff76a">H5FD_CORE</a> driver properties as set by <a class="el" href="#ga6e6628f620a1c58c704129cf07282849" title="Modifies the file access property list to use the H5FD_CORE driver.">H5Pset_fapl_core()</a>.</p>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="ga038e5f3952e49b6945039fc2b010ab16" name="ga038e5f3952e49b6945039fc2b010ab16"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga038e5f3952e49b6945039fc2b010ab16">&#9670;&#160;</a></span>H5Pget_fapl_direct()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fapl_direct </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *</td>          <td class="paramname"><span class="paramname"><em>boundary</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *</td>          <td class="paramname"><span class="paramname"><em>block_size</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *</td>          <td class="paramname"><span class="paramname"><em>cbuf_size</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves direct I/O driver settings. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">boundary</td><td>Required memory alignment boundary </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">block_size</td><td>File system block size </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">cbuf_size</td><td>Copy buffer size </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga038e5f3952e49b6945039fc2b010ab16" title="Retrieves direct I/O driver settings.">H5Pget_fapl_direct()</a> retrieves the required memory alignment (<code>alignment</code>), file system block size (<code>block_size</code>), and copy buffer size (<code>cbuf_size</code>) settings for the direct I/O driver, <a class="el" href="_h5_f_ddirect_8h.html#a99213f218f9ab0c51f9c679228a1e436">H5FD_DIRECT</a>, from the file access property list <code>fapl_id</code>.</p>
<p>See <a class="el" href="#ga2839252e149484ef30fb214ae7b44ac7" title="Sets up use of the direct I/O driver.">H5Pset_fapl_direct()</a> for discussion of these values, requirements, and important considerations.</p>
<dl class="section since"><dt>Since</dt><dd>1.8.0 </dd></dl>

</div>
</div>
<a id="ga0bc1a003f26bf4b53e4487b6ca117389" name="ga0bc1a003f26bf4b53e4487b6ca117389"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga0bc1a003f26bf4b53e4487b6ca117389">&#9670;&#160;</a></span>H5Pget_fapl_family()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fapl_family </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> *</td>          <td class="paramname"><span class="paramname"><em>memb_size</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> *</td>          <td class="paramname"><span class="paramname"><em>memb_fapl_id</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns file access property list information. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">memb_size</td><td>Size in bytes of each file member </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">memb_fapl_id</td><td>Identifier of file access property list for each family member </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga0bc1a003f26bf4b53e4487b6ca117389" title="Returns file access property list information.">H5Pget_fapl_family()</a> returns file access property list for use with the family driver. This information is returned through the output parameters.</p>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="gae59e7d8e0e8823e6dd6034b66418ed00" name="gae59e7d8e0e8823e6dd6034b66418ed00"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gae59e7d8e0e8823e6dd6034b66418ed00">&#9670;&#160;</a></span>H5Pget_fapl_hdfs()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fapl_hdfs </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="struct_h5_f_d__hdfs__fapl__t.html">H5FD_hdfs_fapl_t</a> *</td>          <td class="paramname"><span class="paramname"><em>fa_out</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Queries a File Access Property List for <a class="el" href="_h5_f_dhdfs_8h.html#ac3868cc2fa0e9aec4bcb52830906d584">H5FD_HDFS</a> file driver properties. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">fa_out</td><td>Pointer to <a class="el" href="_h5_f_dhdfs_8h.html#ac3868cc2fa0e9aec4bcb52830906d584">H5FD_HDFS</a> driver configuration structure </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gae59e7d8e0e8823e6dd6034b66418ed00" title="Queries a File Access Property List for H5FD_HDFS file driver properties.">H5Pget_fapl_hdfs()</a> queries the <a class="el" href="_h5_f_dhdfs_8h.html#ac3868cc2fa0e9aec4bcb52830906d584">H5FD_HDFS</a> driver properties as set by <a class="el" href="#ga970d077c8e712a4692f43fa4f38dde14" title="Modifies the file access property list to use the H5FD_HDFS driver.">H5Pset_fapl_hdfs()</a>.</p>
<dl class="section since"><dt>Since</dt><dd>1.10.6 </dd></dl>

</div>
</div>
<a id="ga8482cdac1272818e4e0f86a665f8ef98" name="ga8482cdac1272818e4e0f86a665f8ef98"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga8482cdac1272818e4e0f86a665f8ef98">&#9670;&#160;</a></span>H5Pget_fapl_ioc()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fapl_ioc </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="struct_h5_f_d__ioc__config__t.html">H5FD_ioc_config_t</a> *</td>          <td class="paramname"><span class="paramname"><em>config_out</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Queries a File Access Property List for <a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> file driver properties. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">config_out</td><td>Pointer to <a class="el" href="struct_h5_f_d__ioc__config__t.html" title="Configuration structure for H5Pset_fapl_ioc() / H5Pget_fapl_ioc()">H5FD_ioc_config_t</a> structure through which the <a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> file driver properties will be returned.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga8482cdac1272818e4e0f86a665f8ef98" title="Queries a File Access Property List for H5FD_IOC file driver properties.">H5Pget_fapl_ioc()</a> queries the specified File Access Property List for <a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> driver properties as set by <a class="el" href="#ga714340ec9cbb65cb0a819e1d775825f0" title="Modifies the specified File Access Property List to use the H5FD_IOC driver.">H5Pset_fapl_ioc()</a>. If the <a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> driver has not been set on the File Access Property List, a default configuration is returned. An HDF5 application may use this functionality to manually configure the <a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> driver by calling <a class="el" href="#ga8482cdac1272818e4e0f86a665f8ef98" title="Queries a File Access Property List for H5FD_IOC file driver properties.">H5Pget_fapl_ioc()</a> on a newly-created File Access Property List, adjusting the default values and then calling <a class="el" href="#ga714340ec9cbb65cb0a819e1d775825f0" title="Modifies the specified File Access Property List to use the H5FD_IOC driver.">H5Pset_fapl_ioc()</a> with the configured <a class="el" href="struct_h5_f_d__ioc__config__t.html" title="Configuration structure for H5Pset_fapl_ioc() / H5Pget_fapl_ioc()">H5FD_ioc_config_t</a> structure.</p>
<dl class="section since"><dt>Since</dt><dd>1.14.0 </dd></dl>

</div>
</div>
<a id="ga2c0636d9bb9c50d381afbd0d3140e593" name="ga2c0636d9bb9c50d381afbd0d3140e593"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga2c0636d9bb9c50d381afbd0d3140e593">&#9670;&#160;</a></span>H5Pget_fapl_mirror()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fapl_mirror </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="struct_h5_f_d__mirror__fapl__t.html">H5FD_mirror_fapl_t</a> *</td>          <td class="paramname"><span class="paramname"><em>fa_out</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="todo"><dt><b><a class="el" href="todo.html#_todo000014">Todo</a></b></dt><dd>Add missing documentation </dd></dl>

</div>
</div>
<a id="ga5d9e4b9f27791ccf19484a898f3fd6fa" name="ga5d9e4b9f27791ccf19484a898f3fd6fa"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga5d9e4b9f27791ccf19484a898f3fd6fa">&#9670;&#160;</a></span>H5Pget_fapl_mpio()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fapl_mpio </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">MPI_Comm *</td>          <td class="paramname"><span class="paramname"><em>comm</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">MPI_Info *</td>          <td class="paramname"><span class="paramname"><em>info</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns MPI IO communicator information. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">comm</td><td>MPI communicator </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">info</td><td>MPI info object </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p>If the file access property list is set to the <a class="el" href="_h5_f_dmpio_8h.html#a7a231bc1d78744088a4e1d297284cabf">H5FD_MPIO</a> driver, <a class="el" href="#ga5d9e4b9f27791ccf19484a898f3fd6fa" title="Returns MPI IO communicator information.">H5Pget_fapl_mpio()</a> returns duplicates of the stored MPI communicator and Info object through the <code>comm</code> and <code>info</code> pointers, if those values are non-null.</p>
<p>Since the MPI communicator and Info object are duplicates of the stored information, future modifications to the access property list will not affect them. It is the responsibility of the application to free these objects.</p>
<dl class="section version"><dt>Version</dt><dd>1.4.5 Handling of the MPI Communicator and Info object changed at this release. A duplicate of each of these is now stored in the property list instead of pointers to each. </dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="ga765b7880795a139f3b567743ac88c3c7" name="ga765b7880795a139f3b567743ac88c3c7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga765b7880795a139f3b567743ac88c3c7">&#9670;&#160;</a></span>H5Pget_fapl_multi()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fapl_multi </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5_f_dpublic_8h.html#a02887a6f018be1a0ce7358522095578b">H5FD_mem_t</a> *</td>          <td class="paramname"><span class="paramname"><em>memb_map</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> *</td>          <td class="paramname"><span class="paramname"><em>memb_fapl</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">char **</td>          <td class="paramname"><span class="paramname"><em>memb_name</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#a8c86e866f40d7167cf9a1934c72b856f">haddr_t</a> *</td>          <td class="paramname"><span class="paramname"><em>memb_addr</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *</td>          <td class="paramname"><span class="paramname"><em>relax</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns information about the multi-file access property list. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">memb_map</td><td>Maps memory usage types to other memory usage types </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">memb_fapl</td><td>Property list for each memory usage type </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">memb_name</td><td>Name generator for names of member files </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">memb_addr</td><td>The offsets within the virtual address space, from 0 (zero) to <a class="el" href="_h5public_8h.html#a49742d33813ee38ef58eca9fbeda6b86">HADDR_MAX</a>, at which each type of data storage begins </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">relax</td><td>Allows read-only access to incomplete file sets when <code>true</code> </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga765b7880795a139f3b567743ac88c3c7" title="Returns information about the multi-file access property list.">H5Pget_fapl_multi()</a> returns information about the multi-file access property list.</p>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="ga89b9f918d53dee5e6c80060667b8d32f" name="ga89b9f918d53dee5e6c80060667b8d32f"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga89b9f918d53dee5e6c80060667b8d32f">&#9670;&#160;</a></span>H5Pget_fapl_onion()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fapl_onion </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="struct_h5_f_d__onion__fapl__info__t.html">H5FD_onion_fapl_info_t</a> *</td>          <td class="paramname"><span class="paramname"><em>fa_out</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>get the onion info from the file access property list </p>
<hr  />
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">fa_out</td><td>The pointer to the structure <a class="el" href="struct_h5_f_d__onion__fapl__info__t.html">H5FD_onion_fapl_info_t</a></td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga89b9f918d53dee5e6c80060667b8d32f" title="get the onion info from the file access property list">H5Pget_fapl_onion()</a> retrieves the structure <a class="el" href="struct_h5_f_d__onion__fapl__info__t.html">H5FD_onion_fapl_info_t</a> from the file access property list that is set for the onion VFD driver.</p>
<dl class="section since"><dt>Since</dt><dd>1.14.0 </dd></dl>

</div>
</div>
<a id="ga13e273711e160cbd58e60c701b4f50e6" name="ga13e273711e160cbd58e60c701b4f50e6"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga13e273711e160cbd58e60c701b4f50e6">&#9670;&#160;</a></span>H5Pget_fapl_ros3()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fapl_ros3 </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="struct_h5_f_d__ros3__fapl__t.html">H5FD_ros3_fapl_t</a> *</td>          <td class="paramname"><span class="paramname"><em>fa_out</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Queries a File Access Property List for <a class="el" href="_h5_f_dros3_8h.html#ace004a4771dcfd40a4c0adecc1974570">H5FD_ROS3</a> file driver properties. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">fa_out</td><td>Pointer to <a class="el" href="_h5_f_dros3_8h.html#ace004a4771dcfd40a4c0adecc1974570">H5FD_ROS3</a> driver configuration structure. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value. </dd></dl>

</div>
</div>
<a id="gafa91f06270a937cbbf20457ce0a7027e" name="gafa91f06270a937cbbf20457ce0a7027e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gafa91f06270a937cbbf20457ce0a7027e">&#9670;&#160;</a></span>H5Pget_fapl_ros3_token()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fapl_ros3_token </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t</td>          <td class="paramname"><span class="paramname"><em>size</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">char *</td>          <td class="paramname"><span class="paramname"><em>token</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Queries a File Access Property List for <a class="el" href="_h5_f_dros3_8h.html#ace004a4771dcfd40a4c0adecc1974570">H5FD_ROS3</a> file driver session/security token. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">size</td><td>Size of the provided char array for storing the session/security token. </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">token</td><td>Session/security token. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.14.2 </dd></dl>

</div>
</div>
<a id="gaf6ac1c131acee33dfb878593dfefb4ac" name="gaf6ac1c131acee33dfb878593dfefb4ac"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gaf6ac1c131acee33dfb878593dfefb4ac">&#9670;&#160;</a></span>H5Pget_fapl_splitter()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fapl_splitter </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="struct_h5_f_d__splitter__vfd__config__t.html">H5FD_splitter_vfd_config_t</a> *</td>          <td class="paramname"><span class="paramname"><em>config_ptr</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Gets splitter driver properties from the the file access property list. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">config_ptr</td><td>Configuration options for the VFD </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga49f386ea235bb48128e54c962c499f07" title="Sets the file access property list to use the splitter driver.">H5Pset_fapl_splitter()</a> sets the file access property list identifier, <code>fapl_id</code>, to use the splitter driver.</p>
<p>The splitter VFD echoes file manipulation (e.g. create, truncate) and write calls to a second file.</p>
<dl class="section note"><dt>Note</dt><dd>The splitter VFD should not be confused with the split VFD, which is a simplification of the multi VFD and creates separate files for metadata and data.</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.10.7, 1.12.1 </dd></dl>

</div>
</div>
<a id="ga2af70900a3ea50a83d65f8285730ef45" name="ga2af70900a3ea50a83d65f8285730ef45"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga2af70900a3ea50a83d65f8285730ef45">&#9670;&#160;</a></span>H5Pget_fapl_subfiling()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fapl_subfiling </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="struct_h5_f_d__subfiling__config__t.html">H5FD_subfiling_config_t</a> *</td>          <td class="paramname"><span class="paramname"><em>config_out</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Queries a File Access Property List for <a class="el" href="_h5_f_dsubfiling_8h.html#a070ba7b51cfe718ba4da75b308066a9d">H5FD_SUBFILING</a> file driver properties. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">config_out</td><td>Pointer to <a class="el" href="struct_h5_f_d__subfiling__config__t.html" title="Configuration structure for H5Pset_fapl_subfiling() / H5Pget_fapl_subfiling()">H5FD_subfiling_config_t</a> structure through which the <a class="el" href="_h5_f_dsubfiling_8h.html#a070ba7b51cfe718ba4da75b308066a9d">H5FD_SUBFILING</a> file driver properties will be returned.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga2af70900a3ea50a83d65f8285730ef45" title="Queries a File Access Property List for H5FD_SUBFILING file driver properties.">H5Pget_fapl_subfiling()</a> queries the specified File Access Property List for <a class="el" href="_h5_f_dsubfiling_8h.html#a070ba7b51cfe718ba4da75b308066a9d">H5FD_SUBFILING</a> driver properties as set by <a class="el" href="#ga65dbddbba216fdd0bdf99b4feaa74db2" title="Modifies the specified File Access Property List to use the H5FD_SUBFILING driver.">H5Pset_fapl_subfiling()</a>. If the <a class="el" href="_h5_f_dsubfiling_8h.html#a070ba7b51cfe718ba4da75b308066a9d">H5FD_SUBFILING</a> driver has not been set on the File Access Property List, a default configuration is returned. An HDF5 application may use this functionality to manually configure the <a class="el" href="_h5_f_dsubfiling_8h.html#a070ba7b51cfe718ba4da75b308066a9d">H5FD_SUBFILING</a> driver by calling <a class="el" href="#ga2af70900a3ea50a83d65f8285730ef45" title="Queries a File Access Property List for H5FD_SUBFILING file driver properties.">H5Pget_fapl_subfiling()</a> on a newly-created File Access Property List, adjusting the default values and then calling <a class="el" href="#ga65dbddbba216fdd0bdf99b4feaa74db2" title="Modifies the specified File Access Property List to use the H5FD_SUBFILING driver.">H5Pset_fapl_subfiling()</a> with the configured <a class="el" href="struct_h5_f_d__subfiling__config__t.html" title="Configuration structure for H5Pset_fapl_subfiling() / H5Pget_fapl_subfiling()">H5FD_subfiling_config_t</a> structure.</p>
<dl class="section note"><dt>Note</dt><dd><a class="el" href="#ga2af70900a3ea50a83d65f8285730ef45" title="Queries a File Access Property List for H5FD_SUBFILING file driver properties.">H5Pget_fapl_subfiling()</a> returns the <a class="el" href="_h5_f_dsubfiling_8h.html#a070ba7b51cfe718ba4da75b308066a9d">H5FD_SUBFILING</a> driver properties as they were initially set for the File Access Property List using <a class="el" href="#ga65dbddbba216fdd0bdf99b4feaa74db2" title="Modifies the specified File Access Property List to use the H5FD_SUBFILING driver.">H5Pset_fapl_subfiling()</a>. Alternatively, the driver properties can be modified at runtime according to values set for the <a class="el" href="_h5_f_dsubfiling_8h.html#ae3da9be3aeeedafd84cca1371b6c5da4">H5FD_SUBFILING_STRIPE_SIZE</a>, <a class="el" href="_h5_f_dsubfiling_8h.html#a5a5883d4d3c713fdbefd27971b8a67b7">H5FD_SUBFILING_IOC_PER_NODE</a> and <a class="el" href="_h5_f_dsubfiling_8h.html#a8350a509d56b739b6cc8f4f1934d0e00">H5FD_SUBFILING_IOC_SELECTION_CRITERIA</a> environment variables. However, driver properties set through environment variables will not be reflected in what is returned by <a class="el" href="#ga2af70900a3ea50a83d65f8285730ef45" title="Queries a File Access Property List for H5FD_SUBFILING file driver properties.">H5Pget_fapl_subfiling()</a>, so an application may need to check those environment variables to get accurate values for the <a class="el" href="_h5_f_dsubfiling_8h.html#a070ba7b51cfe718ba4da75b308066a9d">H5FD_SUBFILING</a> driver properties.</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.14.0 </dd></dl>

</div>
</div>
<a id="ga41da04bb4f823ba9f7d6c57dc8fe2878" name="ga41da04bb4f823ba9f7d6c57dc8fe2878"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga41da04bb4f823ba9f7d6c57dc8fe2878">&#9670;&#160;</a></span>H5Pget_fclose_degree()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_fclose_degree </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5_fpublic_8h.html#aa85fa00d037d2b0401cf72edf9a6475f">H5F_close_degree_t</a> *</td>          <td class="paramname"><span class="paramname"><em>degree</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the file close degree. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">degree</td><td>Pointer to a location to which to return the file close degree property, the value of <code>degree</code> </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga41da04bb4f823ba9f7d6c57dc8fe2878" title="Returns the file close degree.">H5Pget_fclose_degree()</a> returns the current setting of the file close degree property <code>degree</code> in the file access property list <code>fapl_id</code>. The value of <code>degree</code> determines how aggressively <a class="el" href="group___h5_f.html#gac55cd91d80822e4f8c2a7f04ea71b124" title="Terminates access to an HDF5 file.">H5Fclose()</a> deals with objects within a file that remain open when <a class="el" href="group___h5_f.html#gac55cd91d80822e4f8c2a7f04ea71b124" title="Terminates access to an HDF5 file.">H5Fclose()</a> is called to close that file.</p>
<dl class="section since"><dt>Since</dt><dd>1.6.0 </dd></dl>

</div>
</div>
<a id="ga337626cc516d5d1e3303ea6bc350e56b" name="ga337626cc516d5d1e3303ea6bc350e56b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga337626cc516d5d1e3303ea6bc350e56b">&#9670;&#160;</a></span>H5Pget_file_image()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_file_image </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">void **</td>          <td class="paramname"><span class="paramname"><em>buf_ptr_ptr</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *</td>          <td class="paramname"><span class="paramname"><em>buf_len_ptr</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves a copy of the file image designated as the initial content and structure of a file. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in,out]</td><td class="paramname">buf_ptr_ptr</td><td>On input, <code>NULL</code> or a pointer to a pointer to a buffer that contains the file image.<br  />
 On successful return, if <code>buf_ptr_ptr</code> is not <code>NULL</code>, <code>*buf_ptr_ptr</code> will contain a pointer to a copy of the initial image provided in the last call to <a class="el" href="#ga31d0299f6ad287e013b2a02a8ccc1fa2" title="Sets an initial file image in a memory buffer.">H5Pset_file_image()</a> for the supplied <code>fapl_id</code>. If no initial image has been set, <code>*buf_ptr_ptr</code> will be <code>NULL</code>. </td></tr>
    <tr><td class="paramdir">[in,out]</td><td class="paramname">buf_len_ptr</td><td>On input, <code>NULL</code> or a pointer to a buffer specifying the required size of the buffer to hold the file image.<br  />
 On successful return, if <code>buf_len_ptr</code> was not passed in as <code>NULL</code>, <code>buf_len_ptr</code> will return the required size in bytes of the buffer to hold the initial file image in the supplied file access property list, <code>fapl_id</code>. If no initial image is set, the value of <code>*buf_len_ptr</code> will be set to 0 (zero) </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga337626cc516d5d1e3303ea6bc350e56b" title="Retrieves a copy of the file image designated as the initial content and structure of a file.">H5Pget_file_image()</a> allows an application to retrieve a copy of the file image designated for a VFD to use as the initial contents of a file.</p>
<p>If file image callbacks are defined, <a class="el" href="#ga337626cc516d5d1e3303ea6bc350e56b" title="Retrieves a copy of the file image designated as the initial content and structure of a file.">H5Pget_file_image()</a> will use them when allocating and loading the buffer to return to the application (see <a class="el" href="#ga14ea3598215afd078b964b672b40d63c" title="Sets the callbacks for working with file images.">H5Pset_file_image_callbacks()</a>). If file image callbacks are not defined, the function will use <code>malloc</code> and <code>memcpy</code>. When <code>malloc</code> and <code>memcpy</code> are used, it is the caller's responsibility to discard the returned buffer with a call to <code>free</code>.</p>
<p>It is the responsibility of the calling application to free the buffer whose address is returned in <code>buf_ptr_ptr</code>. This can be accomplished with <code>free</code> if file image callbacks have not been set (see <a class="el" href="#ga14ea3598215afd078b964b672b40d63c" title="Sets the callbacks for working with file images.">H5Pset_file_image_callbacks()</a>) or with the appropriate method if file image callbacks have been set.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="group___h5_l_t.html#ga07fcf2af194e87a3e45252544ebe4aa4" title="Opens an HDF5 file image in memory.">H5LTopen_file_image()</a>, <a class="el" href="group___h5_f.html#gadc53f4e76b1199cb5d2a8cb7fbb114ad" title="Retrieves a copy of the image of an existing, open file.">H5Fget_file_image()</a>, <a class="el" href="#ga31d0299f6ad287e013b2a02a8ccc1fa2" title="Sets an initial file image in a memory buffer.">H5Pset_file_image()</a>, <a class="el" href="#ga14ea3598215afd078b964b672b40d63c" title="Sets the callbacks for working with file images.">H5Pset_file_image_callbacks()</a>, <a class="el" href="#gae17e38082dfdbadd75c897f1e6a9096e" title="Retrieves callback routines for working with file images.">H5Pget_file_image_callbacks()</a>, <a class="el" href="struct_h5_f_d__file__image__callbacks__t.html">H5FD_file_image_callbacks_t</a>, <a class="el" href="_h5_f_dpublic_8h.html#aa95ee1806ea4db9f035cd53844c008dd">H5FD_file_image_op_t</a>, <a href="https://portal.hdfgroup.org/display/HDF5/HDF5+File+Image+Operations">HDF5 File Image Operations</a>.</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.8.9 </dd></dl>

</div>
</div>
<a id="gae17e38082dfdbadd75c897f1e6a9096e" name="gae17e38082dfdbadd75c897f1e6a9096e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gae17e38082dfdbadd75c897f1e6a9096e">&#9670;&#160;</a></span>H5Pget_file_image_callbacks()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_file_image_callbacks </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="struct_h5_f_d__file__image__callbacks__t.html">H5FD_file_image_callbacks_t</a> *</td>          <td class="paramname"><span class="paramname"><em>callbacks_ptr</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves callback routines for working with file images. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in,out]</td><td class="paramname">callbacks_ptr</td><td>Pointer to the instance of the <a class="el" href="struct_h5_f_d__file__image__callbacks__t.html">H5FD_file_image_callbacks_t</a> struct in which the callback routines are to be returned<br  />
 Struct fields must be initialized to NULL before the call is made.<br  />
 Struct field contents upon return will match those passed in in the last <a class="el" href="#ga14ea3598215afd078b964b672b40d63c" title="Sets the callbacks for working with file images.">H5Pset_file_image_callbacks()</a> call for the file access property list <code>fapl_id</code>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gae17e38082dfdbadd75c897f1e6a9096e" title="Retrieves callback routines for working with file images.">H5Pget_file_image_callbacks()</a> retrieves the callback routines set for working with file images opened with the file access property list <code>fapl_id</code>.</p>
<p>The callbacks must have been previously set with <a class="el" href="#ga14ea3598215afd078b964b672b40d63c" title="Sets the callbacks for working with file images.">H5Pset_file_image_callbacks()</a> in the file access property list.</p>
<p>Upon the successful return of <a class="el" href="#ga14ea3598215afd078b964b672b40d63c" title="Sets the callbacks for working with file images.">H5Pset_file_image_callbacks()</a>, the fields in the instance of the <a class="el" href="struct_h5_f_d__file__image__callbacks__t.html">H5FD_file_image_callbacks_t</a> struct pointed to by <code>callbacks_ptr</code> will contain the same values as were passed in the most recent <a class="el" href="#ga14ea3598215afd078b964b672b40d63c" title="Sets the callbacks for working with file images.">H5Pset_file_image_callbacks()</a> call for the file access property list <code>fapl_id</code>.</p>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="group___h5_l_t.html#ga07fcf2af194e87a3e45252544ebe4aa4" title="Opens an HDF5 file image in memory.">H5LTopen_file_image()</a>, <a class="el" href="group___h5_f.html#gadc53f4e76b1199cb5d2a8cb7fbb114ad" title="Retrieves a copy of the image of an existing, open file.">H5Fget_file_image()</a>, <a class="el" href="#ga31d0299f6ad287e013b2a02a8ccc1fa2" title="Sets an initial file image in a memory buffer.">H5Pset_file_image()</a>, <a class="el" href="#ga14ea3598215afd078b964b672b40d63c" title="Sets the callbacks for working with file images.">H5Pset_file_image_callbacks()</a>, <a class="el" href="#gae17e38082dfdbadd75c897f1e6a9096e" title="Retrieves callback routines for working with file images.">H5Pget_file_image_callbacks()</a>, <a class="el" href="struct_h5_f_d__file__image__callbacks__t.html">H5FD_file_image_callbacks_t</a>, <a class="el" href="_h5_f_dpublic_8h.html#aa95ee1806ea4db9f035cd53844c008dd">H5FD_file_image_op_t</a>, <a href="https://portal.hdfgroup.org/display/HDF5/HDF5+File+Image+Operations">HDF5 File Image Operations</a>.</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.8.9 </dd></dl>

</div>
</div>
<a id="ga5de19a5a8ac23ca417aa2d49d708dc2d" name="ga5de19a5a8ac23ca417aa2d49d708dc2d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga5de19a5a8ac23ca417aa2d49d708dc2d">&#9670;&#160;</a></span>H5Pget_file_locking()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_file_locking </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *</td>          <td class="paramname"><span class="paramname"><em>use_file_locking</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *</td>          <td class="paramname"><span class="paramname"><em>ignore_when_disabled</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves the file locking property values. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">use_file_locking</td><td>File locking flag </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">ignore_when_disabled</td><td>Ignore when disabled flag </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga5de19a5a8ac23ca417aa2d49d708dc2d" title="Retrieves the file locking property values.">H5Pget_file_locking()</a> retrieves the file locking property values for the file access property list specified by <code>fapl_id</code>.</p>
<dl class="section since"><dt>Since</dt><dd>1.10.7 </dd></dl>

</div>
</div>
<a id="gaaa81d8427b419d80eff6e1d216d99b71" name="gaaa81d8427b419d80eff6e1d216d99b71"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gaaa81d8427b419d80eff6e1d216d99b71">&#9670;&#160;</a></span>H5Pget_gc_references()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_gc_references </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">unsigned *</td>          <td class="paramname"><span class="paramname"><em>gc_ref</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns garbage collecting references setting. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">gc_ref</td><td>Flag returning the state of reference garbage collection. A returned value of 1 indicates that garbage collection is on while 0 indicates that garbage collection is off.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gaaa81d8427b419d80eff6e1d216d99b71" title="Returns garbage collecting references setting.">H5Pget_gc_references()</a> returns the current setting for the garbage collection references property from the specified file access property list. The garbage collection references property is set by <a class="el" href="#ga61f01a12d5392ccf1321168f3c28f36f" title="Sets garbage collecting references flag.">H5Pset_gc_references()</a>.</p>
<dl class="section since"><dt>Since</dt><dd>1.2.0 </dd></dl>

</div>
</div>
<a id="gad5d7e671c3a06bcee64bc25841aaf607" name="gad5d7e671c3a06bcee64bc25841aaf607"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gad5d7e671c3a06bcee64bc25841aaf607">&#9670;&#160;</a></span>H5Pget_libver_bounds()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_libver_bounds </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5_fpublic_8h.html#a2d963b599894f684571fbd4d5e8a96a2">H5F_libver_t</a> *</td>          <td class="paramname"><span class="paramname"><em>low</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5_fpublic_8h.html#a2d963b599894f684571fbd4d5e8a96a2">H5F_libver_t</a> *</td>          <td class="paramname"><span class="paramname"><em>high</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves library version bounds settings that indirectly control the format versions used when creating objects. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">low</td><td>The earliest version of the library that will be used for writing objects </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">high</td><td>The latest version of the library that will be used for writing objects</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gad5d7e671c3a06bcee64bc25841aaf607" title="Retrieves library version bounds settings that indirectly control the format versions used when creat...">H5Pget_libver_bounds()</a> retrieves the lower and upper bounds on the HDF5 library release versions that indirectly determine the object format versions used when creating objects in the file.</p>
<p>This property is retrieved from the file access property list specified by the parameter <code>fapl_id</code>.</p>
<p>The value returned in the parameters <code>low</code> and <code>high</code> is one of the enumerated values in the <a class="el" href="_h5_fpublic_8h.html#a2d963b599894f684571fbd4d5e8a96a2">H5F_libver_t</a> struct, which is defined in <a class="el" href="_h5_fpublic_8h.html">H5Fpublic.h</a>.</p>
<dl class="section version"><dt>Version</dt><dd>1.10.2 Add <a class="el" href="_h5_fpublic_8h.html#a2d963b599894f684571fbd4d5e8a96a2a434ca8def77a117013577c8cec6af0d8">H5F_LIBVER_V18</a> to the enumerated defines in <a class="el" href="_h5_fpublic_8h.html#a2d963b599894f684571fbd4d5e8a96a2">H5F_libver_t</a> </dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.8.0 </dd></dl>

</div>
</div>
<a id="ga3012f7f3310c7d25ada7617896bef1ee" name="ga3012f7f3310c7d25ada7617896bef1ee"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga3012f7f3310c7d25ada7617896bef1ee">&#9670;&#160;</a></span>H5Pget_mdc_config()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_mdc_config </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="struct_h5_a_c__cache__config__t.html">H5AC_cache_config_t</a> *</td>          <td class="paramname"><span class="paramname"><em>config_ptr</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the current initial metadata cache configuration from the provided file access property list. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in,out]</td><td class="paramname">config_ptr</td><td>Pointer to the instance of <a class="el" href="struct_h5_a_c__cache__config__t.html">H5AC_cache_config_t</a> in which the current metadata cache configuration is to be reported </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<dl class="section note"><dt>Note</dt><dd>The <code>in</code> direction applies only to the <a class="el" href="struct_h5_a_c__cache__config__t.html#aad880fc4455c253781e8968f2239d56f">H5AC_cache_config_t::version</a> field. All other fields are <code>out</code> parameters.</dd></dl>
<p>The fields of the <a class="el" href="struct_h5_a_c__cache__config__t.html">H5AC_cache_config_t</a> structure are shown below: </p><div class="fragment"><div class="line"><span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code hl_struct" href="struct_h5_a_c__cache__config__t.html">H5AC_cache_config_t</a> {</div>
<div class="line">    <span class="comment">/* general configuration fields: */</span></div>
<div class="line">    <span class="keywordtype">int</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#aad880fc4455c253781e8968f2239d56f">version</a>;</div>
<div class="line">    <a class="code hl_typedef" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#aab04b3e770d1c2decc03f6fd94b64b17">rpt_fcn_enabled</a>;</div>
<div class="line">    <a class="code hl_typedef" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a6c03d051d5efb0e64bdca5d0b354a8b1">open_trace_file</a>;</div>
<div class="line">    <a class="code hl_typedef" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#aced3486ae892a53209b7aae069a34be9">close_trace_file</a>;</div>
<div class="line">    <span class="keywordtype">char</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a92e7d20eb2b7b353961c64558ddac080">trace_file_name</a>[<a class="code hl_define" href="_h5_a_cpublic_8h.html#a717f1f3545cfc3d1b2208c96cc0c3bd3">H5AC__MAX_TRACE_FILE_NAME_LEN</a> + 1];</div>
<div class="line">    <a class="code hl_typedef" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a3d6e32c7a9bf8f65848c6840e1de8c6e">evictions_enabled</a>;</div>
<div class="line">    <a class="code hl_typedef" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a707198a337ece01a37dfec6e01275d82">set_initial_size</a>;</div>
<div class="line">    <span class="keywordtype">size_t</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a649236e7dd714855a50f122aa5caca9f">initial_size</a>;</div>
<div class="line">    <span class="keywordtype">double</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#abd805b98f873c1720f34a0ce937838fd">min_clean_fraction</a>;</div>
<div class="line">    <span class="keywordtype">size_t</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#af4728438dee601cb2554d9bf18d78a43">max_size</a>;</div>
<div class="line">    <span class="keywordtype">size_t</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#af99ca22b80e05fd5b3603806348ab647">min_size</a>;</div>
<div class="line">    <span class="keywordtype">long</span> <span class="keywordtype">int</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#ac998e51b01e0eef09d9a29c43f97e4bf">epoch_length</a>;</div>
<div class="line"> </div>
<div class="line">    <span class="comment">/* size increase control fields: */</span></div>
<div class="line">    <span class="keyword">enum</span> <a class="code hl_enumeration" href="_h5_cpublic_8h.html#a040d488146ff1ca0a82209e9af3918fa">H5C_cache_incr_mode</a> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#ae825aaf759060239e92170d20eb97d26">incr_mode</a>;</div>
<div class="line">    <span class="keywordtype">double</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a20f323fcb4747fc7228d2d74bb965586">lower_hr_threshold</a>;</div>
<div class="line">    <span class="keywordtype">double</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#ac504dff76b24ab9f15536c51aec9fbbb">increment</a>;</div>
<div class="line">    <a class="code hl_typedef" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a322f2a955e71ab7ede483e991e76f806">apply_max_increment</a>;</div>
<div class="line">    <span class="keywordtype">size_t</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#ad5a729f1d611f2780679a35b3524052c">max_increment</a>;</div>
<div class="line">    <span class="keyword">enum</span> <a class="code hl_enumeration" href="_h5_cpublic_8h.html#aaaa13ca7756d135b7df6d5a6779ee908">H5C_cache_flash_incr_mode</a> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a0e25a1dc2c695bea335df0e23ed6363c">flash_incr_mode</a>;</div>
<div class="line">    <span class="keywordtype">double</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a77b1812e0407c9122db524462a5c9633">flash_multiple</a>;</div>
<div class="line">    <span class="keywordtype">double</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a95fb1e03a77ef5c109d0c851416ced55">flash_threshold</a>;</div>
<div class="line"> </div>
<div class="line">    <span class="comment">/* size decrease control fields: */</span></div>
<div class="line">    <span class="keyword">enum</span> <a class="code hl_enumeration" href="_h5_cpublic_8h.html#a4f8534794ad9a977185a5d608c0af04f">H5C_cache_decr_mode</a> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a5df68196b281c19d8ab7da0788566aec">decr_mode</a>;</div>
<div class="line">    <span class="keywordtype">double</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a84a5ff4ac69196aa27c14f6f796db596">upper_hr_threshold</a>;</div>
<div class="line">    <span class="keywordtype">double</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a54007d3f2afb718b437f499a5c8b46d9">decrement</a>;</div>
<div class="line">    <a class="code hl_typedef" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#ac2c89a735413e4c36d6f463c4890ab42">apply_max_decrement</a>;</div>
<div class="line">    <span class="keywordtype">size_t</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a75e875a61c9da7f82482d0f6fe6e7152">max_decrement</a>;</div>
<div class="line">    <span class="keywordtype">int</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a7ac41e345300bdecd9943e855d55b71b">epochs_before_eviction</a>;</div>
<div class="line">    <a class="code hl_typedef" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a6c5cff8e8a21230cc7f21859d8d6bd22">apply_empty_reserve</a>;</div>
<div class="line">    <span class="keywordtype">double</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a9c1ae995513b55737aad09e11beff733">empty_reserve</a>;</div>
<div class="line"> </div>
<div class="line">    <span class="comment">/* parallel configuration fields: */</span></div>
<div class="line">    <span class="keywordtype">size_t</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a8e3c2a2d300b7a8f8d3705fc5e59a3c1">dirty_bytes_threshold</a>;</div>
<div class="line">    <span class="keywordtype">int</span> <a class="code hl_variable" href="struct_h5_a_c__cache__config__t.html#a83a536128dbb7785b2553c294f33d1fe">metadata_write_strategy</a>;</div>
<div class="line">} <a class="code hl_struct" href="struct_h5_a_c__cache__config__t.html">H5AC_cache_config_t</a>;</div>
</div><!-- fragment --><p> (Click on a enumerator, field, or type for more information.)</p>
<p><a class="el" href="#ga3012f7f3310c7d25ada7617896bef1ee" title="Get the current initial metadata cache configuration from the provided file access property list.">H5Pget_mdc_config()</a> gets the initial metadata cache configuration contained in a file access property list and loads it into the instance of <a class="el" href="struct_h5_a_c__cache__config__t.html">H5AC_cache_config_t</a> pointed to by the <code>config_ptr</code> parameter. This configuration is used when the file is opened.</p>
<p>Note that the version field of <code>*config_ptr</code> must be initialized; this allows the library to support earlier versions of the <a class="el" href="struct_h5_a_c__cache__config__t.html">H5AC_cache_config_t</a> structure.</p>
<p>See the overview of the metadata cache in the special topics section of the user guide for details on the configuration data returned. If you haven't read and understood that documentation, the results of this call will not make much sense.</p>
<dl class="section since"><dt>Since</dt><dd>1.8.0 </dd></dl>

</div>
</div>
<a id="gaaa18d59ee9efb12626410b1638f76f00" name="gaaa18d59ee9efb12626410b1638f76f00"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gaaa18d59ee9efb12626410b1638f76f00">&#9670;&#160;</a></span>H5Pget_mdc_image_config()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_mdc_image_config </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="struct_h5_a_c__cache__image__config__t.html">H5AC_cache_image_config_t</a> *</td>          <td class="paramname"><span class="paramname"><em>config_ptr</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves the metadata cache image configuration values for a file access property list. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">config_ptr</td><td>Pointer to metadata cache image configuration values </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gaaa18d59ee9efb12626410b1638f76f00" title="Retrieves the metadata cache image configuration values for a file access property list.">H5Pget_mdc_image_config()</a> retrieves the metadata cache image values into <code>config_ptr</code> for the file access property list specified in <code>plist_id</code>.</p>
<p><a class="el" href="struct_h5_a_c__cache__image__config__t.html">H5AC_cache_image_config_t</a> is defined as follows: </p><div class="fragment"><div class="line"> </div>
<div class="line"><span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code hl_struct" href="struct_h5_a_c__cache__image__config__t.html">H5AC_cache_image_config_t</a> {</div>
<div class="line">    <span class="keywordtype">int</span> <a class="code hl_variable" href="struct_h5_a_c__cache__image__config__t.html#aad880fc4455c253781e8968f2239d56f">version</a>;</div>
<div class="line">    <a class="code hl_typedef" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> <a class="code hl_variable" href="struct_h5_a_c__cache__image__config__t.html#ad6540e7705dd036e71421880b33ef538">generate_image</a>;</div>
<div class="line">    <a class="code hl_typedef" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> <a class="code hl_variable" href="struct_h5_a_c__cache__image__config__t.html#a4e3d7f62b6ed0d946acf335dc314e303">save_resize_status</a>;</div>
<div class="line">    <span class="keywordtype">int</span> <a class="code hl_variable" href="struct_h5_a_c__cache__image__config__t.html#aec92d40c46311615f2155573aca27ec4">entry_ageout</a>;</div>
<div class="line">} <a class="code hl_struct" href="struct_h5_a_c__cache__image__config__t.html">H5AC_cache_image_config_t</a>;</div>
<div class="line"> </div>
</div><!-- fragment --><p> (Click on a enumerator, field, or type for more information.)</p>
<dl class="section since"><dt>Since</dt><dd>1.10.1 </dd></dl>

</div>
</div>
<a id="gaa3a1ca6e294cc5074933239cc3d0e4a3" name="gaa3a1ca6e294cc5074933239cc3d0e4a3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gaa3a1ca6e294cc5074933239cc3d0e4a3">&#9670;&#160;</a></span>H5Pget_mdc_log_options()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_mdc_log_options </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *</td>          <td class="paramname"><span class="paramname"><em>is_enabled</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">char *</td>          <td class="paramname"><span class="paramname"><em>location</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *</td>          <td class="paramname"><span class="paramname"><em>location_size</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> *</td>          <td class="paramname"><span class="paramname"><em>start_on_access</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Gets metadata cache logging options. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">is_enabled</td><td>Flag whether logging is enabled </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">location</td><td>Location of log in UTF-8/ASCII (file path/name) (On Windows, this must be ASCII) </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">location_size</td><td>Size in bytes of the location string </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">start_on_access</td><td>Whether the logging begins as soon as the file is opened or created </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p>The metadata cache is a central part of the HDF5 library through which all file metadata reads and writes take place. File metadata is normally invisible to the user and is used by the library for purposes such as locating and indexing data. File metadata should not be confused with user metadata, which consists of attributes created by users and attached to HDF5 objects such as datasets via <a class="el" href="group___h5_a.html">Attributes (H5A)</a> API calls.</p>
<p>Due to the complexity of the cache, a trace/logging feature has been created that can be used by HDF5 developers for debugging and performance analysis. The functions that control this functionality will normally be of use to a very limited number of developers outside of The HDF Group. The functions have been documented to help users create logs that can be sent with bug reports.</p>
<p>Control of the log functionality is straightforward. Logging is enabled via the <a class="el" href="#ga4d7206c5679d7243410058eceae59b2c" title="Sets metadata cache logging options.">H5Pset_mdc_log_options()</a> function, which will modify the file access property list used to open or create a file. This function has a flag that determines whether logging begins at file open or starts in a paused state. Log messages can then be controlled via the <a class="el" href="group___m_d_c.html#ga378fb5863071278b47070cf205f53e67" title="Starts logging metadata cache events if logging was previously enabled.">H5Fstart_mdc_logging()</a> / <a class="el" href="group___m_d_c.html#ga78627b23010f82002b837f4d312bf234" title="Stops logging metadata cache events if logging was previously enabled and is currently ongoing.">H5Fstop_mdc_logging()</a> functions. <a class="el" href="#gaa3a1ca6e294cc5074933239cc3d0e4a3" title="Gets metadata cache logging options.">H5Pget_mdc_log_options()</a> can be used to examine a file access property list, and <a class="el" href="group___m_d_c.html#ga998ebdc7b5190cf3d0fdf2fbe71e9780" title="Gets the current metadata cache logging status.">H5Fget_mdc_logging_status()</a> will return the current state of the logging flags.</p>
<p>The log format is described in the <a href="https://bit.ly/2PG6fNv">Metadata Cache Logging</a> document.</p>
<dl class="section since"><dt>Since</dt><dd>1.10.0 </dd></dl>

</div>
</div>
<a id="gac17861181246af0209c0da5209305461" name="gac17861181246af0209c0da5209305461"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gac17861181246af0209c0da5209305461">&#9670;&#160;</a></span>H5Pget_meta_block_size()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_meta_block_size </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> *</td>          <td class="paramname"><span class="paramname"><em>size</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the current metadata block size setting. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">size</td><td>Minimum size, in bytes, of metadata block allocations</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p>Returns the current minimum size, in bytes, of new metadata block allocations. This setting is retrieved from the file access property list <code>fapl_id</code>.</p>
<p>This value is set by <a class="el" href="#ga8822e3dedc8e1414f20871a87d533cb1" title="Sets the minimum metadata block size.">H5Pset_meta_block_size()</a> and is retrieved from the file access property list <code>fapl_id</code>.</p>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="ga670948d56435920f1e1c2e88b823935e" name="ga670948d56435920f1e1c2e88b823935e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga670948d56435920f1e1c2e88b823935e">&#9670;&#160;</a></span>H5Pget_metadata_read_attempts()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_metadata_read_attempts </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">unsigned *</td>          <td class="paramname"><span class="paramname"><em>attempts</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves the number of read attempts from a file access property list. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">attempts</td><td>The number of read attempts</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga670948d56435920f1e1c2e88b823935e" title="Retrieves the number of read attempts from a file access property list.">H5Pget_metadata_read_attempts()</a> retrieves the number of read attempts that is set in the file access property list <code>plist_id</code>.</p>
<p>For a default file access property list, the value retrieved will depend on whether the user sets the number of attempts via <a class="el" href="#gab827cef16ec569c87cec94a8b3f350c5" title="Sets the number of read attempts in a file access property list.">H5Pset_metadata_read_attempts()</a>:</p>
<ul>
<li>
If the number of attempts is set to N, the value returned will be N. </li>
<li>
If the number of attempts is not set, the value returned will be the default for non-SWMR access (1). SWMR is short for single-writer/multiple-reader. </li>
</ul>
<p>For the file access property list of a specified HDF5 file, the value retrieved will depend on how the file is opened and whether the user sets the number of read attempts via <a class="el" href="#gab827cef16ec569c87cec94a8b3f350c5" title="Sets the number of read attempts in a file access property list.">H5Pset_metadata_read_attempts()</a>:</p>
<ul>
<li>
<p class="startli">For a file opened with SWMR access:</p>
<ul>
<li>
If the number of attempts is set to N, the value returned will be N. </li>
<li>
If the number of attempts is not set, the value returned will be the default for SWMR access (100). </li>
</ul>
</li>
<li>
For a file opened without SWMR access, the value retrieved will always be the default for non-SWMR access (1). The value set via <a class="el" href="#gab827cef16ec569c87cec94a8b3f350c5" title="Sets the number of read attempts in a file access property list.">H5Pset_metadata_read_attempts()</a> does not have any effect on non-SWMR access. </li>
</ul>
<dl class="section user"><dt>Failure Modes</dt><dd><p class="startdd"></p>
<p class="interdd">When the input property list is not a file access property list.</p>
<p class="interdd">When the library is unable to retrieve the number of read attempts from the file access property list.</p>
<p class="enddd"></p>
</dd></dl>
<dl class="section user"><dt>Examples</dt><dd><p class="startdd"></p>
<p class="interdd">The first example illustrates the two cases for retrieving the number of read attempts from a default file access property list.</p>
<div class="fragment"><div class="line"><span class="comment">/* Get a copy of file access property list */</span></div>
<div class="line">fapl = <a class="code hl_function" href="group___p_l_c_r.html#gaf1b11da01d4d45d788c45f8bc5f0cbfa">H5Pcreate</a>(<a class="code hl_define" href="_h5_ppublic_8h.html#a60ec2d4334addfc0eda89614598ee38e">H5P_FILE_ACCESS</a>);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Retrieve the # of read attempts from the file access property list */</span></div>
<div class="line"><a class="code hl_function" href="#ga670948d56435920f1e1c2e88b823935e">H5Pget_metadata_read_attempts</a>(fapl, &amp;attempts);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/*</span></div>
<div class="line"><span class="comment"> *  The value returned in &quot;attempts&quot; will be 1 (default for non-SWMR access).</span></div>
<div class="line"><span class="comment"> */</span></div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Set the # of read attempts to 20 */</span></div>
<div class="line"><a class="code hl_function" href="#gab827cef16ec569c87cec94a8b3f350c5">H5Pset_metadata_read_attempts</a>(fapl, 20);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Retrieve the # of read attempts from the file access property list */</span></div>
<div class="line"><a class="code hl_function" href="#ga670948d56435920f1e1c2e88b823935e">H5Pget_metadata_read_attempts</a>(fapl, &amp;attempts);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/*</span></div>
<div class="line"><span class="comment"> *  The value returned in &quot;attempts&quot; will be 20 as set.</span></div>
<div class="line"><span class="comment"> */</span></div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Close the property list */</span></div>
<div class="line"><a class="code hl_function" href="group___p_l_c_r.html#ga5dce61149211d3ef319452aa598887fb">H5Pclose</a>(fapl);</div>
<div class="ttc" id="a_h5_ppublic_8h_html_a60ec2d4334addfc0eda89614598ee38e"><div class="ttname"><a href="_h5_ppublic_8h.html#a60ec2d4334addfc0eda89614598ee38e">H5P_FILE_ACCESS</a></div><div class="ttdeci">#define H5P_FILE_ACCESS</div><div class="ttdef"><b>Definition</b> H5Ppublic.h:52</div></div>
<div class="ttc" id="agroup___f_a_p_l_html_ga670948d56435920f1e1c2e88b823935e"><div class="ttname"><a href="#ga670948d56435920f1e1c2e88b823935e">H5Pget_metadata_read_attempts</a></div><div class="ttdeci">herr_t H5Pget_metadata_read_attempts(hid_t plist_id, unsigned *attempts)</div><div class="ttdoc">Retrieves the number of read attempts from a file access property list.</div></div>
<div class="ttc" id="agroup___f_a_p_l_html_gab827cef16ec569c87cec94a8b3f350c5"><div class="ttname"><a href="#gab827cef16ec569c87cec94a8b3f350c5">H5Pset_metadata_read_attempts</a></div><div class="ttdeci">herr_t H5Pset_metadata_read_attempts(hid_t plist_id, unsigned attempts)</div><div class="ttdoc">Sets the number of read attempts in a file access property list.</div></div>
<div class="ttc" id="agroup___p_l_c_r_html_ga5dce61149211d3ef319452aa598887fb"><div class="ttname"><a href="group___p_l_c_r.html#ga5dce61149211d3ef319452aa598887fb">H5Pclose</a></div><div class="ttdeci">herr_t H5Pclose(hid_t plist_id)</div><div class="ttdoc">Terminates access to a property list.</div></div>
<div class="ttc" id="agroup___p_l_c_r_html_gaf1b11da01d4d45d788c45f8bc5f0cbfa"><div class="ttname"><a href="group___p_l_c_r.html#gaf1b11da01d4d45d788c45f8bc5f0cbfa">H5Pcreate</a></div><div class="ttdeci">hid_t H5Pcreate(hid_t cls_id)</div><div class="ttdoc">Creates a new property list as an instance of a property list class.</div></div>
</div><!-- fragment --><p class="interdd">The second example illustrates the two cases for retrieving the number of read attempts from the file access property list of a file opened with SWMR access.</p>
<div class="fragment"><div class="line"><span class="comment">/* Open the file with SWMR access and default file access property list */</span></div>
<div class="line">fid = <a class="code hl_function" href="group___h5_f.html#gaa3f4f877b9bb591f3880423ed2bf44bc">H5Fopen</a>(FILE, (<a class="code hl_define" href="_h5_fpublic_8h.html#a1c406ffa89f4acf5a332144a2683d394">H5F_ACC_RDONLY</a> | <a class="code hl_define" href="_h5_fpublic_8h.html#a22b12837bca0dba6689096a370d73402">H5F_ACC_SWMR_READ</a>), <a class="code hl_define" href="_h5_ppublic_8h.html#afa85e97bfbf9bf1c58e39263846c568f">H5P_DEFAULT</a>);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Get the file&#39;s file access property list */</span></div>
<div class="line">file_fapl = <a class="code hl_function" href="group___h5_f.html#ga359585c49f82f5199178777b39e780f4">H5Fget_access_plist</a>(fid);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Retrieve the # of read attempts from the file&#39;s file access property list */</span></div>
<div class="line"><a class="code hl_function" href="#ga670948d56435920f1e1c2e88b823935e">H5Pget_metadata_read_attempts</a>(file_fapl, &amp;attempts);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/*</span></div>
<div class="line"><span class="comment"> *  The value returned in &quot;attempts&quot; will be 100 (default for SWMR access).</span></div>
<div class="line"><span class="comment"> */</span></div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Close the property list */</span></div>
<div class="line"><a class="code hl_function" href="group___p_l_c_r.html#ga5dce61149211d3ef319452aa598887fb">H5Pclose</a>(file_fapl);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Close the file */</span></div>
<div class="line"><a class="code hl_function" href="group___h5_f.html#gac55cd91d80822e4f8c2a7f04ea71b124">H5Fclose</a>(fid);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Create a copy of file access property list */</span></div>
<div class="line">fapl = <a class="code hl_function" href="group___p_l_c_r.html#gaf1b11da01d4d45d788c45f8bc5f0cbfa">H5Pcreate</a>(<a class="code hl_define" href="_h5_ppublic_8h.html#a60ec2d4334addfc0eda89614598ee38e">H5P_FILE_ACCESS</a>);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Set the # of read attempts */</span></div>
<div class="line"><a class="code hl_function" href="#gab827cef16ec569c87cec94a8b3f350c5">H5Pset_metadata_read_attempts</a>(fapl, 20);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Open the file with SWMR access and the non-default file access property list */</span></div>
<div class="line">fid = <a class="code hl_function" href="group___h5_f.html#gaa3f4f877b9bb591f3880423ed2bf44bc">H5Fopen</a>(FILE, (<a class="code hl_define" href="_h5_fpublic_8h.html#a1c406ffa89f4acf5a332144a2683d394">H5F_ACC_RDONLY</a> | <a class="code hl_define" href="_h5_fpublic_8h.html#a22b12837bca0dba6689096a370d73402">H5F_ACC_SWMR_READ</a>), fapl);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Get the file&#39;s file access property list */</span></div>
<div class="line">file_fapl = <a class="code hl_function" href="group___h5_f.html#ga359585c49f82f5199178777b39e780f4">H5Fget_access_plist</a>(fid);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Retrieve the # of read attempts from the file&#39;s file access property list */</span></div>
<div class="line"><a class="code hl_function" href="#ga670948d56435920f1e1c2e88b823935e">H5Pget_metadata_read_attempts</a>(file_fapl, &amp;attempts);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/*</span></div>
<div class="line"><span class="comment"> *  The value returned in &quot;attempts&quot; will be 20.</span></div>
<div class="line"><span class="comment"> */</span></div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Close the property lists */</span></div>
<div class="line"><a class="code hl_function" href="group___p_l_c_r.html#ga5dce61149211d3ef319452aa598887fb">H5Pclose</a>(file_fapl);</div>
<div class="line"><a class="code hl_function" href="group___p_l_c_r.html#ga5dce61149211d3ef319452aa598887fb">H5Pclose</a>(fapl);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Close the file */</span></div>
<div class="line"><a class="code hl_function" href="group___h5_f.html#gac55cd91d80822e4f8c2a7f04ea71b124">H5Fclose</a>(fid);</div>
<div class="ttc" id="a_h5_fpublic_8h_html_a1c406ffa89f4acf5a332144a2683d394"><div class="ttname"><a href="_h5_fpublic_8h.html#a1c406ffa89f4acf5a332144a2683d394">H5F_ACC_RDONLY</a></div><div class="ttdeci">#define H5F_ACC_RDONLY</div><div class="ttdef"><b>Definition</b> H5Fpublic.h:48</div></div>
<div class="ttc" id="a_h5_fpublic_8h_html_a22b12837bca0dba6689096a370d73402"><div class="ttname"><a href="_h5_fpublic_8h.html#a22b12837bca0dba6689096a370d73402">H5F_ACC_SWMR_READ</a></div><div class="ttdeci">#define H5F_ACC_SWMR_READ</div><div class="ttdef"><b>Definition</b> H5Fpublic.h:60</div></div>
<div class="ttc" id="a_h5_ppublic_8h_html_afa85e97bfbf9bf1c58e39263846c568f"><div class="ttname"><a href="_h5_ppublic_8h.html#afa85e97bfbf9bf1c58e39263846c568f">H5P_DEFAULT</a></div><div class="ttdeci">#define H5P_DEFAULT</div><div class="ttdef"><b>Definition</b> H5Ppublic.h:102</div></div>
<div class="ttc" id="agroup___h5_f_html_ga359585c49f82f5199178777b39e780f4"><div class="ttname"><a href="group___h5_f.html#ga359585c49f82f5199178777b39e780f4">H5Fget_access_plist</a></div><div class="ttdeci">hid_t H5Fget_access_plist(hid_t file_id)</div><div class="ttdoc">Returns a file access property list identifier.</div></div>
<div class="ttc" id="agroup___h5_f_html_gaa3f4f877b9bb591f3880423ed2bf44bc"><div class="ttname"><a href="group___h5_f.html#gaa3f4f877b9bb591f3880423ed2bf44bc">H5Fopen</a></div><div class="ttdeci">hid_t H5Fopen(const char *filename, unsigned flags, hid_t fapl_id)</div><div class="ttdoc">Opens an existing HDF5 file.</div></div>
<div class="ttc" id="agroup___h5_f_html_gac55cd91d80822e4f8c2a7f04ea71b124"><div class="ttname"><a href="group___h5_f.html#gac55cd91d80822e4f8c2a7f04ea71b124">H5Fclose</a></div><div class="ttdeci">herr_t H5Fclose(hid_t file_id)</div><div class="ttdoc">Terminates access to an HDF5 file.</div></div>
</div><!-- fragment --><p class="interdd">The third example illustrates the two cases for retrieving the number of read attempts from the file access property list of a file opened with non-SWMR access.</p>
<div class="fragment"><div class="line"><span class="comment">/* Open the file with non-SWMR access and default file access property list */</span></div>
<div class="line">fid = <a class="code hl_function" href="group___h5_f.html#gaa3f4f877b9bb591f3880423ed2bf44bc">H5Fopen</a>(FILE, <a class="code hl_define" href="_h5_fpublic_8h.html#a1c406ffa89f4acf5a332144a2683d394">H5F_ACC_RDONLY</a>, <a class="code hl_define" href="_h5_ppublic_8h.html#afa85e97bfbf9bf1c58e39263846c568f">H5P_DEFAULT</a>);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Get the file&#39;s file access property list */</span></div>
<div class="line">file_fapl = <a class="code hl_function" href="group___h5_f.html#ga359585c49f82f5199178777b39e780f4">H5Fget_access_plist</a>(fid);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Retrieve the # of read attempts from the file&#39;s file access property list */</span></div>
<div class="line"><a class="code hl_function" href="#ga670948d56435920f1e1c2e88b823935e">H5Pget_metadata_read_attempts</a>(file_fapl, &amp;attempts);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/*</span></div>
<div class="line"><span class="comment"> *  The value returned in &quot;attempts&quot; will be 1 (default for non-SWMR access).</span></div>
<div class="line"><span class="comment"> */</span></div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Close the property list */</span></div>
<div class="line"><a class="code hl_function" href="group___p_l_c_r.html#ga5dce61149211d3ef319452aa598887fb">H5Pclose</a>(file_fapl);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Close the file */</span></div>
<div class="line"><a class="code hl_function" href="group___h5_f.html#gac55cd91d80822e4f8c2a7f04ea71b124">H5Fclose</a>(fid);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Create a copy of file access property list */</span></div>
<div class="line">fapl = <a class="code hl_function" href="group___p_l_c_r.html#gaf1b11da01d4d45d788c45f8bc5f0cbfa">H5Pcreate</a>(<a class="code hl_define" href="_h5_ppublic_8h.html#a60ec2d4334addfc0eda89614598ee38e">H5P_FILE_ACCESS</a>);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Set the # of read attempts */</span></div>
<div class="line"><a class="code hl_function" href="#gab827cef16ec569c87cec94a8b3f350c5">H5Pset_metadata_read_attempts</a>(fapl, 20);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Open the file with non-SWMR access and the non-default file access property list */</span></div>
<div class="line">fid = <a class="code hl_function" href="group___h5_f.html#gaa3f4f877b9bb591f3880423ed2bf44bc">H5Fopen</a>(FILE, <a class="code hl_define" href="_h5_fpublic_8h.html#a1c406ffa89f4acf5a332144a2683d394">H5F_ACC_RDONLY</a>, fapl);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Get the file&#39;s file access property list */</span></div>
<div class="line">file_fapl = <a class="code hl_function" href="group___h5_f.html#ga359585c49f82f5199178777b39e780f4">H5Fget_access_plist</a>(fid);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Retrieve the # of read attempts from the file&#39;s file access property list */</span></div>
<div class="line"><a class="code hl_function" href="#ga670948d56435920f1e1c2e88b823935e">H5Pget_metadata_read_attempts</a>(file_fapl, &amp;attempts);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/*</span></div>
<div class="line"><span class="comment"> *  The value returned in &quot;attempts&quot; will be 1 (default for non-SWMR access).</span></div>
<div class="line"><span class="comment"> */</span></div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Close the property lists */</span></div>
<div class="line"><a class="code hl_function" href="group___p_l_c_r.html#ga5dce61149211d3ef319452aa598887fb">H5Pclose</a>(file_fapl);</div>
<div class="line"><a class="code hl_function" href="group___p_l_c_r.html#ga5dce61149211d3ef319452aa598887fb">H5Pclose</a>(fapl);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Close the file */</span></div>
<div class="line"><a class="code hl_function" href="group___h5_f.html#gac55cd91d80822e4f8c2a7f04ea71b124">H5Fclose</a>(fid);</div>
</div><!-- fragment --><p class="enddd"></p>
</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.10.0 </dd></dl>

</div>
</div>
<a id="ga5554cf0775f9d7ac3b0cd844533d4486" name="ga5554cf0775f9d7ac3b0cd844533d4486"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga5554cf0775f9d7ac3b0cd844533d4486">&#9670;&#160;</a></span>H5Pget_mpi_params()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_mpi_params </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">MPI_Comm *</td>          <td class="paramname"><span class="paramname"><em>comm</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">MPI_Info *</td>          <td class="paramname"><span class="paramname"><em>info</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the MPI communicator and info. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">comm</td><td>MPI communicator </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">info</td><td>MPI info object </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga5554cf0775f9d7ac3b0cd844533d4486" title="Get the MPI communicator and info.">H5Pget_mpi_params()</a> gets the MPI communicator and info stored in the file access property list <code>fapl_id</code>.</p>
<dl class="section since"><dt>Since</dt><dd>1.12.0 </dd></dl>

</div>
</div>
<a id="ga251515e9fee4641037b4866a4f7c49fe" name="ga251515e9fee4641037b4866a4f7c49fe"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga251515e9fee4641037b4866a4f7c49fe">&#9670;&#160;</a></span>H5Pget_multi_type()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_multi_type </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5_f_dpublic_8h.html#a02887a6f018be1a0ce7358522095578b">H5FD_mem_t</a> *</td>          <td class="paramname"><span class="paramname"><em>type</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves type of data property for MULTI driver. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list or data transfer property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">type</td><td>Type of data</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga251515e9fee4641037b4866a4f7c49fe" title="Retrieves type of data property for MULTI driver.">H5Pget_multi_type()</a> retrieves the type of data setting from the file access or data transfer property list <code>fapl_id</code>. This enables a user application to specify the type of data the application wishes to access so that the application can retrieve a file handle for low-level access to the particular member of a set of MULTI files in which that type of data is stored. The file handle is retrieved with a separate call to <a class="el" href="group___h5_f.html#gae4020a66fb8da0586e3b74c81ffccea4" title="Returns pointer to the file handle from the virtual file driver.">H5Fget_vfd_handle()</a> (or, in special circumstances, to <a class="el" href="_h5_f_ddevelop_8h.html#a9fcfb5d6708f4c3f5d319b801ac252bc">H5FDget_vfd_handle()</a>; see the Virtual File Layer documentation for more information.</p>
<p>The type of data returned in <code>type</code> will be one of those listed in the discussion of the <code>type</code> parameter in the description of the function <a class="el" href="#ga507341f31848c57008a3225bff3fe128" title="Specifies type of data to be accessed via the MULTI driver, enabling more direct access.">H5Pset_multi_type()</a>.</p>
<p>Use of this function is only appropriate for an HDF5 file written as a set of files with the MULTI file driver.</p>
<dl class="section since"><dt>Since</dt><dd>1.6.0 </dd></dl>

</div>
</div>
<a id="gadb66d434fd8d2f600213b0eec539564e" name="gadb66d434fd8d2f600213b0eec539564e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gadb66d434fd8d2f600213b0eec539564e">&#9670;&#160;</a></span>H5Pget_object_flush_cb()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_object_flush_cb </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5_fpublic_8h.html#a07cc80d29d745646218aa8cb068cf944">H5F_flush_cb_t</a> *</td>          <td class="paramname"><span class="paramname"><em>func</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">void **</td>          <td class="paramname"><span class="paramname"><em>udata</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves the object flush property values from the file access property list. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">func</td><td>The user-defined callback function </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">udata</td><td>The user-defined input data for the callback function</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gadb66d434fd8d2f600213b0eec539564e" title="Retrieves the object flush property values from the file access property list.">H5Pget_object_flush_cb()</a> gets the user-defined callback function that is set in the file access property list <code>fapl_id</code> and stored in the parameter <code>func</code>. The callback is invoked whenever an object flush occurs in the file. This routine also obtains the user-defined input data that is passed along to the callback function in the parameter <code>udata</code>.</p>
<dl class="section user"><dt>Example</dt><dd><p class="startdd">The example below illustrates the usage of this routine to obtain the object flush property values.</p>
<div class="fragment"><div class="line"><a class="code hl_typedef" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a>               fapl_id;</div>
<div class="line"><span class="keywordtype">unsigned</span>            counter;</div>
<div class="line">H5F_object_flush_t *ret_cb;</div>
<div class="line"><span class="keywordtype">unsigned</span>           *ret_counter;</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Create a copy of the file access property list */</span></div>
<div class="line">fapl_id = <a class="code hl_function" href="group___p_l_c_r.html#gaf1b11da01d4d45d788c45f8bc5f0cbfa">H5Pcreate</a>(<a class="code hl_define" href="_h5_ppublic_8h.html#a60ec2d4334addfc0eda89614598ee38e">H5P_FILE_ACCESS</a>);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Set up the object flush property values */</span></div>
<div class="line"><span class="comment">/* flush_cb: callback function to invoke when an object flushes (see below) */</span></div>
<div class="line"><span class="comment">/* counter: user data to pass along to the callback function */</span></div>
<div class="line"><a class="code hl_function" href="#gab4a4a788af5b6e88381dda0df2efbf19">H5Pset_object_flush_cb</a>(fapl_id, flush_cb, &amp;counter);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Open the file */</span></div>
<div class="line">file_id = <a class="code hl_function" href="group___h5_f.html#gaa3f4f877b9bb591f3880423ed2bf44bc">H5Fopen</a>(FILE, <a class="code hl_define" href="_h5_fpublic_8h.html#a402673dec5c537b27a49a9a8bd6140b4">H5F_ACC_RDWR</a>, <a class="code hl_define" href="_h5_ppublic_8h.html#afa85e97bfbf9bf1c58e39263846c568f">H5P_DEFAULT</a>);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Get the file access property list for the file */</span></div>
<div class="line">fapl = <a class="code hl_function" href="group___h5_f.html#ga359585c49f82f5199178777b39e780f4">H5Fget_access_plist</a>(file_id);</div>
<div class="line"> </div>
<div class="line"><span class="comment">/* Retrieve the object flush property values for the file */</span></div>
<div class="line"><a class="code hl_function" href="#gadb66d434fd8d2f600213b0eec539564e">H5Pget_object_flush_cb</a>(fapl, &amp;ret_cb, &amp;ret_counter);</div>
<div class="line"><span class="comment">/* ret_cb will point to flush_cb() */</span></div>
<div class="line"><span class="comment">/* ret_counter will point to counter */</span></div>
<div class="line"> </div>
<div class="line"><span class="comment">/*</span></div>
<div class="line"><span class="comment">.</span></div>
<div class="line"><span class="comment">.</span></div>
<div class="line"><span class="comment">.</span></div>
<div class="line"><span class="comment">.</span></div>
<div class="line"><span class="comment">.</span></div>
<div class="line"><span class="comment">.</span></div>
<div class="line"><span class="comment">*/</span></div>
<div class="line"> </div>
<div class="line"><span class="comment">/* The callback function for the object flush property */</span></div>
<div class="line"><span class="keyword">static</span> <a class="code hl_typedef" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a></div>
<div class="line">flush_cb(<a class="code hl_typedef" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> obj_id, <span class="keywordtype">void</span> *_udata)</div>
<div class="line">{</div>
<div class="line">    <span class="keywordtype">unsigned</span> *flush_ct = (<span class="keywordtype">unsigned</span> *)_udata;</div>
<div class="line">    ++(*flush_ct);</div>
<div class="line">    <span class="keywordflow">return</span> 0;</div>
<div class="line">}</div>
<div class="ttc" id="a_h5_fpublic_8h_html_a402673dec5c537b27a49a9a8bd6140b4"><div class="ttname"><a href="_h5_fpublic_8h.html#a402673dec5c537b27a49a9a8bd6140b4">H5F_ACC_RDWR</a></div><div class="ttdeci">#define H5F_ACC_RDWR</div><div class="ttdef"><b>Definition</b> H5Fpublic.h:49</div></div>
<div class="ttc" id="a_h5_ipublic_8h_html_a0045db7ff9c22ad35db6ae91662e1943"><div class="ttname"><a href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></div><div class="ttdeci">int64_t hid_t</div><div class="ttdef"><b>Definition</b> H5Ipublic.h:60</div></div>
<div class="ttc" id="a_h5public_8h_html_a3b079ecf932a5c599499cf7e298af160"><div class="ttname"><a href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a></div><div class="ttdeci">int herr_t</div><div class="ttdef"><b>Definition</b> H5public.h:235</div></div>
<div class="ttc" id="agroup___f_a_p_l_html_gab4a4a788af5b6e88381dda0df2efbf19"><div class="ttname"><a href="#gab4a4a788af5b6e88381dda0df2efbf19">H5Pset_object_flush_cb</a></div><div class="ttdeci">herr_t H5Pset_object_flush_cb(hid_t plist_id, H5F_flush_cb_t func, void *udata)</div><div class="ttdoc">Sets a callback function to invoke when an object flush occurs in the file.</div></div>
<div class="ttc" id="agroup___f_a_p_l_html_gadb66d434fd8d2f600213b0eec539564e"><div class="ttname"><a href="#gadb66d434fd8d2f600213b0eec539564e">H5Pget_object_flush_cb</a></div><div class="ttdeci">herr_t H5Pget_object_flush_cb(hid_t plist_id, H5F_flush_cb_t *func, void **udata)</div><div class="ttdoc">Retrieves the object flush property values from the file access property list.</div></div>
</div><!-- fragment --> </dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.10.0 </dd></dl>

</div>
</div>
<a id="ga0da11baf31cf424d053aa7952c933d98" name="ga0da11baf31cf424d053aa7952c933d98"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga0da11baf31cf424d053aa7952c933d98">&#9670;&#160;</a></span>H5Pget_page_buffer_size()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_page_buffer_size </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *</td>          <td class="paramname"><span class="paramname"><em>buf_size</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">unsigned *</td>          <td class="paramname"><span class="paramname"><em>min_meta_perc</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">unsigned *</td>          <td class="paramname"><span class="paramname"><em>min_raw_perc</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves the maximum size for the page buffer and the minimum percentage for metadata and raw data pages. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">buf_size</td><td>Maximum size, in bytes, of the page buffer </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">min_meta_perc</td><td>Minimum metadata percentage to keep in the page buffer before allowing pages containing metadata to be evicted</td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">min_raw_perc</td><td>Minimum raw data percentage to keep in the page buffer before allowing pages containing raw data to be evicted</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga0da11baf31cf424d053aa7952c933d98" title="Retrieves the maximum size for the page buffer and the minimum percentage for metadata and raw data p...">H5Pget_page_buffer_size()</a> retrieves <code>buf_size</code>, the maximum size in bytes of the page buffer, <code>min_meta_perc</code>, the minimum metadata percentage, and <code>min_raw_perc</code>, the minimum raw data percentage.</p>
<dl class="section since"><dt>Since</dt><dd>1.10.1 </dd></dl>

</div>
</div>
<a id="gac2321d0c34bb2b3cf33cd7bf02ca8e66" name="gac2321d0c34bb2b3cf33cd7bf02ca8e66"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gac2321d0c34bb2b3cf33cd7bf02ca8e66">&#9670;&#160;</a></span>H5Pget_sieve_buf_size()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_sieve_buf_size </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *</td>          <td class="paramname"><span class="paramname"><em>size</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns maximum data sieve buffer size. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">size</td><td>Maximum size, in bytes, of data sieve buffer</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gac2321d0c34bb2b3cf33cd7bf02ca8e66" title="Returns maximum data sieve buffer size.">H5Pget_sieve_buf_size()</a> retrieves, size, the current maximum size of the data sieve buffer.</p>
<p>This value is set by <a class="el" href="#ga24fd737955839194bf5605d5f47928ee" title="Sets the maximum size of the data sieve buffer.">H5Pset_sieve_buf_size()</a> and is retrieved from the file access property list fapl_id.</p>
<dl class="section version"><dt>Version</dt><dd>1.6.0 The <code>size</code> parameter has changed from type <code>hsize_t</code> to <code>size_t</code> </dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="ga6896bea06d7744b56e22347f572f5470" name="ga6896bea06d7744b56e22347f572f5470"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga6896bea06d7744b56e22347f572f5470">&#9670;&#160;</a></span>H5Pget_small_data_block_size()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_small_data_block_size </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> *</td>          <td class="paramname"><span class="paramname"><em>size</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieves the current small data block size setting. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">size</td><td>Maximum size, in bytes, of the small data block</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga6896bea06d7744b56e22347f572f5470" title="Retrieves the current small data block size setting.">H5Pget_small_data_block_size()</a> retrieves the current setting for the size of the small data block.</p>
<p>If the returned value is zero (0), the small data block mechanism has been disabled for the file.</p>
<dl class="section since"><dt>Since</dt><dd>1.4.4 </dd></dl>

</div>
</div>
<a id="ga2ad4dc5c6e5e4271334a7b1c6ee0777d" name="ga2ad4dc5c6e5e4271334a7b1c6ee0777d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga2ad4dc5c6e5e4271334a7b1c6ee0777d">&#9670;&#160;</a></span>H5Pget_vol_cap_flags()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_vol_cap_flags </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">uint64_t *</td>          <td class="paramname"><span class="paramname"><em>cap_flags</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Query the capability flags for the VOL connector that will be used with this file access property list (FAPL). </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">cap_flags</td><td>Flags that indicate the VOL connector capabilities</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga2ad4dc5c6e5e4271334a7b1c6ee0777d" title="Query the capability flags for the VOL connector that will be used with this file access property lis...">H5Pget_vol_cap_flags()</a> queries the current VOL connector information for a FAPL to retrieve the capability flags for the VOL connector stack, as will be used by a file open or create operation that uses this FAPL.</p>
<dl class="section note"><dt>Note</dt><dd>This routine supports the use of the HDF5_VOL_CONNECTOR environment variable to override the VOL connector set programmatically for the FAPL (with H5Pset_vol).</dd>
<dd>
The H5VL_CAP_FLAG_ASYNC flag can be checked to see if asynchronous operations are supported by the VOL connector stack.</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.14.0 </dd></dl>

</div>
</div>
<a id="ga5f133bdf09ca5a32622688d1ba5cc838" name="ga5f133bdf09ca5a32622688d1ba5cc838"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga5f133bdf09ca5a32622688d1ba5cc838">&#9670;&#160;</a></span>H5Pget_vol_id()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_vol_id </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> *</td>          <td class="paramname"><span class="paramname"><em>vol_id</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the identifier of the current VOL connector. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">vol_id</td><td>Current VOL connector identifier</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga5f133bdf09ca5a32622688d1ba5cc838" title="Returns the identifier of the current VOL connector.">H5Pget_vol_id()</a> returns the VOL connector identifier <code>vol_id</code> for the file access property list <code>plist_id</code>. This identifier should be closed with <a class="el" href="group___h5_v_l.html#gaa3324ac7aedf9362b498226903288094" title="Closes a VOL connector identifier.">H5VLclose()</a>.</p>
<dl class="section since"><dt>Since</dt><dd>1.12.0 </dd></dl>

</div>
</div>
<a id="gafc58db23c257cdcf2f0c1c3ae911ab0f" name="gafc58db23c257cdcf2f0c1c3ae911ab0f"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gafc58db23c257cdcf2f0c1c3ae911ab0f">&#9670;&#160;</a></span>H5Pget_vol_info()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pget_vol_info </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">void **</td>          <td class="paramname"><span class="paramname"><em>vol_info</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns a copy of the VOL information for a connector. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">vol_info</td><td>The VOL information for a connector</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gafc58db23c257cdcf2f0c1c3ae911ab0f" title="Returns a copy of the VOL information for a connector.">H5Pget_vol_info()</a> returns a copy of the VOL information <code>vol_info</code> for a connector specified by the file access property list <code>plist_id</code>.</p>
<dl class="section since"><dt>Since</dt><dd>1.12.0 </dd></dl>

</div>
</div>
<a id="gab99d5af749aeb3896fd9e3ceb273677a" name="gab99d5af749aeb3896fd9e3ceb273677a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gab99d5af749aeb3896fd9e3ceb273677a">&#9670;&#160;</a></span>H5Pset_alignment()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_alignment </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a></td>          <td class="paramname"><span class="paramname"><em>threshold</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a></td>          <td class="paramname"><span class="paramname"><em>alignment</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets alignment properties of a file access property list. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">threshold</td><td>Threshold value. Note that setting the threshold value to 0 (zero) has the effect of a special case, forcing everything to be aligned </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">alignment</td><td>Alignment value</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gab99d5af749aeb3896fd9e3ceb273677a" title="Sets alignment properties of a file access property list.">H5Pset_alignment()</a> sets the alignment properties of a file access property list so that any file object greater than or equal in size to <code>threshold</code> bytes will be aligned on an address that is a multiple of <code>alignment</code>. The addresses are relative to the end of the user block; the alignment is calculated by subtracting the user block size from the absolute file address and then adjusting the address to be a multiple of <code>alignment</code>.</p>
<p>Default values for <code>threshold</code> and <code>alignment</code> are one, implying no alignment. Generally the default values will result in the best performance for single-process access to the file. For MPI IO and other parallel systems, choose an alignment that is a multiple of the disk block size.</p>
<p>If the file space handling strategy is set to <a class="el" href="_h5_fpublic_8h.html#a9cc492c4b5c936e48716a8dab3691bccacd625bd864903e71132c9098929f5a0a">H5F_FSPACE_STRATEGY_PAGE</a>, then the alignment set via this routine is ignored. The file space handling strategy is set by <a class="el" href="group___f_c_p_l.html#ga167ff65f392ca3b7f1933b1cee1b9f70" title="Sets the file space handling strategy and persisting free-space values for a file creation property l...">H5Pset_file_space_strategy()</a>.</p>
<dl class="section since"><dt>Since</dt><dd>1.0.0 </dd></dl>

</div>
</div>
<a id="ga034a5fc54d9b05296555544d8dd9fe89" name="ga034a5fc54d9b05296555544d8dd9fe89"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga034a5fc54d9b05296555544d8dd9fe89">&#9670;&#160;</a></span>H5Pset_cache()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_cache </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int</td>          <td class="paramname"><span class="paramname"><em>mdc_nelmts</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t</td>          <td class="paramname"><span class="paramname"><em>rdcc_nslots</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t</td>          <td class="paramname"><span class="paramname"><em>rdcc_nbytes</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">double</td>          <td class="paramname"><span class="paramname"><em>rdcc_w0</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the raw data chunk cache parameters. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">mdc_nelmts</td><td>No longer used; any value passed is ignored </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">rdcc_nslots</td><td>The number of chunk slots in the raw data chunk cache for this dataset. Increasing this value reduces the number of cache collisions, but slightly increases the memory used. Due to the hashing strategy, this value should ideally be a prime number. As a rule of thumb, this value should be at least 10 times the number of chunks that can fit in <code>rdcc_nbytes</code> bytes. For maximum performance, this value should be set approximately 100 times that number of chunks. The default value is 521. </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">rdcc_nbytes</td><td>Total size of the raw data chunk cache in bytes. The default size is 1 MB per dataset. </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">rdcc_w0</td><td>The chunk preemption policy for all datasets. This must be between 0 and 1 inclusive and indicates the weighting according to which chunks which have been fully read or written are penalized when determining which chunks to flush from cache. A value of 0 means fully read or written chunks are treated no differently than other chunks (the preemption is strictly LRU), while a value of 1 means fully read or written chunks are always preempted before other chunks. If your application only reads or writes data once, this can be safely set to 1. Otherwise, this should be set lower depending on how often you re-read or re-write the same data. The default value is 0.75. If the value passed is <a class="el" href="_h5_dpublic_8h.html#a4a01949e0020fa9471811cc8ed271ee7">H5D_CHUNK_CACHE_W0_DEFAULT</a>, then the property will not be set on the dataset access property list, and the parameter will come from the file access property list.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga034a5fc54d9b05296555544d8dd9fe89" title="Sets the raw data chunk cache parameters.">H5Pset_cache()</a> sets the number of elements, the total number of bytes, and the preemption policy value for all datasets in a file on the file's file access property list.</p>
<p>The raw data chunk cache inserts chunks into the cache by first computing a hash value using the address of a chunk and then by using that hash value as the chunk's index into the table of cached chunks. In other words, the size of this hash table and the number of possible hash values are determined by the <code>rdcc_nslots</code> parameter. If a different chunk in the cache has the same hash value, a collision will occur, which will reduce efficiency. If inserting the chunk into the cache would cause the cache to be too big, then the cache will be pruned according to the <code>rdcc_w0</code> parameter.</p>
<p>The <code>mdc_nelmts</code> parameter is no longer used; any value passed in that parameter will be ignored.</p>
<p><b>Motivation:</b> Setting raw data chunk cache parameters can be done with <a class="el" href="#ga034a5fc54d9b05296555544d8dd9fe89" title="Sets the raw data chunk cache parameters.">H5Pset_cache()</a>, <a class="el" href="group___d_a_p_l.html#ga104d00442c31714ee073dee518f661f1" title="Sets the raw data chunk cache parameters.">H5Pset_chunk_cache()</a>, or a combination of both. <a class="el" href="#ga034a5fc54d9b05296555544d8dd9fe89" title="Sets the raw data chunk cache parameters.">H5Pset_cache()</a> is used to adjust the chunk cache parameters for all datasets via a global setting for the file, and <a class="el" href="group___d_a_p_l.html#ga104d00442c31714ee073dee518f661f1" title="Sets the raw data chunk cache parameters.">H5Pset_chunk_cache()</a> is used to adjust the chunk cache parameters for individual datasets. When both are used, parameters set with <a class="el" href="group___d_a_p_l.html#ga104d00442c31714ee073dee518f661f1" title="Sets the raw data chunk cache parameters.">H5Pset_chunk_cache()</a> will override any parameters set with <a class="el" href="#ga034a5fc54d9b05296555544d8dd9fe89" title="Sets the raw data chunk cache parameters.">H5Pset_cache()</a>.</p>
<dl class="section note"><dt>Note</dt><dd>Optimum chunk cache parameters may vary widely depending on different data layout and access patterns. For datasets with low performance requirements for example, changing the cache settings can save memory.</dd>
<dd>
Note: Raw dataset chunk caching is not currently supported when using the MPI I/O and MPI POSIX file drivers in read/write mode; see <a class="el" href="#gaa0204810c1fea1667d62cf7c176416ff" title="Stores MPI IO communicator information to the file access property list.">H5Pset_fapl_mpio()</a>. When using this file driver, all calls to <a class="el" href="group___h5_d.html#ga8287d5a7be7b8e55ffeff68f7d26811c" title="Reads raw data from a dataset into a provided buffer.">H5Dread()</a> and <a class="el" href="group___h5_d.html#ga98f44998b67587662af8b0d8a0a75906" title="Writes raw data from a buffer to a dataset.">H5Dwrite()</a> will access the disk directly, and <a class="el" href="#ga034a5fc54d9b05296555544d8dd9fe89" title="Sets the raw data chunk cache parameters.">H5Pset_cache()</a> will have no effect on performance.</dd>
<dd>
Raw dataset chunk caching is supported when these drivers are used in read-only mode.</dd></dl>
<dl class="section version"><dt>Version</dt><dd>1.8.0 The use of the <code>mdc_nelmts</code> parameter was discontinued. Metadata cache configuration is managed with <a class="el" href="#gaf234199ad4cf9c708f45893f7f9cd4d3" title="Set the initial metadata cache configuration in the indicated File Access Property List to the suppli...">H5Pset_mdc_config()</a> and <a class="el" href="#ga3012f7f3310c7d25ada7617896bef1ee" title="Get the current initial metadata cache configuration from the provided file access property list.">H5Pget_mdc_config()</a>. </dd>
<dd>
1.6.0 The <code>rdcc_nbytes</code> and <code>rdcc_nelmts</code> parameters changed from type int to size_t. </dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.0.0 </dd></dl>

</div>
</div>
<a id="ga6380f9929cf42c8203813f7e72dde35c" name="ga6380f9929cf42c8203813f7e72dde35c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga6380f9929cf42c8203813f7e72dde35c">&#9670;&#160;</a></span>H5Pset_coll_metadata_write()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_coll_metadata_write </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a></td>          <td class="paramname"><span class="paramname"><em>is_collective</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets metadata write mode to be collective or independent (default) </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[out]</td><td class="paramname">is_collective</td><td>Boolean value indicating whether metadata writes are collective (<code>&gt;0</code>) or independent (<code>0</code>). <em>Default mode:</em> Independent (<code>0</code>) </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga6380f9929cf42c8203813f7e72dde35c" title="Sets metadata write mode to be collective or independent (default)">H5Pset_coll_metadata_write()</a> tells the HDF5 library whether to perform metadata writes collectively (1) or independently (0).</p>
<p>If collective access is selected, then on a flush of the metadata cache, all processes will divide the metadata cache entries to be flushed evenly among themselves and issue a single MPI-IO collective write operation. This is the preferred method when the size of the metadata created by the application is large.</p>
<p>If independent access is selected, the library uses the default method for doing metadata I/O either from process zero or independently from each process.</p>
<dl class="section see"><dt>See also</dt><dd><ul>
<li><a class="el" href="group___g_a_p_l.html#ga8792cbe7eeace1382f588ed12a92092a" title="Retrieves metadata read mode setting.">H5Pget_all_coll_metadata_ops()</a> </li>
<li><a class="el" href="#gac83ab4e788a5b6e0d578f40ca67d8d00" title="Retrieves metadata write mode setting.">H5Pget_coll_metadata_write()</a> </li>
<li><a class="el" href="group___g_a_p_l.html#ga5bc0b1fc7e1e3961bf0b441e722949eb" title="Sets metadata I/O mode for read operations to be collective or independent (default)">H5Pset_all_coll_metadata_ops()</a> </li>
<li><a class="el" href="#ga6380f9929cf42c8203813f7e72dde35c" title="Sets metadata write mode to be collective or independent (default)">H5Pset_coll_metadata_write()</a> </li>
<li><a class="el" href="maybe_metadata_reads.html">Functions with No Access Property List Parameter that May Generate Metadata Reads</a></li>
</ul>
</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.10.0 </dd></dl>

</div>
</div>
<a id="ga237e300b96222a259896b24cf52405b0" name="ga237e300b96222a259896b24cf52405b0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga237e300b96222a259896b24cf52405b0">&#9670;&#160;</a></span>H5Pset_core_write_tracking()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_core_write_tracking </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a></td>          <td class="paramname"><span class="paramname"><em>is_enabled</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t</td>          <td class="paramname"><span class="paramname"><em>page_size</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets write tracking information for core driver, <a class="el" href="_h5_f_dcore_8h.html#ae449696f6b86abcd1120beab21fff76a">H5FD_CORE</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">is_enabled</td><td>Boolean value specifying whether feature is enabled </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">page_size</td><td>Positive integer specifying size, in bytes, of write aggregation pages Value of 1 (one) enables tracking with no paging.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p>When a file is created or opened for writing using the core virtual file driver (VFD) with the backing store option turned on, the core driver can be configured to track changes to the file and write out only the modified bytes.</p>
<p>This write tracking feature is enabled and disabled with <code>is_enabled</code>. The default setting is that write tracking is disabled, or off.</p>
<p>To avoid a large number of small writes, changes can be aggregated into pages of a user-specified size, <code>page_size</code>.</p>
<p>Setting <code>page_size</code> to 1 enables tracking with no page aggregation.</p>
<p>The backing store option is set via the function H5Pset_fapl_core.</p>
<dl class="section attention"><dt>Attention</dt><dd><p class="startdd">This function is only for use with the core VFD and must be used after the call to <a class="el" href="#ga6e6628f620a1c58c704129cf07282849" title="Modifies the file access property list to use the H5FD_CORE driver.">H5Pset_fapl_core()</a>. It is an error to use this function with any other VFD.</p>
<p class="interdd">It is an error to use this function when the backing store flag has not been set using <a class="el" href="#ga6e6628f620a1c58c704129cf07282849" title="Modifies the file access property list to use the H5FD_CORE driver.">H5Pset_fapl_core()</a>.</p>
<p class="interdd">This function only applies to the backing store write operation which typically occurs when the file is flushed or closed. This function has no relationship to the increment parameter passed to <a class="el" href="#ga6e6628f620a1c58c704129cf07282849" title="Modifies the file access property list to use the H5FD_CORE driver.">H5Pset_fapl_core()</a>.</p>
<p class="interdd">For optimum performance, the <code>page_size</code> parameter should be a power of two.</p>
<p class="enddd">It is an error to set the page size to 0. </p>
</dd></dl>
<dl class="section version"><dt>Version</dt><dd>1.8.14 C function modified in this release to return error if <code>page_size</code> is set to 0 (zero). </dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.8.13 </dd></dl>

</div>
</div>
<a id="ga8bcce60e23e9d2a019212c63b146502e" name="ga8bcce60e23e9d2a019212c63b146502e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga8bcce60e23e9d2a019212c63b146502e">&#9670;&#160;</a></span>H5Pset_driver()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_driver </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>driver_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const void *</td>          <td class="paramname"><span class="paramname"><em>driver_info</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets a file driver. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>Property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">driver_id</td><td>The new driver identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">driver_info</td><td>Optional struct containing driver properties</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga8bcce60e23e9d2a019212c63b146502e" title="Sets a file driver.">H5Pset_driver()</a> sets the file driver, driver_id, for a file access or data transfer property list, <code>plist_id</code>, and supplies an optional struct containing the driver-specific properties, <code>driver_info</code>.</p>
<p>The driver properties will be copied into the property list and the reference count on the driver will be incremented, allowing the caller to close the driver identifier but still use the property list.</p>
<dl class="section version"><dt>Version</dt><dd>1.8.2 Function publicized in this release; previous releases described this function only in the virtual file driver documentation.</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="ga156702db27ece40d21b37be5fe5e8b15" name="ga156702db27ece40d21b37be5fe5e8b15"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga156702db27ece40d21b37be5fe5e8b15">&#9670;&#160;</a></span>H5Pset_driver_by_name()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_driver_by_name </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *</td>          <td class="paramname"><span class="paramname"><em>driver_name</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *</td>          <td class="paramname"><span class="paramname"><em>driver_config</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets a file driver according to a given driver name. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>Property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">driver_name</td><td>The new driver name </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">driver_config</td><td>Optional string containing driver properties</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga156702db27ece40d21b37be5fe5e8b15" title="Sets a file driver according to a given driver name.">H5Pset_driver_by_name()</a> sets the file driver, by the name driver_name, for a file access or data transfer property list, <code>plist_id</code>, and supplies an optional string containing the driver-specific properties, <code>driver_config</code>. The driver properties string will be copied into the property list.</p>
<p>If the driver specified by <code>driver_name</code> is not currently registered, an attempt will be made to load the driver as a plugin.</p>
<dl class="section since"><dt>Since</dt><dd>1.14.0 </dd></dl>

</div>
</div>
<a id="gac4426b1d36aa8766fbe2deaf67a18c06" name="gac4426b1d36aa8766fbe2deaf67a18c06"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gac4426b1d36aa8766fbe2deaf67a18c06">&#9670;&#160;</a></span>H5Pset_driver_by_value()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_driver_by_value </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5_f_dpublic_8h.html#a17ff64731b589ac818c2309d0d0ce8fb">H5FD_class_value_t</a></td>          <td class="paramname"><span class="paramname"><em>driver_value</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *</td>          <td class="paramname"><span class="paramname"><em>driver_config</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets a file driver according to a given driver value (ID). </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>Property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">driver_value</td><td>The new driver value (ID) </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">driver_config</td><td>Optional string containing driver properties</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gac4426b1d36aa8766fbe2deaf67a18c06" title="Sets a file driver according to a given driver value (ID).">H5Pset_driver_by_value()</a> sets the file driver, by the value driver_value, for a file access or data transfer property list, <code>plist_id</code>, and supplies an optional string containing the driver-specific properties, <code>driver_config</code>. The driver properties string will be copied into the property list.</p>
<p>If the driver specified by <code>driver_value</code> is not currently registered, an attempt will be made to load the driver as a plugin.</p>
<dl class="section since"><dt>Since</dt><dd>1.14.0 </dd></dl>

</div>
</div>
<a id="gac21a815e9b133802df625c9f766ef325" name="gac21a815e9b133802df625c9f766ef325"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gac21a815e9b133802df625c9f766ef325">&#9670;&#160;</a></span>H5Pset_elink_file_cache_size()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_elink_file_cache_size </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>plist_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">unsigned</td>          <td class="paramname"><span class="paramname"><em>efc_size</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the number of files that can be held open in an external link open file cache. </p>
<dl class="section user"><dt>Motivation</dt><dd><p class="startdd">The <em>external link open file cache</em> holds files open after they have been accessed via an external link. This cache reduces the number of times such files are opened when external links are accessed repeatedly and can significantly improves performance in certain heavy-use situations and when low-level file opens or closes are expensive.</p>
<p class="enddd"><a class="el" href="#gac21a815e9b133802df625c9f766ef325" title="Sets the number of files that can be held open in an external link open file cache.">H5Pset_elink_file_cache_size()</a> sets the number of files that will be held open in an external link open file cache. <a class="el" href="#ga4c9bcfff90f48bfefa2c25e551485923" title="Retrieves the size of the external link open file cache.">H5Pget_elink_file_cache_size()</a> retrieves the size of an existing cache; and <a class="el" href="group___h5_f.html#gafcc153d8606829d4401e93305e5246d7" title="Clears the external link open file cache.">H5Fclear_elink_file_cache()</a> clears an existing cache without closing it. </p>
</dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">plist_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">efc_size</td><td>External link open file cache size in number of files <em>Default setting is 0 (zero).</em></td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gac21a815e9b133802df625c9f766ef325" title="Sets the number of files that can be held open in an external link open file cache.">H5Pset_elink_file_cache_size()</a> specifies the number of files that will be held open in an external link open file cache.</p>
<p>The default external link open file cache size is 0 (zero), meaning that files accessed via an external link are not held open. Setting the cache size to a positive integer turns on the cache; setting the size back to zero turns it off.</p>
<p>With this property set, files are placed in the external link open file cache cache when they are opened via an external link. Files are then held open until either they are evicted from the cache or the parent file is closed. This property setting can improve performance when external links are repeatedly accessed.</p>
<p>When the cache is full, files will be evicted using a least recently used (LRU) scheme; the file which has gone the longest time without being accessed through the parent file will be evicted and closed if nothing else is holding that file open.</p>
<p>Files opened through external links inherit the parent file's file access property list by default, and therefore inherit the parent file's external link open file cache setting.</p>
<p>When child files contain external links of their own, the caches can form a graph of cached external files. Closing the last external reference to such a graph will recursively close all files in the graph, even if cycles are present. </p><dl class="section user"><dt>Example</dt><dd><p class="startdd">The following code sets up an external link open file cache that will hold open up to 8 files reached through external links:</p>
<div class="fragment"><div class="line">status = <a class="code hl_function" href="#gac21a815e9b133802df625c9f766ef325">H5Pset_elink_file_cache_size</a>(fapl_id, 8);</div>
<div class="ttc" id="agroup___f_a_p_l_html_gac21a815e9b133802df625c9f766ef325"><div class="ttname"><a href="#gac21a815e9b133802df625c9f766ef325">H5Pset_elink_file_cache_size</a></div><div class="ttdeci">herr_t H5Pset_elink_file_cache_size(hid_t plist_id, unsigned efc_size)</div><div class="ttdoc">Sets the number of files that can be held open in an external link open file cache.</div></div>
</div><!-- fragment --> </dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.8.7 </dd></dl>

</div>
</div>
<a id="gaa44cc0e592608e12082dad9305b3c74d" name="gaa44cc0e592608e12082dad9305b3c74d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gaa44cc0e592608e12082dad9305b3c74d">&#9670;&#160;</a></span>H5Pset_evict_on_close()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_evict_on_close </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a></td>          <td class="paramname"><span class="paramname"><em>evict_on_close</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Controls the library's behavior of evicting metadata associated with a closed object. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">evict_on_close</td><td>Whether the HDF5 object should be evicted on close</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p>The library's metadata cache is fairly conservative about holding on to HDF5 object metadata(object headers, chunk index structures, etc.), which can cause the cache size to grow, resulting in memory pressure on an application or system. When enabled, the "evict on
         close" property will cause all metadata for an object to be evicted from the cache as long as metadata is not referenced by any other open object.</p>
<p>This function only applies to file access property lists.</p>
<p>The default library behavior is to not evict on object or file close.</p>
<p>When applied to a file access property list, any subsequently opened object will inherit the "evict on close" property and will have its metadata evicted when the object is closed.</p>
<dl class="section since"><dt>Since</dt><dd>1.10.1 </dd></dl>

</div>
</div>
<a id="ga6b24e6daf4816bbfb89b63bab40aa982" name="ga6b24e6daf4816bbfb89b63bab40aa982"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga6b24e6daf4816bbfb89b63bab40aa982">&#9670;&#160;</a></span>H5Pset_family_offset()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_family_offset </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a></td>          <td class="paramname"><span class="paramname"><em>offset</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets offset property for low-level access to a file in a family of files. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">offset</td><td>Offset in bytes within the HDF5 file</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga6b24e6daf4816bbfb89b63bab40aa982" title="Sets offset property for low-level access to a file in a family of files.">H5Pset_family_offset()</a> sets the offset property in the file access property list <code>fapl_id</code> so that the user application can retrieve a file handle for low-level access to a particular member of a family of files. The file handle is retrieved with a separate call to <a class="el" href="group___h5_f.html#gae4020a66fb8da0586e3b74c81ffccea4" title="Returns pointer to the file handle from the virtual file driver.">H5Fget_vfd_handle()</a> (or, in special circumstances, to <a class="el" href="_h5_f_ddevelop_8h.html#a9fcfb5d6708f4c3f5d319b801ac252bc">H5FDget_vfd_handle()</a>; see <a class="el" href="_v_f_l.html">HDF5 Virtual File Layer</a>).</p>
<p>The value of <code>offset</code> is an offset in bytes from the beginning of the HDF5 file, identifying a user-determined location within the HDF5 file. The file handle the user application is seeking is for the specific member-file in the associated family of files to which this offset is mapped.</p>
<p>Use of this function is only appropriate for an HDF5 file written as a family of files with the <code>FAMILY</code> file driver.</p>
<dl class="section since"><dt>Since</dt><dd>1.6.0 </dd></dl>

</div>
</div>
<a id="ga6e6628f620a1c58c704129cf07282849" name="ga6e6628f620a1c58c704129cf07282849"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga6e6628f620a1c58c704129cf07282849">&#9670;&#160;</a></span>H5Pset_fapl_core()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_fapl_core </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t</td>          <td class="paramname"><span class="paramname"><em>increment</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a></td>          <td class="paramname"><span class="paramname"><em>backing_store</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Modifies the file access property list to use the <a class="el" href="_h5_f_dcore_8h.html#ae449696f6b86abcd1120beab21fff76a">H5FD_CORE</a> driver. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">increment</td><td>Size, in bytes, of memory increments </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">backing_store</td><td>Boolean flag indicating whether to write the file contents to disk when the file is closed </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga6e6628f620a1c58c704129cf07282849" title="Modifies the file access property list to use the H5FD_CORE driver.">H5Pset_fapl_core()</a> modifies the file access property list to use the <a class="el" href="_h5_f_dcore_8h.html#ae449696f6b86abcd1120beab21fff76a">H5FD_CORE</a> driver.</p>
<p>The <a class="el" href="_h5_f_dcore_8h.html#ae449696f6b86abcd1120beab21fff76a">H5FD_CORE</a> driver enables an application to work with a file in memory, speeding reads and writes as no disk access is made. File contents are stored only in memory until the file is closed. The <code>backing_store</code> parameter determines whether file contents are ever written to disk.</p>
<p><code>increment</code> specifies the increment by which allocated memory is to be increased each time more memory is required.</p>
<p>While using <a class="el" href="group___h5_f.html#gae64b51ee9ac0781bc4ccc599d98387f4" title="Creates an HDF5 file.">H5Fcreate()</a> to create a core file, if the <code>backing_store</code> is set to 1 (true), the file contents are flushed to a file with the same name as this core file when the file is closed or access to the file is terminated in memory.</p>
<p>The application is allowed to open an existing file with <a class="el" href="_h5_f_dcore_8h.html#ae449696f6b86abcd1120beab21fff76a">H5FD_CORE</a> driver. While using <a class="el" href="group___h5_f.html#gaa3f4f877b9bb591f3880423ed2bf44bc" title="Opens an existing HDF5 file.">H5Fopen()</a> to open an existing file, if the <code>backing_store</code> is set to 1 (true) and the <code>flags</code> for <a class="el" href="group___h5_f.html#gaa3f4f877b9bb591f3880423ed2bf44bc" title="Opens an existing HDF5 file.">H5Fopen()</a> is set to <a class="el" href="_h5_fpublic_8h.html#a402673dec5c537b27a49a9a8bd6140b4">H5F_ACC_RDWR</a>, any change to the file contents are saved to the file when the file is closed. If <code>backing_store</code> is set to 0 (false) and the <code>flags</code> for <a class="el" href="group___h5_f.html#gaa3f4f877b9bb591f3880423ed2bf44bc" title="Opens an existing HDF5 file.">H5Fopen()</a> is set to <a class="el" href="_h5_fpublic_8h.html#a402673dec5c537b27a49a9a8bd6140b4">H5F_ACC_RDWR</a>, any change to the file contents will be lost when the file is closed. If the flags for <a class="el" href="group___h5_f.html#gaa3f4f877b9bb591f3880423ed2bf44bc" title="Opens an existing HDF5 file.">H5Fopen()</a> is set to <a class="el" href="_h5_fpublic_8h.html#a1c406ffa89f4acf5a332144a2683d394">H5F_ACC_RDONLY</a>, no change to the file is allowed either in memory or on file.</p>
<dl class="section note"><dt>Note</dt><dd>Currently this driver cannot create or open family or multi files.</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="ga2839252e149484ef30fb214ae7b44ac7" name="ga2839252e149484ef30fb214ae7b44ac7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga2839252e149484ef30fb214ae7b44ac7">&#9670;&#160;</a></span>H5Pset_fapl_direct()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_fapl_direct </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t</td>          <td class="paramname"><span class="paramname"><em>alignment</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t</td>          <td class="paramname"><span class="paramname"><em>block_size</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t</td>          <td class="paramname"><span class="paramname"><em>cbuf_size</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets up use of the direct I/O driver. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">alignment</td><td>Required memory alignment boundary </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">block_size</td><td>File system block size </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">cbuf_size</td><td>Copy buffer size </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga2839252e149484ef30fb214ae7b44ac7" title="Sets up use of the direct I/O driver.">H5Pset_fapl_direct()</a> sets the file access property list, <code>fapl_id</code>, to use the direct I/O driver, <a class="el" href="_h5_f_ddirect_8h.html#a99213f218f9ab0c51f9c679228a1e436">H5FD_DIRECT</a>. With this driver, data is written to or read from the file synchronously without being cached by the system.</p>
<p>File systems usually require the data address in memory, the file address, and the size of the data to be aligned. The HDF5 library's direct I/O driver is able to handle unaligned data, though that will consume some additional memory resources and may slow performance. To get better performance, use the system function <code>posix_memalign</code> to align the data buffer in memory and the HDF5 function <a class="el" href="#gab99d5af749aeb3896fd9e3ceb273677a" title="Sets alignment properties of a file access property list.">H5Pset_alignment()</a> to align the data in the file. Be aware, however, that aligned data I/O may cause the HDF5 file to be bigger than the actual data size would otherwise require because the alignment may leave some holes in the file.</p>
<p><code>alignment</code> specifies the required alignment boundary in memory.</p>
<p><code>block_size</code> specifies the file system block size. A value of 0 (zero) means to use HDF5 library's default value of 4KB.</p>
<p><code>cbuf_size</code> specifies the copy buffer size.</p>
<dl class="section since"><dt>Since</dt><dd>1.8.0 </dd></dl>

</div>
</div>
<a id="ga95d19da25f196ce1ace10af00f49ab53" name="ga95d19da25f196ce1ace10af00f49ab53"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga95d19da25f196ce1ace10af00f49ab53">&#9670;&#160;</a></span>H5Pset_fapl_family()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_fapl_family </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a></td>          <td class="paramname"><span class="paramname"><em>memb_size</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>memb_fapl_id</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the file access property list to use the family driver. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">memb_size</td><td>Size in bytes of each file member </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">memb_fapl_id</td><td>Identifier of file access property list for each family member </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga95d19da25f196ce1ace10af00f49ab53" title="Sets the file access property list to use the family driver.">H5Pset_fapl_family()</a> sets the file access property list identifier, <code>fapl_id</code>, to use the family driver.</p>
<p><code>memb_size</code> is the size in bytes of each file member. This size will be saved in file when the property list <code>fapl_id</code> is used to create a new file. If <code>fapl_id</code> is used to open an existing file, <code>memb_size</code> has to be equal to the original size saved in file. A failure with an error message indicating the correct member size will be returned if <code>memb_size</code> does not match the size saved. If any user does not know the original size, <a class="el" href="_h5_fpublic_8h.html#aeae74ee757cb3e381abf8e3c480c06cc">H5F_FAMILY_DEFAULT</a> can be passed in. The library will retrieve the saved size.</p>
<p><code>memb_fapl_id</code> is the identifier of the file access property list to be used for each family member.</p>
<dl class="section version"><dt>Version</dt><dd>1.8.0 Behavior of the <code>memb_size</code> parameter was changed. </dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="ga970d077c8e712a4692f43fa4f38dde14" name="ga970d077c8e712a4692f43fa4f38dde14"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga970d077c8e712a4692f43fa4f38dde14">&#9670;&#160;</a></span>H5Pset_fapl_hdfs()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_fapl_hdfs </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="struct_h5_f_d__hdfs__fapl__t.html">H5FD_hdfs_fapl_t</a> *</td>          <td class="paramname"><span class="paramname"><em>fa</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Modifies the file access property list to use the <a class="el" href="_h5_f_dhdfs_8h.html#ac3868cc2fa0e9aec4bcb52830906d584">H5FD_HDFS</a> driver. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">fa</td><td>Pointer to <a class="el" href="_h5_f_dhdfs_8h.html#ac3868cc2fa0e9aec4bcb52830906d584">H5FD_HDFS</a> driver configuration structure</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga970d077c8e712a4692f43fa4f38dde14" title="Modifies the file access property list to use the H5FD_HDFS driver.">H5Pset_fapl_hdfs()</a> modifies the file access property list to use the <a class="el" href="_h5_f_dhdfs_8h.html#ac3868cc2fa0e9aec4bcb52830906d584">H5FD_HDFS</a> driver.</p>
<dl class="section since"><dt>Since</dt><dd>1.10.6 </dd></dl>

</div>
</div>
<a id="ga714340ec9cbb65cb0a819e1d775825f0" name="ga714340ec9cbb65cb0a819e1d775825f0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga714340ec9cbb65cb0a819e1d775825f0">&#9670;&#160;</a></span>H5Pset_fapl_ioc()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_fapl_ioc </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="struct_h5_f_d__ioc__config__t.html">H5FD_ioc_config_t</a> *</td>          <td class="paramname"><span class="paramname"><em>vfd_config</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Modifies the specified File Access Property List to use the <a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> driver. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">vfd_config</td><td>Pointer to <a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> driver configuration structure. May be NULL. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga714340ec9cbb65cb0a819e1d775825f0" title="Modifies the specified File Access Property List to use the H5FD_IOC driver.">H5Pset_fapl_ioc()</a> modifies the File Access Property List to use the <a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> driver.</p>
<p>The <a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> driver is a reference implementation of an "I/O concentrator" file driver that works in conjunction with the <a class="el" href="_h5_f_dsubfiling_8h.html#a070ba7b51cfe718ba4da75b308066a9d">H5FD_SUBFILING</a> driver and provides the I/O backend for servicing I/O requests to subfiles.</p>
<p>Typically, an HDF5 application won't need to call this routine directly. The <a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> driver is usually set up as a side effect of an HDF5 application using the <a class="el" href="_h5_f_dsubfiling_8h.html#a070ba7b51cfe718ba4da75b308066a9d">H5FD_SUBFILING</a> driver, but this routine is provided in case the application wishes to manually configure the <a class="el" href="_h5_f_dioc_8h.html#a9d6649a67050fb1101cca3596421b986">H5FD_IOC</a> driver.</p>
<dl class="section note"><dt>Note</dt><dd>The <code>vfd_config</code> parameter may be NULL. In this case, the driver will be setup with default settings. Note that in this case, it is assumed the parent <a class="el" href="_h5_f_dsubfiling_8h.html#a070ba7b51cfe718ba4da75b308066a9d">H5FD_SUBFILING</a> driver was also setup with default settings. If the two drivers differ in configuration settings, application behavior may not be as expected.</dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.14.0 </dd></dl>

</div>
</div>
<a id="ga4e03be2fe83ed02b32266a6c81427beb" name="ga4e03be2fe83ed02b32266a6c81427beb"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga4e03be2fe83ed02b32266a6c81427beb">&#9670;&#160;</a></span>H5Pset_fapl_log()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_fapl_log </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *</td>          <td class="paramname"><span class="paramname"><em>logfile</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">unsigned long long</td>          <td class="paramname"><span class="paramname"><em>flags</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t</td>          <td class="paramname"><span class="paramname"><em>buf_size</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets up the logging virtual file driver (<a class="el" href="_h5_f_dlog_8h.html#a027aaf28f5104c77c4f51ecd29a5f7f4">H5FD_LOG</a>) for use. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">logfile</td><td>Name of the log file </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">flags</td><td>Flags specifying the types of logging activity </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">buf_size</td><td>The size of the logging buffers, in bytes (see description) </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga4e03be2fe83ed02b32266a6c81427beb" title="Sets up the logging virtual file driver (H5FD_LOG) for use.">H5Pset_fapl_log()</a> modifies the file access property list to use the logging driver, <a class="el" href="_h5_f_dlog_8h.html#a027aaf28f5104c77c4f51ecd29a5f7f4">H5FD_LOG</a>. The logging virtual file driver (VFD) is a clone of the standard SEC2 (<a class="el" href="_h5_f_dsec2_8h.html#a15ae1f958e1cf11cb239916d76b10606">H5FD_SEC2</a>) driver with additional facilities for logging VFD metrics and activity to a file.</p>
<p><code>logfile</code> is the name of the file in which the logging entries are to be recorded.</p>
<p>The actions to be logged are specified in the parameter <code>flags</code> using the pre-defined constants described in the following table. Multiple flags can be set through the use of a logical <code>OR</code> contained in parentheses. For example, logging read and write locations would be specified as <code>(H5FD_LOG_LOC_READ|H5FD_LOG_LOC_WRITE)</code>.</p>
<table class="doxtable">
<caption>Table1: Logging Flags</caption>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a120669aefa2b196e1654adc89ec573d1">H5FD_LOG_LOC_READ</a>  </td><td rowspan="3">Track the location and length of every read, write, or seek operation.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#aad9b1373eda57a82cf4e5d671e1840c1">H5FD_LOG_LOC_WRITE</a> </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a80fe0af18d00636c3f7b98e9d65ffd21">H5FD_LOG_LOC_SEEK</a> </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a7367b1298e0b4c87fa9465dd28827dca">H5FD_LOG_LOC_IO</a>  </td><td>Track all I/O locations and lengths. The logical equivalent of the following: <code>(<a class="el" href="_h5_f_dlog_8h.html#a120669aefa2b196e1654adc89ec573d1">H5FD_LOG_LOC_READ</a> | <a class="el" href="_h5_f_dlog_8h.html#aad9b1373eda57a82cf4e5d671e1840c1">H5FD_LOG_LOC_WRITE</a> | <a class="el" href="_h5_f_dlog_8h.html#a80fe0af18d00636c3f7b98e9d65ffd21">H5FD_LOG_LOC_SEEK</a>)</code>   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#ad6950042cea2cd02909798ef461a9684">H5FD_LOG_FILE_READ</a>  </td><td rowspan="2">Track the number of times each byte is read or written.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a3953c5550fec9361e233c3d1aac41144">H5FD_LOG_FILE_WRITE</a> </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a494058d10b26c3059d499320f78528b3">H5FD_LOG_FILE_IO</a>  </td><td>Track the number of times each byte is read and written. The logical equivalent of the following: <code>(<a class="el" href="_h5_f_dlog_8h.html#ad6950042cea2cd02909798ef461a9684">H5FD_LOG_FILE_READ</a> | <a class="el" href="_h5_f_dlog_8h.html#a3953c5550fec9361e233c3d1aac41144">H5FD_LOG_FILE_WRITE</a>)</code>   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#ad5592d1612b80582c4440cc2352d29a6">H5FD_LOG_FLAVOR</a>  </td><td>Track the type, or flavor, of information stored at each byte.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a98f658e5d600b477b458e2d48dc04cfe">H5FD_LOG_NUM_READ</a>  </td><td rowspan="4">Track the total number of read, write, seek, or truncate operations that occur.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a4bb9fb65b42da293cb06b108e09b922a">H5FD_LOG_NUM_WRITE</a> </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a73258d8eba3fa5819869650dbbd31338">H5FD_LOG_NUM_SEEK</a> </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a4c5f66077075477d56ad8424b171cbd9">H5FD_LOG_NUM_TRUNCATE</a> </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a73baff79dc4819dc5733aed41a2db676">H5FD_LOG_NUM_IO</a>  </td><td>Track the total number of all types of I/O operations. The logical equivalent of the following: <code>(<a class="el" href="_h5_f_dlog_8h.html#a98f658e5d600b477b458e2d48dc04cfe">H5FD_LOG_NUM_READ</a> | <a class="el" href="_h5_f_dlog_8h.html#a4bb9fb65b42da293cb06b108e09b922a">H5FD_LOG_NUM_WRITE</a> | <a class="el" href="_h5_f_dlog_8h.html#a73258d8eba3fa5819869650dbbd31338">H5FD_LOG_NUM_SEEK</a> | <a class="el" href="_h5_f_dlog_8h.html#a4c5f66077075477d56ad8424b171cbd9">H5FD_LOG_NUM_TRUNCATE</a>)</code>   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#ac253b663d693a3fa154a9f70de382e3e">H5FD_LOG_TIME_OPEN</a>  </td><td rowspan="6">Track the time spent in open, stat, read, write, seek, or close operations.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a47fd3387519a8fc710cd0797e76fcef9">H5FD_LOG_TIME_STAT</a> </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#ae243e77f6140dd939c7def71c2d9e1e3">H5FD_LOG_TIME_READ</a> </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a7e3f0ecd0d5065d9031e8da9446442d6">H5FD_LOG_TIME_WRITE</a> </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a96b366d078d5b93cd5a3b5c25ff3811f">H5FD_LOG_TIME_SEEK</a> </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a1fc445a926ae7cd9af6546166c0af552">H5FD_LOG_TIME_CLOSE</a> </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#ab2abf6744e67751f6f3236ee6214bfe4">H5FD_LOG_TIME_IO</a>  </td><td>Track the time spent in each of the above operations. The logical equivalent of the following: <code>(<a class="el" href="_h5_f_dlog_8h.html#ac253b663d693a3fa154a9f70de382e3e">H5FD_LOG_TIME_OPEN</a> | <a class="el" href="_h5_f_dlog_8h.html#a47fd3387519a8fc710cd0797e76fcef9">H5FD_LOG_TIME_STAT</a> | <a class="el" href="_h5_f_dlog_8h.html#ae243e77f6140dd939c7def71c2d9e1e3">H5FD_LOG_TIME_READ</a> | <a class="el" href="_h5_f_dlog_8h.html#a7e3f0ecd0d5065d9031e8da9446442d6">H5FD_LOG_TIME_WRITE</a> | <a class="el" href="_h5_f_dlog_8h.html#a96b366d078d5b93cd5a3b5c25ff3811f">H5FD_LOG_TIME_SEEK</a> | <a class="el" href="_h5_f_dlog_8h.html#a1fc445a926ae7cd9af6546166c0af552">H5FD_LOG_TIME_CLOSE</a>)</code>   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#afcf6971d3787ddfe911726db7385f6ac">H5FD_LOG_ALLOC</a>  </td><td>Track the allocation of space in the file.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#ab3ad7b41fb549b5e8e5cd009b3999113">H5FD_LOG_ALL</a>  </td><td>Track everything. The logical equivalent of the following: <code>(<a class="el" href="_h5_f_dlog_8h.html#afcf6971d3787ddfe911726db7385f6ac">H5FD_LOG_ALLOC</a> | <a class="el" href="_h5_f_dlog_8h.html#ab2abf6744e67751f6f3236ee6214bfe4">H5FD_LOG_TIME_IO</a> | <a class="el" href="_h5_f_dlog_8h.html#a73baff79dc4819dc5733aed41a2db676">H5FD_LOG_NUM_IO</a> | <a class="el" href="_h5_f_dlog_8h.html#ad5592d1612b80582c4440cc2352d29a6">H5FD_LOG_FLAVOR</a> | <a class="el" href="_h5_f_dlog_8h.html#a494058d10b26c3059d499320f78528b3">H5FD_LOG_FILE_IO</a> | <a class="el" href="_h5_f_dlog_8h.html#a7367b1298e0b4c87fa9465dd28827dca">H5FD_LOG_LOC_IO</a>)</code>   </td></tr>
</table>
<p>The logging driver can track the number of times each byte in the file is read from or written to (using <a class="el" href="_h5_f_dlog_8h.html#ad6950042cea2cd02909798ef461a9684">H5FD_LOG_FILE_READ</a> and <a class="el" href="_h5_f_dlog_8h.html#a3953c5550fec9361e233c3d1aac41144">H5FD_LOG_FILE_WRITE</a>) and what kind of data is at that location (e.g., metadata, raw data; using <a class="el" href="_h5_f_dlog_8h.html#ad5592d1612b80582c4440cc2352d29a6">H5FD_LOG_FLAVOR</a>). This information is tracked in internal buffers of size buf_size, which must be at least the maximum size in bytes of the file to be logged while the log driver is in use.<br  />
One buffer of size buf_size will be created for each of <a class="el" href="_h5_f_dlog_8h.html#ad6950042cea2cd02909798ef461a9684">H5FD_LOG_FILE_READ</a>, <a class="el" href="_h5_f_dlog_8h.html#a3953c5550fec9361e233c3d1aac41144">H5FD_LOG_FILE_WRITE</a> and <a class="el" href="_h5_f_dlog_8h.html#ad5592d1612b80582c4440cc2352d29a6">H5FD_LOG_FLAVOR</a> when those flags are set; these buffers will not grow as the file increases in size.</p>
<dl class="section user"><dt>Output:</dt><dd>This section describes the logging driver (LOG VFD) output.<br  />
The table, immediately below, describes output of the various logging driver flags and function calls. A list of valid flavor values, describing the type of data stored, follows the table. <table class="doxtable">
<caption>Table2: Logging Output</caption>
<tr>
<th>Flag</th><th>VFD Call</th><th>Output and Comments   </th></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a120669aefa2b196e1654adc89ec573d1">H5FD_LOG_LOC_READ</a> </td><td>Read </td><td><code>%10a-%10a (%10Zu bytes) (s) Read</code><br  />
<br  />
Start position<br  />
End position<br  />
Number of bytes<br  />
Flavor of read<br  />
<br  />
Adds <code>(%f s)</code> and seek time if <a class="el" href="_h5_f_dlog_8h.html#a96b366d078d5b93cd5a3b5c25ff3811f">H5FD_LOG_TIME_SEEK</a> is also set.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a120669aefa2b196e1654adc89ec573d1">H5FD_LOG_LOC_READ</a> </td><td>Read Error </td><td><code>Error! Reading: %10a-%10a (%10Zu bytes)</code><br  />
<br  />
Same parameters as non-error entry.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#aad9b1373eda57a82cf4e5d671e1840c1">H5FD_LOG_LOC_WRITE</a> </td><td>Write </td><td><code>%10a-%10a (%10Zu bytes) (s) Written</code><br  />
<br  />
Start position<br  />
End position<br  />
Number of bytes<br  />
Flavor of write<br  />
<br  />
Adds <code>(%f s)</code> and seek time if <a class="el" href="_h5_f_dlog_8h.html#a96b366d078d5b93cd5a3b5c25ff3811f">H5FD_LOG_TIME_SEEK</a> is also set.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#aad9b1373eda57a82cf4e5d671e1840c1">H5FD_LOG_LOC_WRITE</a> </td><td>Write Error </td><td><code>Error! Writing: %10a-%10a (%10Zu bytes)</code><br  />
<br  />
Same parameters as non-error entry.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a80fe0af18d00636c3f7b98e9d65ffd21">H5FD_LOG_LOC_SEEK</a> </td><td>Read, Write </td><td><code>Seek: From %10a-%10a</code><br  />
<br  />
Start position<br  />
End position<br  />
<br  />
Adds <code>(%f s)</code> and seek time if <a class="el" href="_h5_f_dlog_8h.html#a96b366d078d5b93cd5a3b5c25ff3811f">H5FD_LOG_TIME_SEEK</a> is also set.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#ad6950042cea2cd02909798ef461a9684">H5FD_LOG_FILE_READ</a> </td><td>Close </td><td>Begins with:<br  />
Dumping read I/O information<br  />
<br  />
Then, for each range of identical values, there is this line:<br  />
<code>Addr %10-%10 (%10lu bytes) read from %3d times</code><br  />
<br  />
Start address<br  />
End address<br  />
Number of bytes<br  />
Number of times read<br  />
<br  />
Note: The data buffer is scanned and each range of identical values gets one entry in the log file to save space and make it easier to read.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a3953c5550fec9361e233c3d1aac41144">H5FD_LOG_FILE_WRITE</a> </td><td>Close </td><td>Begins with:<br  />
Dumping read I/O information<br  />
<br  />
Then, for each range of identical values, there is this line:<br  />
<code>Addr %10-%10 (%10lu bytes) written to %3d times</code><br  />
<br  />
Start address<br  />
End address<br  />
Number of bytes<br  />
Number of times written<br  />
<br  />
Note: The data buffer is scanned and each range of identical values gets one entry in the log file to save space and make it easier to read.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#ad5592d1612b80582c4440cc2352d29a6">H5FD_LOG_FLAVOR</a> </td><td>Close </td><td>Begins with:<br  />
Dumping I/O flavor information<br  />
<br  />
Then, for each range of identical values, there is this line:<br  />
<code>Addr %10-%10 (%10lu bytes) flavor is s</code><br  />
<br  />
Start address<br  />
End address<br  />
Number of bytes<br  />
Flavor<br  />
<br  />
Note: The data buffer is scanned and each range of identical values gets one entry in the log file to save space and make it easier to read.   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a98f658e5d600b477b458e2d48dc04cfe">H5FD_LOG_NUM_READ</a> </td><td>Close </td><td>Total number of read operations: <code>%11u</code>   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a4bb9fb65b42da293cb06b108e09b922a">H5FD_LOG_NUM_WRITE</a> </td><td>Close </td><td>Total number of write operations: <code>%11u</code>   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a73258d8eba3fa5819869650dbbd31338">H5FD_LOG_NUM_SEEK</a> </td><td>Close </td><td>Total number of seek operations: <code>%11u</code>   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a4c5f66077075477d56ad8424b171cbd9">H5FD_LOG_NUM_TRUNCATE</a> </td><td>Close </td><td>Total number of truncate operations: <code>%11u</code>   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#ac253b663d693a3fa154a9f70de382e3e">H5FD_LOG_TIME_OPEN</a> </td><td>Open </td><td>Open took: <code>(%f s)</code>   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#ae243e77f6140dd939c7def71c2d9e1e3">H5FD_LOG_TIME_READ</a> </td><td>Close, Read </td><td>Total time in read operations: <code>%f s</code><br  />
<br  />
See also: <a class="el" href="_h5_f_dlog_8h.html#a120669aefa2b196e1654adc89ec573d1">H5FD_LOG_LOC_READ</a>    </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a7e3f0ecd0d5065d9031e8da9446442d6">H5FD_LOG_TIME_WRITE</a> </td><td>Close, Write </td><td>Total time in write operations: <code>%f s</code><br  />
<br  />
See also: <a class="el" href="_h5_f_dlog_8h.html#aad9b1373eda57a82cf4e5d671e1840c1">H5FD_LOG_LOC_WRITE</a>   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a96b366d078d5b93cd5a3b5c25ff3811f">H5FD_LOG_TIME_SEEK</a> </td><td>Close, Read, Write </td><td>Total time in write operations: <code>%f s</code><br  />
<br  />
See also: <a class="el" href="_h5_f_dlog_8h.html#a80fe0af18d00636c3f7b98e9d65ffd21">H5FD_LOG_LOC_SEEK</a> or <a class="el" href="_h5_f_dlog_8h.html#aad9b1373eda57a82cf4e5d671e1840c1">H5FD_LOG_LOC_WRITE</a>   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a1fc445a926ae7cd9af6546166c0af552">H5FD_LOG_TIME_CLOSE</a> </td><td>Close </td><td>Close took: <code>(%f s)</code>   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#a47fd3387519a8fc710cd0797e76fcef9">H5FD_LOG_TIME_STAT</a> </td><td>Open </td><td>Stat took: <code>(%f s)</code>   </td></tr>
<tr>
<td><a class="el" href="_h5_f_dlog_8h.html#afcf6971d3787ddfe911726db7385f6ac">H5FD_LOG_ALLOC</a> </td><td>Alloc </td><td><code>%10-%10 (%10Hu bytes) (%s) Allocated</code><br  />
<br  />
Start of address space<br  />
End of address space<br  />
Total size allocation<br  />
Flavor of allocation   </td></tr>
</table>
</dd></dl>
<dl class="section user"><dt>Flavors:</dt><dd>The <em>flavor</em> describes the type of stored information. The following table lists the flavors that appear in log output and briefly describes each. These terms are provided here to aid in the construction of log message parsers; a full description is beyond the scope of this document. <table class="doxtable">
<caption>Table3: Flavors of logged data</caption>
<tr>
<th>Flavor</th><th>Description   </th></tr>
<tr>
<td><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a06b02f5b50dcf7e78a94acada33979bb">H5FD_MEM_NOLIST</a> </td><td>Error value  </td></tr>
<tr>
<td><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a137331d00cf5b0c84ef7dfa725429f90">H5FD_MEM_DEFAULT</a> </td><td>Value not yet set.<br  />
 May also be a datatype set in a larger allocation that will be suballocated by the library.  </td></tr>
<tr>
<td><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ae536846ac8d6ecd1a2a8479409df1bce">H5FD_MEM_SUPER</a> </td><td>Superblock data  </td></tr>
<tr>
<td><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a29b8528e16990fbe265682559b917fa3">H5FD_MEM_BTREE</a> </td><td>B-tree data  </td></tr>
<tr>
<td><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ab435b061fede0393691acbe7cac2cb2e">H5FD_MEM_DRAW</a> </td><td>Raw data (for example, contents of a dataset)  </td></tr>
<tr>
<td><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a020d6245f874e8262058c3278fefe58e">H5FD_MEM_GHEAP</a> </td><td>Global heap data  </td></tr>
<tr>
<td><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ae7536174d3ae2a842a71d6c192b43a13">H5FD_MEM_LHEAP</a> </td><td>Local heap data  </td></tr>
<tr>
<td><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a4337f7056fb57717e82fa1081f496d75">H5FD_MEM_OHDR</a> </td><td>Object header data  </td></tr>
</table>
</dd></dl>
<dl class="section version"><dt>Version</dt><dd>1.8.7 The flags parameter has been changed from <code>unsigned int</code> to <code>unsigned long long</code>. The implementation of the <a class="el" href="_h5_f_dlog_8h.html#ac253b663d693a3fa154a9f70de382e3e">H5FD_LOG_TIME_OPEN</a>, <a class="el" href="_h5_f_dlog_8h.html#ae243e77f6140dd939c7def71c2d9e1e3">H5FD_LOG_TIME_READ</a>, <a class="el" href="_h5_f_dlog_8h.html#a7e3f0ecd0d5065d9031e8da9446442d6">H5FD_LOG_TIME_WRITE</a>, and <a class="el" href="_h5_f_dlog_8h.html#a96b366d078d5b93cd5a3b5c25ff3811f">H5FD_LOG_TIME_SEEK</a> flags has been finished. New flags were added: <a class="el" href="_h5_f_dlog_8h.html#a4c5f66077075477d56ad8424b171cbd9">H5FD_LOG_NUM_TRUNCATE</a> and <a class="el" href="_h5_f_dlog_8h.html#a47fd3387519a8fc710cd0797e76fcef9">H5FD_LOG_TIME_STAT</a>. </dd>
<dd>
1.6.0 The <code>verbosity</code> parameter has been removed. Two new parameters have been added: <code>flags</code> of type <code>unsigned</code> and <code>buf_size</code> of type <code>size_t</code>. </dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="ga8491676811ccc7ba582e30fb63da6563" name="ga8491676811ccc7ba582e30fb63da6563"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga8491676811ccc7ba582e30fb63da6563">&#9670;&#160;</a></span>H5Pset_fapl_mirror()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_fapl_mirror </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="struct_h5_f_d__mirror__fapl__t.html">H5FD_mirror_fapl_t</a> *</td>          <td class="paramname"><span class="paramname"><em>fa</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="todo"><dt><b><a class="el" href="todo.html#_todo000015">Todo</a></b></dt><dd>Add missing documentation </dd></dl>

</div>
</div>
<a id="gaa0204810c1fea1667d62cf7c176416ff" name="gaa0204810c1fea1667d62cf7c176416ff"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gaa0204810c1fea1667d62cf7c176416ff">&#9670;&#160;</a></span>H5Pset_fapl_mpio()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_fapl_mpio </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">MPI_Comm</td>          <td class="paramname"><span class="paramname"><em>comm</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">MPI_Info</td>          <td class="paramname"><span class="paramname"><em>info</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Stores MPI IO communicator information to the file access property list. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">comm</td><td>MPI communicator </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">info</td><td>MPI info object </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gaa0204810c1fea1667d62cf7c176416ff" title="Stores MPI IO communicator information to the file access property list.">H5Pset_fapl_mpio()</a> stores the user-supplied MPI IO parameters <code>comm</code>, for communicator, and <code>info</code>, for information, in the file access property list <code>fapl_id</code>. That property list can then be used to create and/or open a file.</p>
<p><a class="el" href="#gaa0204810c1fea1667d62cf7c176416ff" title="Stores MPI IO communicator information to the file access property list.">H5Pset_fapl_mpio()</a> is available only in the parallel HDF5 library and is not a collective function.</p>
<p><code>comm</code> is the MPI communicator to be used for file open, as defined in <code>MPI_File_open</code> of MPI. This function makes a duplicate of the communicator, so modifications to <code>comm</code> after this function call returns have no effect on the file access property list.</p>
<p><code>info</code> is the MPI Info object to be used for file open, as defined in MPI_File_open() of MPI. This function makes a duplicate copy of the Info object, so modifications to the Info object after this function call returns will have no effect on the file access property list.</p>
<p>If the file access property list already contains previously-set communicator and Info values, those values will be replaced and the old communicator and Info object will be freed.</p>
<dl class="section note"><dt>Note</dt><dd>Raw dataset chunk caching is not currently supported when using this file driver in read/write mode. All calls to <a class="el" href="group___h5_d.html#ga8287d5a7be7b8e55ffeff68f7d26811c" title="Reads raw data from a dataset into a provided buffer.">H5Dread()</a> and <a class="el" href="group___h5_d.html#ga98f44998b67587662af8b0d8a0a75906" title="Writes raw data from a buffer to a dataset.">H5Dwrite()</a> will access the disk directly, and <a class="el" href="#ga034a5fc54d9b05296555544d8dd9fe89" title="Sets the raw data chunk cache parameters.">H5Pset_cache()</a> and <a class="el" href="group___d_a_p_l.html#ga104d00442c31714ee073dee518f661f1" title="Sets the raw data chunk cache parameters.">H5Pset_chunk_cache()</a> will have no effect on performance.<br  />
 Raw dataset chunk caching is supported when this driver is used in read-only mode.</dd></dl>
<dl class="section version"><dt>Version</dt><dd>1.4.5 Handling of the MPI Communicator and Info object changed at this release. A duplicate of each of these is now stored in the property list instead of pointers to each. </dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="ga296bd22cc1e462351f8f0a00a46baf58" name="ga296bd22cc1e462351f8f0a00a46baf58"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga296bd22cc1e462351f8f0a00a46baf58">&#9670;&#160;</a></span>H5Pset_fapl_multi()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_fapl_multi </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="_h5_f_dpublic_8h.html#a02887a6f018be1a0ce7358522095578b">H5FD_mem_t</a> *</td>          <td class="paramname"><span class="paramname"><em>memb_map</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> *</td>          <td class="paramname"><span class="paramname"><em>memb_fapl</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *const *</td>          <td class="paramname"><span class="paramname"><em>memb_name</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="_h5public_8h.html#a8c86e866f40d7167cf9a1934c72b856f">haddr_t</a> *</td>          <td class="paramname"><span class="paramname"><em>memb_addr</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a></td>          <td class="paramname"><span class="paramname"><em>relax</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets up use of the multi-file driver. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">memb_map</td><td>Maps memory usage types to other memory usage types </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">memb_fapl</td><td>Property list for each memory usage type </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">memb_name</td><td>Name generator for names of member files </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">memb_addr</td><td>The offsets within the virtual address space, from 0 (zero) to <a class="el" href="_h5public_8h.html#a49742d33813ee38ef58eca9fbeda6b86">HADDR_MAX</a>, at which each type of data storage begins </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">relax</td><td>Allows read-only access to incomplete file sets when <code>true</code> </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga296bd22cc1e462351f8f0a00a46baf58" title="Sets up use of the multi-file driver.">H5Pset_fapl_multi()</a> sets the file access property list <code>fapl_id</code> to use the multi-file driver.</p>
<p>The multi-file driver enables different types of HDF5 data and metadata to be written to separate files. These files are viewed by the HDF5 library and the application as a single virtual HDF5 file with a single HDF5 file address space. The types of data that can be broken out into separate files include raw data, the superblock, B-tree data, global heap data, local heap data, and object headers. At the programmer's discretion, two or more types of data can be written to the same file while other types of data are written to separate files.</p>
<p>The array <code>memb_map</code> maps memory usage types to other memory usage types and is the mechanism that allows the caller to specify how many files are created. The array contains <a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a3be201777da432df4a8e2c1b618a7566">H5FD_MEM_NTYPES</a> entries, which are either the value <a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a137331d00cf5b0c84ef7dfa725429f90">H5FD_MEM_DEFAULT</a> or a memory usage type. The number of unique values determines the number of files that are opened.</p>
<p>The array <code>memb_fapl</code> contains a property list for each memory usage type that will be associated with a file.</p>
<p>The array <code>memb_name</code> should be a name generator (a <code>printf</code>-style format with a <code>s</code> which will be replaced with the name passed to <a class="el" href="_h5_f_ddevelop_8h.html#a36c22438fe64e0f9e4dc13aec57da21f">H5FDopen()</a>, usually from <a class="el" href="group___h5_f.html#gae64b51ee9ac0781bc4ccc599d98387f4" title="Creates an HDF5 file.">H5Fcreate()</a> or <a class="el" href="group___h5_f.html#gaa3f4f877b9bb591f3880423ed2bf44bc" title="Opens an existing HDF5 file.">H5Fopen()</a>).</p>
<p>The array <code>memb_addr</code> specifies the offsets within the virtual address space, from 0 (zero) to <a class="el" href="_h5public_8h.html#a49742d33813ee38ef58eca9fbeda6b86">HADDR_MAX</a>, at which each type of data storage begins.</p>
<p>If <code>relax</code> is set to 1 (true), then opening an existing file for read-only access will not fail if some file members are missing. This allows a file to be accessed in a limited sense if just the meta data is available.</p>
<p>Default values for each of the optional arguments are as follows: </p><table class="doxtable">
<tr>
<td><code>memb_map</code>  </td><td>The default member map contains the value <a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a137331d00cf5b0c84ef7dfa725429f90">H5FD_MEM_DEFAULT</a> for each element.  </td></tr>
<tr>
<td><code>memb_fapl</code>  </td><td>The default value is <a class="el" href="_h5_ppublic_8h.html#afa85e97bfbf9bf1c58e39263846c568f">H5P_DEFAULT</a> for each element.   </td></tr>
<tr>
<td><code>memb_name</code>  </td><td>The default string is <code>s-X.h5</code> where <code>X</code> is one of the following letters:<ul>
<li><code>s</code> for <a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ae536846ac8d6ecd1a2a8479409df1bce">H5FD_MEM_SUPER</a></li>
<li><code>b</code> for <a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a29b8528e16990fbe265682559b917fa3">H5FD_MEM_BTREE</a></li>
<li><code>r</code> for <a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ab435b061fede0393691acbe7cac2cb2e">H5FD_MEM_DRAW</a></li>
<li><code>g</code> for <a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a020d6245f874e8262058c3278fefe58e">H5FD_MEM_GHEAP</a></li>
<li><code>l</code> for <a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ae7536174d3ae2a842a71d6c192b43a13">H5FD_MEM_LHEAP</a></li>
<li><code>o</code> for <a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a4337f7056fb57717e82fa1081f496d75">H5FD_MEM_OHDR</a>   </li>
</ul>
</td></tr>
<tr>
<td><code>memb_addr</code>  </td><td>The default setting is that the address space is equally divided among all of the elements:<ul>
<li><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ae536846ac8d6ecd1a2a8479409df1bce">H5FD_MEM_SUPER</a> <code>-&gt; 0 * (HADDR_MAX/6)</code></li>
<li><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a29b8528e16990fbe265682559b917fa3">H5FD_MEM_BTREE</a> <code>-&gt; 1 * (HADDR_MAX/6)</code></li>
<li><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ab435b061fede0393691acbe7cac2cb2e">H5FD_MEM_DRAW</a> <code>-&gt; 2 * (HADDR_MAX/6)</code></li>
<li><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a020d6245f874e8262058c3278fefe58e">H5FD_MEM_GHEAP</a> <code>-&gt; 3 * (HADDR_MAX/6)</code></li>
<li><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ae7536174d3ae2a842a71d6c192b43a13">H5FD_MEM_LHEAP</a> <code>-&gt; 4 * (HADDR_MAX/6)</code></li>
<li><a class="el" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a4337f7056fb57717e82fa1081f496d75">H5FD_MEM_OHDR</a> <code>-&gt; 5 * (HADDR_MAX/6)</code>   </li>
</ul>
</td></tr>
</table>
<dl class="section user"><dt>Example:</dt><dd>The following code sample sets up a multi-file access property list that partitions data into meta and raw files, each being one-half of the address:<br  />
<div class="fragment"><div class="line"><a class="code hl_typedef" href="_h5_f_dpublic_8h.html#a02887a6f018be1a0ce7358522095578b">H5FD_mem_t</a> mt, memb_map[<a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a3be201777da432df4a8e2c1b618a7566">H5FD_MEM_NTYPES</a>];</div>
<div class="line"><a class="code hl_typedef" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> memb_fapl[<a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a3be201777da432df4a8e2c1b618a7566">H5FD_MEM_NTYPES</a>];</div>
<div class="line"><span class="keyword">const</span> <span class="keywordtype">char</span> *memb[<a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a3be201777da432df4a8e2c1b618a7566">H5FD_MEM_NTYPES</a>];</div>
<div class="line"><a class="code hl_typedef" href="_h5public_8h.html#a8c86e866f40d7167cf9a1934c72b856f">haddr_t</a> memb_addr[<a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a3be201777da432df4a8e2c1b618a7566">H5FD_MEM_NTYPES</a>];</div>
<div class="line"> </div>
<div class="line"><span class="comment">// The mapping...</span></div>
<div class="line"><span class="keywordflow">for</span> (mt=0; mt&lt;<a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a3be201777da432df4a8e2c1b618a7566">H5FD_MEM_NTYPES</a>; mt++) {</div>
<div class="line">  memb_map[mt] = <a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ae536846ac8d6ecd1a2a8479409df1bce">H5FD_MEM_SUPER</a>;</div>
<div class="line">}</div>
<div class="line">memb_map[<a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ab435b061fede0393691acbe7cac2cb2e">H5FD_MEM_DRAW</a>] = <a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ab435b061fede0393691acbe7cac2cb2e">H5FD_MEM_DRAW</a>;</div>
<div class="line"> </div>
<div class="line"><span class="comment">// Member information</span></div>
<div class="line">memb_fapl[<a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ae536846ac8d6ecd1a2a8479409df1bce">H5FD_MEM_SUPER</a>] = <a class="code hl_define" href="_h5_ppublic_8h.html#afa85e97bfbf9bf1c58e39263846c568f">H5P_DEFAULT</a>;</div>
<div class="line">memb_name[<a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ae536846ac8d6ecd1a2a8479409df1bce">H5FD_MEM_SUPER</a>] = <span class="stringliteral">&quot;%s.meta&quot;</span>;</div>
<div class="line">memb_addr[<a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ae536846ac8d6ecd1a2a8479409df1bce">H5FD_MEM_SUPER</a>] = 0;</div>
<div class="line"> </div>
<div class="line">memb_fapl[<a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ab435b061fede0393691acbe7cac2cb2e">H5FD_MEM_DRAW</a>] = <a class="code hl_define" href="_h5_ppublic_8h.html#afa85e97bfbf9bf1c58e39263846c568f">H5P_DEFAULT</a>;</div>
<div class="line">memb_name[<a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ab435b061fede0393691acbe7cac2cb2e">H5FD_MEM_DRAW</a>] = <span class="stringliteral">&quot;%s.raw&quot;</span>;</div>
<div class="line">memb_addr[<a class="code hl_enumvalue" href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ab435b061fede0393691acbe7cac2cb2e">H5FD_MEM_DRAW</a>] = <a class="code hl_define" href="_h5public_8h.html#a49742d33813ee38ef58eca9fbeda6b86">HADDR_MAX</a>/2;</div>
<div class="line"> </div>
<div class="line"><a class="code hl_typedef" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> fapl = <a class="code hl_function" href="group___p_l_c_r.html#gaf1b11da01d4d45d788c45f8bc5f0cbfa">H5Pcreate</a>(<a class="code hl_define" href="_h5_ppublic_8h.html#a60ec2d4334addfc0eda89614598ee38e">H5P_FILE_ACCESS</a>);</div>
<div class="line"><a class="code hl_function" href="#ga296bd22cc1e462351f8f0a00a46baf58">H5Pset_fapl_multi</a>(fapl, memb_map, memb_fapl,</div>
<div class="line">                  memb_name, memb_addr, <span class="keyword">true</span>);</div>
<div class="ttc" id="a_h5_f_dpublic_8h_html_a02887a6f018be1a0ce7358522095578b"><div class="ttname"><a href="_h5_f_dpublic_8h.html#a02887a6f018be1a0ce7358522095578b">H5FD_mem_t</a></div><div class="ttdeci">enum H5F_mem_t H5FD_mem_t</div><div class="ttdef"><b>Definition</b> H5FDpublic.h:260</div></div>
<div class="ttc" id="a_h5_fpublic_8h_html_a51e588cd954ea2388816bd0818850eb5a3be201777da432df4a8e2c1b618a7566"><div class="ttname"><a href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5a3be201777da432df4a8e2c1b618a7566">H5FD_MEM_NTYPES</a></div><div class="ttdeci">@ H5FD_MEM_NTYPES</div><div class="ttdef"><b>Definition</b> H5Fpublic.h:168</div></div>
<div class="ttc" id="a_h5_fpublic_8h_html_a51e588cd954ea2388816bd0818850eb5ab435b061fede0393691acbe7cac2cb2e"><div class="ttname"><a href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ab435b061fede0393691acbe7cac2cb2e">H5FD_MEM_DRAW</a></div><div class="ttdeci">@ H5FD_MEM_DRAW</div><div class="ttdef"><b>Definition</b> H5Fpublic.h:163</div></div>
<div class="ttc" id="a_h5_fpublic_8h_html_a51e588cd954ea2388816bd0818850eb5ae536846ac8d6ecd1a2a8479409df1bce"><div class="ttname"><a href="_h5_fpublic_8h.html#a51e588cd954ea2388816bd0818850eb5ae536846ac8d6ecd1a2a8479409df1bce">H5FD_MEM_SUPER</a></div><div class="ttdeci">@ H5FD_MEM_SUPER</div><div class="ttdef"><b>Definition</b> H5Fpublic.h:161</div></div>
<div class="ttc" id="a_h5public_8h_html_a49742d33813ee38ef58eca9fbeda6b86"><div class="ttname"><a href="_h5public_8h.html#a49742d33813ee38ef58eca9fbeda6b86">HADDR_MAX</a></div><div class="ttdeci">#define HADDR_MAX</div><div class="ttdef"><b>Definition</b> H5public.h:334</div></div>
<div class="ttc" id="a_h5public_8h_html_a8c86e866f40d7167cf9a1934c72b856f"><div class="ttname"><a href="_h5public_8h.html#a8c86e866f40d7167cf9a1934c72b856f">haddr_t</a></div><div class="ttdeci">uint64_t haddr_t</div><div class="ttdef"><b>Definition</b> H5public.h:325</div></div>
<div class="ttc" id="agroup___f_a_p_l_html_ga296bd22cc1e462351f8f0a00a46baf58"><div class="ttname"><a href="#ga296bd22cc1e462351f8f0a00a46baf58">H5Pset_fapl_multi</a></div><div class="ttdeci">H5_DLL herr_t H5Pset_fapl_multi(hid_t fapl_id, const H5FD_mem_t *memb_map, const hid_t *memb_fapl, const char *const *memb_name, const haddr_t *memb_addr, hbool_t relax)</div><div class="ttdoc">Sets up use of the multi-file driver.</div></div>
</div><!-- fragment --></dd></dl>
<dl class="section version"><dt>Version</dt><dd>1.6.3 <code>memb_name</code> parameter type changed to <code>const char* const*</code>. </dd></dl>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="ga4d053c7682e54287e550113972b7dda6" name="ga4d053c7682e54287e550113972b7dda6"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga4d053c7682e54287e550113972b7dda6">&#9670;&#160;</a></span>H5Pset_fapl_onion()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_fapl_onion </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="struct_h5_f_d__onion__fapl__info__t.html">H5FD_onion_fapl_info_t</a> *</td>          <td class="paramname"><span class="paramname"><em>fa</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>set the onion info for the file access property list </p>
<hr  />
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">fa</td><td>The pointer to the structure <a class="el" href="struct_h5_f_d__onion__fapl__info__t.html">H5FD_onion_fapl_info_t</a></td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga4d053c7682e54287e550113972b7dda6" title="set the onion info for the file access property list">H5Pset_fapl_onion()</a> sets the structure <a class="el" href="struct_h5_f_d__onion__fapl__info__t.html">H5FD_onion_fapl_info_t</a> for the file access property list that is set for the onion VFD driver.</p>
<dl class="section since"><dt>Since</dt><dd>1.14.0 </dd></dl>

</div>
</div>
<a id="gaad28d8c24f236590193215c5ae7a8f18" name="gaad28d8c24f236590193215c5ae7a8f18"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gaad28d8c24f236590193215c5ae7a8f18">&#9670;&#160;</a></span>H5Pset_fapl_ros3()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_fapl_ros3 </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="struct_h5_f_d__ros3__fapl__t.html">H5FD_ros3_fapl_t</a> *</td>          <td class="paramname"><span class="paramname"><em>fa</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Modifies the specified File Access Property List to use the <a class="el" href="_h5_f_dros3_8h.html#ace004a4771dcfd40a4c0adecc1974570">H5FD_ROS3</a> driver. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">fa</td><td>Pointer to <a class="el" href="_h5_f_dros3_8h.html#ace004a4771dcfd40a4c0adecc1974570">H5FD_ROS3</a> driver configuration structure. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value. </dd></dl>

</div>
</div>
<a id="ga42bc76c556951027e30c4d26394323c6" name="ga42bc76c556951027e30c4d26394323c6"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga42bc76c556951027e30c4d26394323c6">&#9670;&#160;</a></span>H5Pset_fapl_ros3_token()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_fapl_ros3_token </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em>, </span></td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *</td>          <td class="paramname"><span class="paramname"><em>token</em></span>&#160;)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Modifies the specified File Access Property List to use the <a class="el" href="_h5_f_dros3_8h.html#ace004a4771dcfd40a4c0adecc1974570">H5FD_ROS3</a> driver by adding the specified session/security token. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier </td></tr>
    <tr><td class="paramdir">[in]</td><td class="paramname">token</td><td>Session/security token. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#ga42bc76c556951027e30c4d26394323c6" title="Modifies the specified File Access Property List to use the H5FD_ROS3 driver by adding the specified ...">H5Pset_fapl_ros3_token()</a> modifies an existing File Access Property List which is used by <a class="el" href="_h5_f_dros3_8h.html#ace004a4771dcfd40a4c0adecc1974570">H5FD_ROS3</a> driver by adding or updating the session/security token of the property list. Be aware, to set the token first you need to create a proper File Access Property List using H5Pset_fapl_ros() and use this list as input argument of the function <a class="el" href="#ga42bc76c556951027e30c4d26394323c6" title="Modifies the specified File Access Property List to use the H5FD_ROS3 driver by adding the specified ...">H5Pset_fapl_ros3_token()</a>.</p>
<p>Note, the session token is only needed when you want to access a S3 bucket using temporary security credentials.</p>
<dl class="section since"><dt>Since</dt><dd>1.14.2 </dd></dl>

</div>
</div>
<a id="gaf581bceca36ad4eef3cd45b16eabbb20" name="gaf581bceca36ad4eef3cd45b16eabbb20"></a>
<h2 class="memtitle"><span class="permalink"><a href="#gaf581bceca36ad4eef3cd45b16eabbb20">&#9670;&#160;</a></span>H5Pset_fapl_sec2()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5_DLL <a class="el" href="_h5public_8h.html#a3b079ecf932a5c599499cf7e298af160">herr_t</a> H5Pset_fapl_sec2 </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a></td>          <td class="paramname"><span class="paramname"><em>fapl_id</em></span></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Modifies the file access property list to use the <a class="el" href="_h5_f_dsec2_8h.html#a15ae1f958e1cf11cb239916d76b10606">H5FD_SEC2</a> driver. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td class="paramname">fapl_id</td><td>File access property list identifier</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns a non-negative value if successful; otherwise, returns a negative value.</dd></dl>
<p><a class="el" href="#gaf581bceca36ad4eef3cd45b16eabbb20" title="Modifies the file access property list to use the H5FD_SEC2 driver.">H5Pset_fapl_sec2()</a> modifies the file access property list to use the <a class="el" href="_h5_f_dsec2_8h.html#a15ae1f958e1cf11cb239916d76b10606">H5FD_SEC2</a> driver.</p>
<dl class="section since"><dt>Since</dt><dd>1.4.0 </dd></dl>

</div>
</div>
<a id="ga502f1ad38f5143cf281df8282fef26ed" name="ga502f1ad38f5143cf281df8282fef26ed"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ga502f1ad38f5143cf281df8282fef26ed">&#9670;&#160;</a></span>H5Pset_fapl_split()</h2>