HDF5 1.14.5
API Reference
|
Data Structures | |
struct | H5FD_mirror_xmit_t |
struct | H5FD_mirror_xmit_eoa_t |
struct | H5FD_mirror_xmit_lock_t |
struct | H5FD_mirror_xmit_open_t |
struct | H5FD_mirror_xmit_reply_t |
struct | H5FD_mirror_xmit_write_t |
Functions | |
H5_DLL size_t | H5FD__mirror_xmit_decode_uint16 (uint16_t *out, const unsigned char *buf) |
H5_DLL size_t | H5FD__mirror_xmit_decode_uint32 (uint32_t *out, const unsigned char *buf) |
H5_DLL size_t | H5FD__mirror_xmit_decode_uint64 (uint64_t *out, const unsigned char *buf) |
H5_DLL size_t | H5FD__mirror_xmit_decode_uint8 (uint8_t *out, const unsigned char *buf) |
H5_DLL size_t | H5FD__mirror_xmit_encode_uint16 (unsigned char *dest, uint16_t v) |
H5_DLL size_t | H5FD__mirror_xmit_encode_uint32 (unsigned char *dest, uint32_t v) |
H5_DLL size_t | H5FD__mirror_xmit_encode_uint64 (unsigned char *dest, uint64_t v) |
H5_DLL size_t | H5FD__mirror_xmit_encode_uint8 (unsigned char *dest, uint8_t v) |
H5_DLL size_t | H5FD_mirror_xmit_decode_header (H5FD_mirror_xmit_t *out, const unsigned char *buf) |
H5_DLL size_t | H5FD_mirror_xmit_decode_lock (H5FD_mirror_xmit_lock_t *out, const unsigned char *buf) |
H5_DLL size_t | H5FD_mirror_xmit_decode_open (H5FD_mirror_xmit_open_t *out, const unsigned char *buf) |
H5_DLL size_t | H5FD_mirror_xmit_decode_reply (H5FD_mirror_xmit_reply_t *out, const unsigned char *buf) |
H5_DLL size_t | H5FD_mirror_xmit_decode_set_eoa (H5FD_mirror_xmit_eoa_t *out, const unsigned char *buf) |
H5_DLL size_t | H5FD_mirror_xmit_decode_write (H5FD_mirror_xmit_write_t *out, const unsigned char *buf) |
H5_DLL size_t | H5FD_mirror_xmit_encode_header (unsigned char *dest, const H5FD_mirror_xmit_t *x) |
H5_DLL size_t | H5FD_mirror_xmit_encode_lock (unsigned char *dest, const H5FD_mirror_xmit_lock_t *x) |
H5_DLL size_t | H5FD_mirror_xmit_encode_open (unsigned char *dest, const H5FD_mirror_xmit_open_t *x) |
H5_DLL size_t | H5FD_mirror_xmit_encode_reply (unsigned char *dest, const H5FD_mirror_xmit_reply_t *x) |
H5_DLL size_t | H5FD_mirror_xmit_encode_set_eoa (unsigned char *dest, const H5FD_mirror_xmit_eoa_t *x) |
H5_DLL size_t | H5FD_mirror_xmit_encode_write (unsigned char *dest, const H5FD_mirror_xmit_write_t *x) |
H5_DLL bool | H5FD_mirror_xmit_is_close (const H5FD_mirror_xmit_t *xmit) |
H5_DLL bool | H5FD_mirror_xmit_is_lock (const H5FD_mirror_xmit_lock_t *xmit) |
H5_DLL bool | H5FD_mirror_xmit_is_open (const H5FD_mirror_xmit_open_t *xmit) |
H5_DLL bool | H5FD_mirror_xmit_is_reply (const H5FD_mirror_xmit_reply_t *xmit) |
H5_DLL bool | H5FD_mirror_xmit_is_set_eoa (const H5FD_mirror_xmit_eoa_t *xmit) |
H5_DLL bool | H5FD_mirror_xmit_is_write (const H5FD_mirror_xmit_write_t *xmit) |
H5_DLL bool | H5FD_mirror_xmit_is_xmit (const H5FD_mirror_xmit_t *xmit) |
#define H5FD_MIRROR_DATA_BUFFER_MAX (1024 * 1024 * 1024) /* 1 Gigabyte */ |
#define H5FD_MIRROR_OP_CLOSE 2 |
#define H5FD_MIRROR_OP_LOCK 7 |
#define H5FD_MIRROR_OP_OPEN 1 |
#define H5FD_MIRROR_OP_REPLY 5 |
#define H5FD_MIRROR_OP_SET_EOA 6 |
#define H5FD_MIRROR_OP_TRUNCATE 4 |
#define H5FD_MIRROR_OP_UNLOCK 8 |
#define H5FD_MIRROR_OP_WRITE 3 |
#define H5FD_MIRROR_STATUS_ERROR 1 |
#define H5FD_MIRROR_STATUS_MESSAGE_MAX 256 /* Dedicated error message size */ |
#define H5FD_MIRROR_STATUS_OK 0 |
#define H5FD_MIRROR_XMIT_BUFFER_MAX |
#define H5FD_MIRROR_XMIT_CURR_VERSION 1 |
#define H5FD_MIRROR_XMIT_EOA_SIZE (H5FD_MIRROR_XMIT_HEADER_SIZE + 9) |
#define H5FD_MIRROR_XMIT_FILEPATH_MAX 4097 |
#define H5FD_MIRROR_XMIT_HEADER_SIZE 14 |
#define H5FD_MIRROR_XMIT_LOCK_SIZE (H5FD_MIRROR_XMIT_HEADER_SIZE + 8) |
#define H5FD_MIRROR_XMIT_MAGIC 0x87F8005B |
#define H5FD_MIRROR_XMIT_OPEN_SIZE (H5FD_MIRROR_XMIT_HEADER_SIZE + 20 + H5FD_MIRROR_XMIT_FILEPATH_MAX) |
#define H5FD_MIRROR_XMIT_REPLY_SIZE (H5FD_MIRROR_XMIT_HEADER_SIZE + 4 + H5FD_MIRROR_STATUS_MESSAGE_MAX) |
#define H5FD_MIRROR_XMIT_WRITE_SIZE (H5FD_MIRROR_XMIT_HEADER_SIZE + 17) |
H5_DLL size_t H5FD__mirror_xmit_decode_uint16 | ( | uint16_t * | out, |
const unsigned char * | buf | ||
) |
H5_DLL size_t H5FD__mirror_xmit_decode_uint32 | ( | uint32_t * | out, |
const unsigned char * | buf | ||
) |
H5_DLL size_t H5FD__mirror_xmit_decode_uint64 | ( | uint64_t * | out, |
const unsigned char * | buf | ||
) |
H5_DLL size_t H5FD__mirror_xmit_decode_uint8 | ( | uint8_t * | out, |
const unsigned char * | buf | ||
) |
H5_DLL size_t H5FD__mirror_xmit_encode_uint16 | ( | unsigned char * | dest, |
uint16_t | v | ||
) |
H5_DLL size_t H5FD__mirror_xmit_encode_uint32 | ( | unsigned char * | dest, |
uint32_t | v | ||
) |
H5_DLL size_t H5FD__mirror_xmit_encode_uint64 | ( | unsigned char * | dest, |
uint64_t | v | ||
) |
H5_DLL size_t H5FD__mirror_xmit_encode_uint8 | ( | unsigned char * | dest, |
uint8_t | v | ||
) |
H5_DLL size_t H5FD_mirror_xmit_decode_header | ( | H5FD_mirror_xmit_t * | out, |
const unsigned char * | buf | ||
) |
H5_DLL size_t H5FD_mirror_xmit_decode_lock | ( | H5FD_mirror_xmit_lock_t * | out, |
const unsigned char * | buf | ||
) |
H5_DLL size_t H5FD_mirror_xmit_decode_open | ( | H5FD_mirror_xmit_open_t * | out, |
const unsigned char * | buf | ||
) |
H5_DLL size_t H5FD_mirror_xmit_decode_reply | ( | H5FD_mirror_xmit_reply_t * | out, |
const unsigned char * | buf | ||
) |
H5_DLL size_t H5FD_mirror_xmit_decode_set_eoa | ( | H5FD_mirror_xmit_eoa_t * | out, |
const unsigned char * | buf | ||
) |
H5_DLL size_t H5FD_mirror_xmit_decode_write | ( | H5FD_mirror_xmit_write_t * | out, |
const unsigned char * | buf | ||
) |
H5_DLL size_t H5FD_mirror_xmit_encode_header | ( | unsigned char * | dest, |
const H5FD_mirror_xmit_t * | x | ||
) |
H5_DLL size_t H5FD_mirror_xmit_encode_lock | ( | unsigned char * | dest, |
const H5FD_mirror_xmit_lock_t * | x | ||
) |
H5_DLL size_t H5FD_mirror_xmit_encode_open | ( | unsigned char * | dest, |
const H5FD_mirror_xmit_open_t * | x | ||
) |
H5_DLL size_t H5FD_mirror_xmit_encode_reply | ( | unsigned char * | dest, |
const H5FD_mirror_xmit_reply_t * | x | ||
) |
H5_DLL size_t H5FD_mirror_xmit_encode_set_eoa | ( | unsigned char * | dest, |
const H5FD_mirror_xmit_eoa_t * | x | ||
) |
H5_DLL size_t H5FD_mirror_xmit_encode_write | ( | unsigned char * | dest, |
const H5FD_mirror_xmit_write_t * | x | ||
) |
H5_DLL bool H5FD_mirror_xmit_is_close | ( | const H5FD_mirror_xmit_t * | xmit | ) |
H5_DLL bool H5FD_mirror_xmit_is_lock | ( | const H5FD_mirror_xmit_lock_t * | xmit | ) |
H5_DLL bool H5FD_mirror_xmit_is_open | ( | const H5FD_mirror_xmit_open_t * | xmit | ) |
H5_DLL bool H5FD_mirror_xmit_is_reply | ( | const H5FD_mirror_xmit_reply_t * | xmit | ) |
H5_DLL bool H5FD_mirror_xmit_is_set_eoa | ( | const H5FD_mirror_xmit_eoa_t * | xmit | ) |
H5_DLL bool H5FD_mirror_xmit_is_write | ( | const H5FD_mirror_xmit_write_t * | xmit | ) |
H5_DLL bool H5FD_mirror_xmit_is_xmit | ( | const H5FD_mirror_xmit_t * | xmit | ) |