| /OK3568_Linux_fs/kernel/drivers/s390/char/ |
| H A D | raw3270.c | 46 struct raw3270_view *view; /* Active view. */ member 239 __raw3270_start(struct raw3270 *rp, struct raw3270_view *view, in __raw3270_start() argument 242 rq->view = view; in __raw3270_start() 243 raw3270_get_view(view); in __raw3270_start() 250 raw3270_put_view(view); in __raw3270_start() 259 raw3270_view_active(struct raw3270_view *view) in raw3270_view_active() argument 261 struct raw3270 *rp = view->dev; in raw3270_view_active() 263 return rp && rp->view == view && in raw3270_view_active() 268 raw3270_start(struct raw3270_view *view, struct raw3270_request *rq) in raw3270_start() argument 274 spin_lock_irqsave(get_ccwdev_lock(view->dev->cdev), flags); in raw3270_start() [all …]
|
| H A D | con3270.c | 42 struct raw3270_view view; member 97 codepage_convert(cp->view.ascebc, cp->status->string + 24, 7); in con3270_update_status() 113 raw3270_buffer_address(cp->view.dev, cp->status->string + 1, in con3270_create_status() 114 cp->view.cols * (cp->view.rows - 1)); in con3270_create_status() 115 raw3270_buffer_address(cp->view.dev, cp->status->string + 21, in con3270_create_status() 116 cp->view.cols * cp->view.rows - 8); in con3270_create_status() 118 codepage_convert(cp->view.ascebc, cp->status->string + 8, 12); in con3270_create_status() 119 codepage_convert(cp->view.ascebc, cp->status->string + 24, 7); in con3270_create_status() 135 raw3270_buffer_address(cp->view.dev, s->string + s->len - 3, in con3270_update_string() 136 cp->view.cols * (nr + 1)); in con3270_update_string() [all …]
|
| H A D | tty3270.c | 64 struct raw3270_view view; member 147 if (count > tp->view.cols * 2 - 11) in tty3270_update_prompt() 148 count = tp->view.cols * 2 - 11; in tty3270_update_prompt() 152 if (count < tp->view.cols * 2 - 11) { in tty3270_update_prompt() 155 off = tp->view.cols * tp->view.rows - 9; in tty3270_update_prompt() 156 raw3270_buffer_address(tp->view.dev, line->string+count+8, off); in tty3270_update_prompt() 174 sizeof(blueprint) + tp->view.cols * 2 - 9); in tty3270_create_prompt() 181 offset = tp->view.cols * (tp->view.rows - 2); in tty3270_create_prompt() 182 raw3270_buffer_address(tp->view.dev, line->string + 1, offset); in tty3270_create_prompt() 183 offset = tp->view.cols * tp->view.rows - 9; in tty3270_create_prompt() [all …]
|
| H A D | fs3270.c | 33 struct raw3270_view view; member 64 fs3270_do_io(struct raw3270_view *view, struct raw3270_request *rq) in fs3270_do_io() argument 69 fp = (struct fs3270 *) view; in fs3270_do_io() 81 rc = raw3270_start(view, rq); in fs3270_do_io() 98 fp = (struct fs3270 *) rq->view; in fs3270_reset_callback() 108 fp = (struct fs3270 *) rq->view; in fs3270_restore_callback() 119 fs3270_activate(struct raw3270_view *view) in fs3270_activate() argument 125 fp = (struct fs3270 *) view; in fs3270_activate() 152 rc = fp->init->rc = raw3270_start_locked(view, fp->init); in fs3270_activate() 168 fp = (struct fs3270 *) rq->view; in fs3270_save_callback() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/vmwgfx/ |
| H A D | vmwgfx_so.c | 128 struct vmw_view *view = vmw_view(res); in vmw_view_commit_notify() local 133 struct vmw_surface *srf = vmw_res_to_srf(view->srf); in vmw_view_commit_notify() 135 list_add_tail(&view->srf_head, &srf->view_list); in vmw_view_commit_notify() 136 vmw_cotable_add_resource(view->cotable, &view->cotable_head); in vmw_view_commit_notify() 137 view->committed = true; in vmw_view_commit_notify() 138 res->id = view->view_id; in vmw_view_commit_notify() 141 list_del_init(&view->cotable_head); in vmw_view_commit_notify() 142 list_del_init(&view->srf_head); in vmw_view_commit_notify() 143 view->committed = false; in vmw_view_commit_notify() 159 struct vmw_view *view = vmw_view(res); in vmw_view_create() local [all …]
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_10.0.2/ |
| H A D | 0067-compositor-Fix-damage-tracking-error-when-overlapped.patch | 30 @@ -1113,6 +1113,22 @@ weston_view_move_to_plane(struct weston_view *view, 31 weston_surface_damage(view->surface); 50 /** Inflict damage on the plane where the view is visible. 52 * \param view The view that causes the damage. 53 @@ -1137,9 +1153,7 @@ weston_view_damage_below(struct weston_view *view) 55 pixman_region32_subtract(&damage, &view->transform.boundingbox, 56 &view->clip); 57 - if (view->plane) 58 - pixman_region32_union(&view->plane->damage, 59 - &view->plane->damage, &damage); [all …]
|
| H A D | 0007-HACK-xdg-shell-Support-setting-window-position.patch | 22 @@ -4243,6 +4243,12 @@ weston_view_set_initial_position(struct weston_view *view, 26 + if (view->has_position) { 27 + weston_view_set_position(view, 28 + view->geometry.x, view->geometry.y); 74 + struct weston_desktop_view *view; 76 + wl_list_for_each(view, &surface->view_list, link) 77 + weston_view_set_position(view->view, x, y); 110 weston_view_set_position(struct weston_view *view, float x, float y) 112 + view->has_position = true; 114 if (view->geometry.x == x && view->geometry.y == y)
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_11.0.1/ |
| H A D | 0014-compositor-Fix-damage-tracking-error-when-overlapped.patch | 30 @@ -1069,6 +1069,22 @@ weston_view_move_to_plane(struct weston_view *view, 31 weston_surface_damage(view->surface); 50 /** Inflict damage on the plane where the view is visible. 52 * \param view The view that causes the damage. 53 @@ -1093,9 +1109,7 @@ weston_view_damage_below(struct weston_view *view) 55 pixman_region32_subtract(&damage, &view->transform.boundingbox, 56 &view->clip); 57 - if (view->plane) 58 - pixman_region32_union(&view->plane->damage, 59 - &view->plane->damage, &damage); [all …]
|
| H A D | 0008-HACK-xdg-shell-Support-setting-window-position.patch | 22 @@ -3821,6 +3821,12 @@ weston_view_set_initial_position(struct weston_view *view, 26 + if (view->has_position) { 27 + weston_view_set_position(view, 28 + view->geometry.x, view->geometry.y); 69 weston_view_set_position(struct weston_view *view, float x, float y) 71 + view->has_position = true; 73 if (view->geometry.x == x && view->geometry.y == y) 88 + struct weston_desktop_view *view; 90 + wl_list_for_each(view, &surface->view_list, link) 91 + weston_view_set_position(view->view, x, y);
|
| /OK3568_Linux_fs/buildroot/package/weston/ |
| H A D | 0014-compositor-Fix-damage-tracking-error-when-overlapped.patch | 30 @@ -1069,6 +1069,22 @@ weston_view_move_to_plane(struct weston_view *view, 31 weston_surface_damage(view->surface); 50 /** Inflict damage on the plane where the view is visible. 52 * \param view The view that causes the damage. 53 @@ -1093,9 +1109,7 @@ weston_view_damage_below(struct weston_view *view) 55 pixman_region32_subtract(&damage, &view->transform.boundingbox, 56 &view->clip); 57 - if (view->plane) 58 - pixman_region32_union(&view->plane->damage, 59 - &view->plane->damage, &damage); [all …]
|
| H A D | 0008-HACK-xdg-shell-Support-setting-window-position.patch | 22 @@ -3821,6 +3821,12 @@ weston_view_set_initial_position(struct weston_view *view, 26 + if (view->has_position) { 27 + weston_view_set_position(view, 28 + view->geometry.x, view->geometry.y); 69 weston_view_set_position(struct weston_view *view, float x, float y) 71 + view->has_position = true; 73 if (view->geometry.x == x && view->geometry.y == y) 88 + struct weston_desktop_view *view; 90 + wl_list_for_each(view, &surface->view_list, link) 91 + weston_view_set_position(view->view, x, y);
|
| /OK3568_Linux_fs/kernel/drivers/usb/phy/ |
| H A D | phy-ulpi-viewport.c | 22 static int ulpi_viewport_wait(void __iomem *view, u32 mask) in ulpi_viewport_wait() argument 26 return readl_poll_timeout_atomic(view, val, !(val & mask), 1, 2000); in ulpi_viewport_wait() 32 void __iomem *view = otg->io_priv; in ulpi_viewport_read() local 34 writel(ULPI_VIEW_WAKEUP | ULPI_VIEW_WRITE, view); in ulpi_viewport_read() 35 ret = ulpi_viewport_wait(view, ULPI_VIEW_WAKEUP); in ulpi_viewport_read() 39 writel(ULPI_VIEW_RUN | ULPI_VIEW_READ | ULPI_VIEW_ADDR(reg), view); in ulpi_viewport_read() 40 ret = ulpi_viewport_wait(view, ULPI_VIEW_RUN); in ulpi_viewport_read() 44 return ULPI_VIEW_DATA_READ(readl(view)); in ulpi_viewport_read() 50 void __iomem *view = otg->io_priv; in ulpi_viewport_write() local 52 writel(ULPI_VIEW_WAKEUP | ULPI_VIEW_WRITE, view); in ulpi_viewport_write() [all …]
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/keyboard/keyboard/ |
| H A D | pinyinbar.cpp | 20 QListView *view = new QListView; in PinyinBar() local 21 view->setSpacing(0); in PinyinBar() 23 view->setModel(m_model); in PinyinBar() 24 phLayout->addWidget(view); in PinyinBar() 25 view->setFocusPolicy(Qt::NoFocus); in PinyinBar() 26 view->setFlow(QListView::LeftToRight); in PinyinBar() 27 view->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); in PinyinBar() 28 view->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); in PinyinBar() 29 view->setEditTriggers(QListView::NoEditTriggers); in PinyinBar() 30 view->setFixedHeight(30); in PinyinBar() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/is_valid/ |
| H A D | has_spikes.hpp | 107 view_type const view(range); in apply() local 109 iterator prev = boost::begin(view); in apply() 111 iterator cur = find_different_from_first(prev, boost::end(view)); in apply() 112 if (cur == boost::end(view)) in apply() 119 iterator next = find_different_from_first(cur, boost::end(view)); in apply() 120 if (next == boost::end(view)) in apply() 127 while (next != boost::end(view)) in apply() 137 next = find_different_from_first(cur, boost::end(view)); in apply() 140 if (geometry::equals(range::front(view), range::back(view))) in apply() 142 iterator cur = boost::begin(view); in apply() [all …]
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/simplebrowser/ |
| H A D | tabwidget.cpp | 83 WebView *view = webView(index); in handleCurrentChanged() local 84 if (!view->url().isEmpty()) in handleCurrentChanged() 85 view->setFocus(); in handleCurrentChanged() 86 emit titleChanged(view->title()); in handleCurrentChanged() 87 emit loadProgress(view->loadProgress()); in handleCurrentChanged() 88 emit urlChanged(view->url()); in handleCurrentChanged() 89 emit favIconChanged(view->favIcon()); in handleCurrentChanged() 90 …emit webActionEnabledChanged(QWebEnginePage::Back, view->isWebActionEnabled(QWebEnginePage::Back)); in handleCurrentChanged() 91 …emit webActionEnabledChanged(QWebEnginePage::Forward, view->isWebActionEnabled(QWebEnginePage::For… in handleCurrentChanged() 92 …emit webActionEnabledChanged(QWebEnginePage::Stop, view->isWebActionEnabled(QWebEnginePage::Stop)); in handleCurrentChanged() [all …]
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/imxwayland/simplebrowser/ |
| H A D | tabwidget.cpp | 83 WebView *view = webView(index); in handleCurrentChanged() local 84 if (!view->url().isEmpty()) in handleCurrentChanged() 85 view->setFocus(); in handleCurrentChanged() 86 emit titleChanged(view->title()); in handleCurrentChanged() 87 emit loadProgress(view->loadProgress()); in handleCurrentChanged() 88 emit urlChanged(view->url()); in handleCurrentChanged() 89 emit favIconChanged(view->favIcon()); in handleCurrentChanged() 90 …emit webActionEnabledChanged(QWebEnginePage::Back, view->isWebActionEnabled(QWebEnginePage::Back)); in handleCurrentChanged() 91 …emit webActionEnabledChanged(QWebEnginePage::Forward, view->isWebActionEnabled(QWebEnginePage::For… in handleCurrentChanged() 92 …emit webActionEnabledChanged(QWebEnginePage::Stop, view->isWebActionEnabled(QWebEnginePage::Stop)); in handleCurrentChanged() [all …]
|
| /OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/simplebrowser/ |
| H A D | tabwidget.cpp | 92 WebView *view = webView(index); in handleCurrentChanged() local 93 if (!view->url().isEmpty()) in handleCurrentChanged() 94 view->setFocus(); in handleCurrentChanged() 95 emit titleChanged(view->title()); in handleCurrentChanged() 96 emit loadProgress(view->loadProgress()); in handleCurrentChanged() 97 emit urlChanged(view->url()); in handleCurrentChanged() 98 emit favIconChanged(view->favIcon()); in handleCurrentChanged() 99 …emit webActionEnabledChanged(QWebEnginePage::Back, view->isWebActionEnabled(QWebEnginePage::Back)); in handleCurrentChanged() 100 …emit webActionEnabledChanged(QWebEnginePage::Forward, view->isWebActionEnabled(QWebEnginePage::For… in handleCurrentChanged() 101 …emit webActionEnabledChanged(QWebEnginePage::Stop, view->isWebActionEnabled(QWebEnginePage::Stop)); in handleCurrentChanged() [all …]
|
| /OK3568_Linux_fs/app/forlinx/forlinx_qt/simplebrowser/ |
| H A D | tabwidget.cpp | 92 WebView *view = webView(index); in handleCurrentChanged() local 93 if (!view->url().isEmpty()) in handleCurrentChanged() 94 view->setFocus(); in handleCurrentChanged() 95 emit titleChanged(view->title()); in handleCurrentChanged() 96 emit loadProgress(view->loadProgress()); in handleCurrentChanged() 97 emit urlChanged(view->url()); in handleCurrentChanged() 98 emit favIconChanged(view->favIcon()); in handleCurrentChanged() 99 …emit webActionEnabledChanged(QWebEnginePage::Back, view->isWebActionEnabled(QWebEnginePage::Back)); in handleCurrentChanged() 100 …emit webActionEnabledChanged(QWebEnginePage::Forward, view->isWebActionEnabled(QWebEnginePage::For… in handleCurrentChanged() 101 …emit webActionEnabledChanged(QWebEnginePage::Stop, view->isWebActionEnabled(QWebEnginePage::Stop)); in handleCurrentChanged() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/dispnv50/ |
| H A D | head.c | 67 if (asyh->set.view ) head->func->view (head, asyh); in nv50_head_flush_set() 151 asyh->view.iW = umode->hdisplay; in nv50_head_atomic_check_view() 152 asyh->view.iH = umode_vdisplay; in nv50_head_atomic_check_view() 155 asyh->view.oW = omode_hdisplay; in nv50_head_atomic_check_view() 156 asyh->view.oH = omode_vdisplay; in nv50_head_atomic_check_view() 167 u32 r = (asyh->view.oH << 19) / asyh->view.oW; in nv50_head_atomic_check_view() 170 asyh->view.oW -= (bX * 2); in nv50_head_atomic_check_view() 171 if (bY) asyh->view.oH -= (bY * 2); in nv50_head_atomic_check_view() 172 else asyh->view.oH = ((asyh->view.oW * r) + (r / 2)) >> 19; in nv50_head_atomic_check_view() 174 asyh->view.oW -= (asyh->view.oW >> 4) + 32; in nv50_head_atomic_check_view() [all …]
|
| /OK3568_Linux_fs/u-boot/lib/ |
| H A D | asm-offsets.s | |
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/selftests/ |
| H A D | i915_vma.c | 65 const struct i915_ggtt_view *view) in checked_vma_instance() argument 70 vma = i915_vma_instance(obj, vm, view); in checked_vma_instance() 87 if (i915_vma_compare(vma, vm, view)) { in checked_vma_instance() 518 struct i915_ggtt_view view; in igt_vma_rotate_remap() local 526 view.type = *t; in igt_vma_rotate_remap() 527 view.rotated.plane[0] = *a; in igt_vma_rotate_remap() 528 view.rotated.plane[1] = *b; in igt_vma_rotate_remap() 530 for_each_prime_number_from(view.rotated.plane[0].offset, 0, max_offset) { in igt_vma_rotate_remap() 531 for_each_prime_number_from(view.rotated.plane[1].offset, 0, max_offset) { in igt_vma_rotate_remap() 535 vma = checked_vma_instance(obj, vm, &view); in igt_vma_rotate_remap() [all …]
|
| /OK3568_Linux_fs/app/forlinx/matrix-browser/ |
| H A D | main.cpp | 71 QWebEngineView view; in main() local 72 QWebEngineView::connect(&view, SIGNAL(loadFinished(bool)), &view, SLOT(showMaximized())); in main() 73 view.move(0,0); in main() 74 view.setContextMenuPolicy(Qt::NoContextMenu); in main() 75 view.setWindowFlags(Qt::FramelessWindowHint); in main() 80 view.load(commandLineUrlArgument()); in main()
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/matrix-brower/ |
| H A D | matrixbrowerwidget.cpp | 30 QWebView *view= new QWebView; in MatrixBrowerWidget() local 31 connect(view, &QWebView::loadFinished, [=, &view](){ in MatrixBrowerWidget() 32 view->show(); in MatrixBrowerWidget() 34 view->load(commandLineUrlArgument()); in MatrixBrowerWidget() 35 view->setContextMenuPolicy(Qt::NoContextMenu); in MatrixBrowerWidget() 36 hLayout->addWidget(view); in MatrixBrowerWidget()
|
| /OK3568_Linux_fs/kernel/security/apparmor/ |
| H A D | policy_ns.c | 37 bool aa_ns_visible(struct aa_ns *curr, struct aa_ns *view, bool subns) in aa_ns_visible() argument 39 if (curr == view) in aa_ns_visible() 45 for ( ; view; view = view->parent) { in aa_ns_visible() 46 if (view->parent == curr) in aa_ns_visible() 61 const char *aa_ns_name(struct aa_ns *curr, struct aa_ns *view, bool subns) in aa_ns_name() argument 64 if (curr == view) in aa_ns_name() 67 if (aa_ns_visible(curr, view, subns)) { in aa_ns_name() 74 return view->base.hname + strlen(curr->base.hname) + 2; in aa_ns_name() 200 struct aa_ns *__aa_lookupn_ns(struct aa_ns *view, const char *hname, size_t n) in __aa_lookupn_ns() argument 202 struct aa_ns *ns = view; in __aa_lookupn_ns() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/positioning/geoflickr/ |
| H A D | qmllocationflickr.cpp | 59 QQuickView view; in main() local 60 view.setSource(QUrl(mainQmlApp)); in main() 61 view.setResizeMode(QQuickView::SizeRootObjectToView); in main() 64 QObject::connect(view.engine(), SIGNAL(quit()), qApp, SLOT(quit())); in main() 65 view.setGeometry(QRect(100, 100, 360, 640)); in main() 66 view.show(); in main()
|