HomeSort by: relevance | last modified time | path
    Searched defs:Vmo (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_utils.cc 46 _zx_handle_close(Vmo);
58 // Resize the VMO to ensure there's sufficient space for the data.
59 zx_status_t Status = _zx_vmo_set_size(Vmo, Offset + TotalBytes);
61 Report("Failed to resize VMO: %s\n", _zx_status_get_string(Status));
66 // Write the data into VMO.
67 zx_status_t Status = _zx_vmo_write(Vmo, Begin, Offset, TotalBytes);
76 // Nothing to do here since WriteAll writes directly into the VMO.
80 // Create VMO to hold the profile data.
81 zx_handle_t Vmo;
82 zx_status_t Status = _zx_vmo_create(0, 0, &Vmo);
    [all...]
xray_utils.h 33 LogWriter(zx_handle_t Vmo) : Vmo(Vmo) {}
51 zx_handle_t Vmo = ZX_HANDLE_INVALID;
xray_allocator.h 43 zx_handle_t Vmo;
44 zx_status_t Status = _zx_vmo_create(RoundedSize, 0, &Vmo);
47 Report("XRay Profiling: Failed to create VMO of size %zu: %s\n",
54 Vmo, 0, sizeof(T), &B);
55 _zx_handle_close(Vmo);
94 zx_handle_t Vmo;
95 zx_status_t Status = _zx_vmo_create(RoundedSize, 0, &Vmo);
98 Report("XRay Profiling: Failed to create VMO of size %zu: %s\n", S,
104 ZX_VM_PERM_READ | ZX_VM_PERM_WRITE, 0, Vmo, 0, S, &B);
105 _zx_handle_close(Vmo);
    [all...]

Completed in 12 milliseconds