summaryrefslogtreecommitdiffstats
path: root/doc/html/TechNotes/VFLfunc.html
blob: fe150392def7e56135810ea1b3d0e6951c0284b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<html>
<head>
<title>VFL Functions</title>
</head>

<body>

<!-- #BeginLibraryItem "/ed_libs/copyright-html.lbi" -->
<!--
  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  * Copyright by The HDF Group.                                               *
  * Copyright by the Board of Trustees of the University of Illinois.         *
  * All rights reserved.                                                      *
  *                                                                           *
  * This file is part of HDF5.  The full HDF5 copyright notice, including     *
  * terms governing use, modification, and redistribution, is contained in    *
  * the files COPYING and Copyright.html.  COPYING can be found at the root   *
  * of the source code distribution tree; Copyright.html can be found at the  *
  * root level of an installed copy of the electronic HDF5 document set and   *
  * is linked from the top-level documents page.  It can also be found at     *
  * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
  * access to either file, you may request a copy from help@hdfgroup.org.     *
  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 -->
<!-- #EndLibraryItem --><h1>List of HDF5 VFL Functions</h1>

<pre>
The following functions support the HDF5 virtual file layer (VFL), enabling 
the creation of customized I/O drivers.  

At this time, these functions are documented only in the <a href="VFL.html">HDF5 Virtual File 
Layer</a> design document and in the source code.



herr_t <font color=red>H5Pset_driver</font>(hid_t plist_id, hid_t driver_id,
                const void *driver_info)

void *<font color=red>H5Pget_driver_info</font>(hid_t plist_id)

hid_t <font color=red>H5FDregister</font>(const H5FD_class_t *cls);

herr_t <font color=red>H5FDunregister</font>(hid_t driver_id);

H5FD_t *<font color=red>H5FDopen</font>(const char *name, unsigned flags, hid_t fapl_id,
		haddr_t maxaddr);

herr_t <font color=red>H5FDclose</font>(H5FD_t *file);

int <font color=red>H5FDcmp</font>(const H5FD_t *f1, const H5FD_t *f2);

int <font color=red>H5FDquery</font>(const H5FD_t *f, unsigned long *flags);

haddr_t <font color=red>H5FDalloc</font>(H5FD_t *file, H5FD_mem_t type, hsize_t size);

herr_t <font color=red>H5FDfree</font>(H5FD_t *file, H5FD_mem_t type, haddr_t addr, hsize_t size);

haddr_t <font color=red>H5FDrealloc</font>(H5FD_t *file, H5FD_mem_t type, haddr_t addr,
		hsize_t old_size, hsize_t new_size);

haddr_t <font color=red>H5FDget_eoa</font>(H5FD_t *file);

herr_t <font color=red>H5FDset_eoa</font>(H5FD_t *file, haddr_t eof);

haddr_t <font color=red>H5FDget_eof</font>(H5FD_t *file);

herr_t <font color=red>H5FDread</font>(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, 
		size_t size, void *buf/*out*/);

herr_t <font color=red>H5FDwrite</font>(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, 
		haddr_t addr, size_t size, const void *buf);

herr_t <font color=red>H5FDflush</font></font>(H5FD_t *file, unsigned closing);

===========================================
Last modified:  25 June 2002
Last modified:  28 March 2007 (Help Desk contact only)
THG Help Desk:  <img src="../Graphics/help.png" align=top height=16>

</pre>
</body>
</html>