Searched defs:cursor_shape (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dscreen_capturer_mock_objects.h53 void OnCursorShapeChanged(MouseCursorShape* cursor_shape) OVERRIDE {
54 OnCursorShapeChangedPtr(cursor_shape); variable
55 delete cursor_shape;
59 void(MouseCursorShape* cursor_shape));
/external/chromium_org/remoting/protocol/
H A Dhost_control_dispatcher.cc64 const CursorShapeInfo& cursor_shape) {
66 message.mutable_cursor_shape()->CopyFrom(cursor_shape);
63 SetCursorShape( const CursorShapeInfo& cursor_shape) argument
H A Dclient_control_dispatcher.cc26 bool CursorShapeIsValid(const CursorShapeInfo& cursor_shape) { argument
27 if (!cursor_shape.has_data() ||
28 !cursor_shape.has_width() ||
29 !cursor_shape.has_height() ||
30 !cursor_shape.has_hotspot_x() ||
31 !cursor_shape.has_hotspot_y()) {
36 int width = cursor_shape.width();
37 int height = cursor_shape.height();
49 if (cursor_shape.data().size() < cursor_total_bytes) {
52 << cursor_shape
[all...]
/external/chromium_org/remoting/client/
H A Dchromoting_client.cc114 const protocol::CursorShapeInfo& cursor_shape) {
117 user_interface_->GetCursorShapeStub()->SetCursorShape(cursor_shape);
113 SetCursorShape( const protocol::CursorShapeInfo& cursor_shape) argument
/external/chromium_org/remoting/host/
H A Dvideo_scheduler.cc360 scoped_ptr<protocol::CursorShapeInfo> cursor_shape) {
366 cursor_stub_->SetCursorShape(*cursor_shape);
359 SendCursorShape( scoped_ptr<protocol::CursorShapeInfo> cursor_shape) argument
H A Dvideo_scheduler_unittest.cc149 void SetCursorShape(const protocol::CursorShapeInfo& cursor_shape);
253 const protocol::CursorShapeInfo& cursor_shape) {
254 EXPECT_TRUE(cursor_shape.has_width());
255 EXPECT_EQ(kCursorWidth, cursor_shape.width());
256 EXPECT_TRUE(cursor_shape.has_height());
257 EXPECT_EQ(kCursorHeight, cursor_shape.height());
258 EXPECT_TRUE(cursor_shape.has_hotspot_x());
259 EXPECT_EQ(kHotspotX, cursor_shape.hotspot_x());
260 EXPECT_TRUE(cursor_shape.has_hotspot_y());
261 EXPECT_EQ(kHotspotY, cursor_shape
252 SetCursorShape( const protocol::CursorShapeInfo& cursor_shape) argument
[all...]
/external/chromium_org/remoting/client/jni/
H A Dchromoting_jni_runtime.cc333 const protocol::CursorShapeInfo& cursor_shape) {
340 char* data = string_as_array(const_cast<std::string*>(&cursor_shape.data()));
342 cursor_shape.width() * cursor_shape.height() * kBytesPerPixel;
348 cursor_shape.width(),
349 cursor_shape.height(),
350 cursor_shape.hotspot_x(),
351 cursor_shape.hotspot_y(),
332 UpdateCursorShape( const protocol::CursorShapeInfo& cursor_shape) argument
/external/libvterm/src/
H A Dvterm_internal.h81 unsigned int cursor_shape:2; member in struct:VTermState::__anon25029
109 unsigned int cursor_shape:2; member in struct:VTermState::__anon25030::__anon25031
/external/chromium_org/remoting/client/plugin/
H A Dchromoting_instance.cc557 const protocol::CursorShapeInfo& cursor_shape) {
568 int width = cursor_shape.width();
569 int height = cursor_shape.height();
571 int hotspot_x = cursor_shape.hotspot_x();
572 int hotspot_y = cursor_shape.hotspot_y();
576 cursor_shape.data().data());
556 SetCursorShape( const protocol::CursorShapeInfo& cursor_shape) argument
/external/chromium_org/ui/base/x/
H A Dx11_util.cc166 ::Cursor GetCursor(int cursor_shape) { argument
170 std::make_pair(cursor_shape, 0));
173 it.first->second = XCreateFontCursor(display, cursor_shape);
365 ::Cursor GetXCursor(int cursor_shape) { argument
368 return cursor_cache->GetCursor(cursor_shape);

Completed in 2172 milliseconds