跳转至

zx_vmo_get_size

SUMMARY

Read the current size of a VMO object.

DECLARATION

#include <zircon/syscalls.h>

zx_status_t zx_vmo_get_size(zx_handle_t handle, uint64_t* size);

DESCRIPTION

zx_vmo_get_size() returns the current size of the virtual memory object (VMO).

RIGHTS

TODO(fxbug.dev/32253)

RETURN VALUE

zx_vmo_get_size() returns ZX_OK on success. In the event of failure, a negative error value is returned.

ERRORS

ZX_ERR_BAD_HANDLE handle is not a valid handle.

ZX_ERR_WRONG_TYPE handle is not a VMO handle.

ZX_ERR_INVALID_ARGS size is an invalid pointer or NULL.

SEE ALSO

  • [zx_vmo_create()]
  • [zx_vmo_create_child()]
  • [zx_vmo_op_range()]
  • [zx_vmo_read()]
  • [zx_vmo_set_size()]
  • [zx_vmo_write()]

zx_vmo_create()zx_vmo_create_child()zx_vmo_op_range()zx_vmo_read()zx_vmo_set_size()zx_vmo_write()


最后更新: 2022 年 12 月 31 日(Saturday) 21:07 CST