HomeSort by relevance Sort by last modified time
    Searched refs:vsoc (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /device/google/cuttlefish_common/common/vsoc/lib/
ril_region_view.h 20 #include "common/vsoc/lib/typed_region_view.h"
21 #include "common/vsoc/shm/ril_layout.h"
23 namespace vsoc { namespace
26 : public vsoc::TypedRegionView<
28 vsoc::layout::ril::RilLayout> {
34 } // namespace vsoc
audio_data_layout.cpp 18 #include "common/vsoc/shm/audio_data_layout.h"
20 namespace vsoc { namespace
29 } // namespace vsoc
input_events_layout.cpp 18 #include "common/vsoc/shm/input_events_layout.h"
20 namespace vsoc { namespace
29 } // namespace vsoc
ril_layout.cpp 16 #include "common/vsoc/shm/ril_layout.h"
18 namespace vsoc { namespace
25 } // namespace vsoc
screen_layout.cpp 16 #include "common/vsoc/shm/screen_layout.h"
18 namespace vsoc { namespace
27 } // namespace vsoc
socket_forward_layout.cpp 17 #include "common/vsoc/shm/socket_forward_layout.h"
19 const char* vsoc::layout::socket_forward::SocketForwardLayout::region_name =
wifi_exchange_layout.cpp 16 #include "common/vsoc/shm/wifi_exchange_layout.h"
18 namespace vsoc { namespace
24 } // namespace vsoc
compat.h 23 namespace vsoc { namespace
gralloc_layout.cpp 18 #include "common/vsoc/shm/gralloc_layout.h"
20 namespace vsoc { namespace
30 } // vsoc
audio_data_region_view.h 22 #include "common/vsoc/lib/typed_region_view.h"
23 #include "common/vsoc/shm/audio_data_layout.h"
25 namespace vsoc { namespace
29 : public vsoc::TypedRegionView<
31 vsoc::layout::audio_data::AudioDataLayout> {
39 } // namespace vsoc
graphics_common.h 18 #include "common/vsoc/shm/graphics.h"
20 namespace vsoc { namespace
28 } // vsoc
wifi_exchange_view.h 21 #include "common/vsoc/lib/typed_region_view.h"
22 #include "common/vsoc/shm/wifi_exchange_layout.h"
25 namespace vsoc { namespace
29 : public vsoc::TypedRegionView<
31 vsoc::layout::wifi::WifiExchangeLayout> {
35 sizeof(vsoc::layout::wifi::WifiExchangeLayout::guest_mac_address)>;
61 } // namespace vsoc
region_view.cpp 1 #include "common/vsoc/lib/region_view.h"
12 using vsoc::layout::Sides;
14 vsoc::RegionWorker::RegionWorker(RegionView* region,
20 void vsoc::RegionWorker::start() {
22 thread_ = std::thread(&vsoc::RegionWorker::Work, this);
25 void vsoc::RegionWorker::Work() {
37 vsoc::RegionWorker::~RegionWorker() {
46 vsoc::RegionView::~RegionView() {
53 bool vsoc::RegionView::Open(const char* name, const char* domain) {
54 control_ = vsoc::RegionControl::Open(name, domain)
    [all...]
screen_region_view_test.cpp 20 using vsoc::screen::ScreenRegionView;
27 auto region = ScreenRegionView::GetInstance(vsoc::GetDomain().c_str());
screen_region_view.h 20 #include "common/vsoc/lib/typed_region_view.h"
21 #include "common/vsoc/shm/graphics.h"
22 #include "common/vsoc/shm/screen_layout.h"
25 namespace vsoc { namespace
32 : public vsoc::TypedRegionView<ScreenRegionView,
33 vsoc::layout::screen::ScreenLayout> {
54 return vsoc::PixelFormatProperties<kFbPixelFormat>::bytes_per_pixel;
75 const vsoc::layout::screen::CompositionStats* stats = nullptr);
87 vsoc::layout::screen::CompositionStats* stats = nullptr);
97 static constexpr uint32_t kFbPixelFormat = vsoc::VSOC_PIXEL_FORMAT_RGBA_8888
    [all...]
input_events_region_view.h 20 #include "common/vsoc/lib/typed_region_view.h"
21 #include "common/vsoc/shm/input_events_layout.h"
24 namespace vsoc { namespace
34 : public vsoc::TypedRegionView<
36 vsoc::layout::input_events::InputEventsLayout> {
57 } // namespace vsoc
compat.cpp 17 #include "common/vsoc/lib/compat.h"
22 namespace vsoc { namespace
ril_region_view.cpp 21 #include "common/vsoc/lib/ril_region_view.h"
23 namespace vsoc { namespace
35 } // namespace vsoc
  /device/google/cuttlefish_common/guest/vsoc/lib/
region_view.cpp 16 #include "common/vsoc/lib/region_view.h"
17 #include "common/vsoc/lib/region_control.h"
19 const vsoc_signal_table_layout& vsoc::RegionView::incoming_signal_table() {
24 const vsoc_signal_table_layout& vsoc::RegionView::outgoing_signal_table() {
gralloc_region_view.h 19 #include <common/vsoc/shm/gralloc_layout.h>
20 #include <guest/vsoc/lib/manager_region_view.h>
24 namespace vsoc { namespace
27 class GrallocRegionView : public vsoc::ManagerRegionView<
29 vsoc::layout::gralloc::GrallocManagerLayout> {
32 GrallocRegionView, vsoc::layout::gralloc::GrallocManagerLayout>;
52 } // namespace vsoc
gralloc_region_view.cpp 17 #include "guest/vsoc/lib/gralloc_region_view.h"
19 #include <common/vsoc/lib/lock_guard.h>
25 using vsoc::gralloc::GrallocRegionView;
26 using vsoc::layout::gralloc::BufferEntry;
27 using vsoc::layout::gralloc::GrallocBufferLayout;
28 using vsoc::layout::gralloc::GrallocManagerLayout;
44 if (!vsoc::ManagerRegionView<GrallocRegionView, GrallocManagerLayout>::Open()) {
47 std::shared_ptr<vsoc::RegionControl> managed_region =
48 vsoc::RegionControl::Open(
68 vsoc::LockGuard<vsoc::layout::GuestLock>(&data()->new_buffer_lock)
    [all...]
  /device/google/cuttlefish_common/host/vsoc/lib/
region_view.cpp 16 #include "common/vsoc/lib/region_view.h"
17 #include "common/vsoc/lib/region_control.h"
19 const vsoc_signal_table_layout& vsoc::RegionView::incoming_signal_table() {
24 const vsoc_signal_table_layout& vsoc::RegionView::outgoing_signal_table() {
gralloc_buffer_region_view.h 18 #include "common/vsoc/lib/typed_region_view.h"
19 #include "common/vsoc/shm/gralloc_layout.h"
23 namespace vsoc { namespace
35 : vsoc::TypedRegionView<
37 vsoc::layout::gralloc::GrallocBufferLayout> {
47 } // namespace vsoc
  /device/google/cuttlefish_common/host/commands/launch/
screen_region_handler.cc 19 #include "common/vsoc/lib/screen_region_view.h"
25 vsoc::screen::ScreenRegionView::GetInstance(vsoc::GetDomain().c_str());
26 auto config = vsoc::CuttlefishConfig::Get();
  /device/google/cuttlefish_common/common/vsoc/shm/
audio_data_layout.h 18 #include "common/vsoc/shm/base.h"
19 #include "common/vsoc/shm/circqueue.h"
23 namespace vsoc { namespace
38 } // namespace vsoc

Completed in 207 milliseconds

1 2 3 4 5