/external/chromium_org/remoting/protocol/ |
D | client_control_dispatcher.cc | 26 bool CursorShapeIsValid(const CursorShapeInfo& cursor_shape) { in CursorShapeIsValid() argument 27 if (!cursor_shape.has_data() || in CursorShapeIsValid() 28 !cursor_shape.has_width() || in CursorShapeIsValid() 29 !cursor_shape.has_height() || in CursorShapeIsValid() 30 !cursor_shape.has_hotspot_x() || in CursorShapeIsValid() 31 !cursor_shape.has_hotspot_y()) { in CursorShapeIsValid() 36 int width = cursor_shape.width(); in CursorShapeIsValid() 37 int height = cursor_shape.height(); in CursorShapeIsValid() 49 if (cursor_shape.data().size() < cursor_total_bytes) { in CursorShapeIsValid() 52 << cursor_shape.data().size() << " bytes"; in CursorShapeIsValid() [all …]
|
D | host_control_dispatcher.cc | 64 const CursorShapeInfo& cursor_shape) { in SetCursorShape() argument 66 message.mutable_cursor_shape()->CopyFrom(cursor_shape); in SetCursorShape()
|
D | cursor_shape_stub.h | 22 virtual void SetCursorShape(const CursorShapeInfo& cursor_shape) = 0;
|
D | host_control_dispatcher.h | 47 virtual void SetCursorShape(const CursorShapeInfo& cursor_shape) OVERRIDE;
|
D | protocol_mock_objects.h | 141 MOCK_METHOD1(SetCursorShape, void(const CursorShapeInfo& cursor_shape));
|
/external/chromium_org/remoting/host/ |
D | video_scheduler_unittest.cc | 149 void SetCursorShape(const protocol::CursorShapeInfo& cursor_shape); 253 const protocol::CursorShapeInfo& cursor_shape) { in SetCursorShape() argument 254 EXPECT_TRUE(cursor_shape.has_width()); in SetCursorShape() 255 EXPECT_EQ(kCursorWidth, cursor_shape.width()); in SetCursorShape() 256 EXPECT_TRUE(cursor_shape.has_height()); in SetCursorShape() 257 EXPECT_EQ(kCursorHeight, cursor_shape.height()); in SetCursorShape() 258 EXPECT_TRUE(cursor_shape.has_hotspot_x()); in SetCursorShape() 259 EXPECT_EQ(kHotspotX, cursor_shape.hotspot_x()); in SetCursorShape() 260 EXPECT_TRUE(cursor_shape.has_hotspot_y()); in SetCursorShape() 261 EXPECT_EQ(kHotspotY, cursor_shape.hotspot_y()); in SetCursorShape() [all …]
|
D | video_scheduler.cc | 360 scoped_ptr<protocol::CursorShapeInfo> cursor_shape) { in SendCursorShape() argument 366 cursor_stub_->SetCursorShape(*cursor_shape); in SendCursorShape()
|
D | video_scheduler.h | 165 void SendCursorShape(scoped_ptr<protocol::CursorShapeInfo> cursor_shape);
|
/external/chromium_org/third_party/webrtc/modules/desktop_capture/ |
D | screen_capturer_mock_objects.h | 53 void OnCursorShapeChanged(MouseCursorShape* cursor_shape) OVERRIDE { in OnCursorShapeChanged() argument 54 OnCursorShapeChangedPtr(cursor_shape); in OnCursorShapeChanged() 55 delete cursor_shape; in OnCursorShapeChanged() local 59 void(MouseCursorShape* cursor_shape));
|
D | screen_capturer.h | 62 virtual void OnCursorShapeChanged(MouseCursorShape* cursor_shape) = 0;
|
D | screen_capturer_mac.mm | 555 scoped_ptr<MouseCursorShape> cursor_shape(new MouseCursorShape()); 556 cursor_shape->size.set(size.width, size.height); 557 cursor_shape->hotspot.set(hotspot.x, hotspot.y); 558 cursor_shape->data.assign(cursor_src_data, cursor_src_data + data_size); 564 if (last_cursor_.size.equals(cursor_shape->size) && 565 last_cursor_.hotspot.equals(cursor_shape->hotspot) && 566 last_cursor_.data == cursor_shape->data) { 571 last_cursor_ = *cursor_shape; 573 mouse_shape_observer_->OnCursorShapeChanged(cursor_shape.release());
|
/external/chromium_org/remoting/client/jni/ |
D | chromoting_jni_runtime.cc | 333 const protocol::CursorShapeInfo& cursor_shape) { in UpdateCursorShape() argument 340 char* data = string_as_array(const_cast<std::string*>(&cursor_shape.data())); in UpdateCursorShape() 342 cursor_shape.width() * cursor_shape.height() * kBytesPerPixel; in UpdateCursorShape() 348 cursor_shape.width(), in UpdateCursorShape() 349 cursor_shape.height(), in UpdateCursorShape() 350 cursor_shape.hotspot_x(), in UpdateCursorShape() 351 cursor_shape.hotspot_y(), in UpdateCursorShape()
|
D | chromoting_jni_runtime.h | 109 void UpdateCursorShape(const protocol::CursorShapeInfo& cursor_shape);
|
/external/chromium_org/remoting/client/ |
D | chromoting_client.cc | 114 const protocol::CursorShapeInfo& cursor_shape) { in SetCursorShape() argument 117 user_interface_->GetCursorShapeStub()->SetCursorShape(cursor_shape); in SetCursorShape()
|
D | chromoting_client.h | 87 const protocol::CursorShapeInfo& cursor_shape) OVERRIDE;
|
/external/libvterm/src/ |
D | vterm_internal.h | 81 unsigned int cursor_shape:2; member 109 unsigned int cursor_shape:2; member
|
D | state.c | 500 state->saved.mode.cursor_shape = state->mode.cursor_shape; in savecursor() 511 settermprop_int (state, VTERM_PROP_CURSORSHAPE, state->saved.mode.cursor_shape); in savecursor() 1376 switch(state->mode.cursor_shape) { in request_status_string() 1595 state->mode.cursor_shape = val->number; in vterm_state_set_termprop()
|
/external/chromium_org/remoting/proto/ |
D | internal.proto | 21 optional CursorShapeInfo cursor_shape = 4; field
|
/external/chromium_org/remoting/client/plugin/ |
D | chromoting_instance.cc | 557 const protocol::CursorShapeInfo& cursor_shape) { in SetCursorShape() argument 568 int width = cursor_shape.width(); in SetCursorShape() 569 int height = cursor_shape.height(); in SetCursorShape() 571 int hotspot_x = cursor_shape.hotspot_x(); in SetCursorShape() 572 int hotspot_y = cursor_shape.hotspot_y(); in SetCursorShape() 576 cursor_shape.data().data()); in SetCursorShape()
|
D | chromoting_instance.h | 137 const protocol::CursorShapeInfo& cursor_shape) OVERRIDE;
|
/external/chromium_org/ui/base/x/ |
D | x11_util.cc | 166 ::Cursor GetCursor(int cursor_shape) { in GetCursor() argument 170 std::make_pair(cursor_shape, 0)); in GetCursor() 173 it.first->second = XCreateFontCursor(display, cursor_shape); in GetCursor() 365 ::Cursor GetXCursor(int cursor_shape) { in GetXCursor() argument 368 return cursor_cache->GetCursor(cursor_shape); in GetXCursor()
|
D | x11_util.h | 65 UI_BASE_EXPORT ::Cursor GetXCursor(int cursor_shape);
|
/external/chromium_org/remoting/test/ |
D | protocol_perftest.cc | 71 const protocol::CursorShapeInfo& cursor_shape) OVERRIDE {}; in SetCursorShape() argument
|