/external/chromium_org/remoting/protocol/ |
cursor_shape_stub.h | 22 virtual void SetCursorShape(const CursorShapeInfo& cursor_shape) = 0;
|
client_control_dispatcher.cc | 26 bool CursorShapeIsValid(const CursorShapeInfo& cursor_shape) { 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.data().size() << " bytes" [all...] |
host_control_dispatcher.h | 47 virtual void SetCursorShape(const CursorShapeInfo& cursor_shape) OVERRIDE;
|
host_control_dispatcher.cc | 64 const CursorShapeInfo& cursor_shape) { 66 message.mutable_cursor_shape()->CopyFrom(cursor_shape);
|
protocol_mock_objects.h | 141 MOCK_METHOD1(SetCursorShape, void(const CursorShapeInfo& cursor_shape));
|
/external/chromium_org/third_party/webrtc/modules/desktop_capture/ |
screen_capturer_mock_objects.h | 53 void OnCursorShapeChanged(MouseCursorShape* cursor_shape) OVERRIDE { 54 OnCursorShapeChangedPtr(cursor_shape); variable 55 delete cursor_shape; 59 void(MouseCursorShape* cursor_shape));
|
screen_capturer.h | 61 // |cursor_shape|. 62 virtual void OnCursorShapeChanged(MouseCursorShape* cursor_shape) = 0;
|
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()); [all...] |
/external/chromium_org/remoting/host/ |
video_scheduler_unittest.cc | 149 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.hotspot_y()) [all...] |
video_scheduler.h | 165 void SendCursorShape(scoped_ptr<protocol::CursorShapeInfo> cursor_shape);
|
video_scheduler.cc | 360 scoped_ptr<protocol::CursorShapeInfo> cursor_shape) { 366 cursor_stub_->SetCursorShape(*cursor_shape);
|
/external/chromium_org/remoting/client/jni/ |
chromoting_jni_runtime.cc | 333 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(),
|
chromoting_jni_runtime.h | 109 void UpdateCursorShape(const protocol::CursorShapeInfo& cursor_shape);
|
/external/chromium_org/remoting/client/ |
chromoting_client.cc | 114 const protocol::CursorShapeInfo& cursor_shape) { 117 user_interface_->GetCursorShapeStub()->SetCursorShape(cursor_shape);
|
chromoting_client.h | 87 const protocol::CursorShapeInfo& cursor_shape) OVERRIDE;
|
/external/libvterm/src/ |
vterm_internal.h | 81 unsigned int cursor_shape:2; member in struct:VTermState::__anon29640 109 unsigned int cursor_shape:2; member in struct:VTermState::__anon29641::__anon29642
|
state.c | 500 state->saved.mode.cursor_shape = state->mode.cursor_shape; 511 settermprop_int (state, VTERM_PROP_CURSORSHAPE, state->saved.mode.cursor_shape); [all...] |
/external/chromium_org/remoting/client/plugin/ |
chromoting_instance.cc | 557 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()); [all...] |
chromoting_instance.h | 137 const protocol::CursorShapeInfo& cursor_shape) OVERRIDE;
|
/external/chromium_org/ui/base/x/ |
x11_util.h | 64 // |cursor_shape| is an X font cursor shape, see XCreateFontCursor(). 65 UI_BASE_EXPORT ::Cursor GetXCursor(int cursor_shape);
|
x11_util.cc | 166 ::Cursor GetCursor(int cursor_shape) { 170 std::make_pair(cursor_shape, 0)); 173 it.first->second = XCreateFontCursor(display, cursor_shape); 365 ::Cursor GetXCursor(int cursor_shape) { 368 return cursor_cache->GetCursor(cursor_shape); [all...] |
/external/chromium_org/remoting/test/ |
protocol_perftest.cc | 71 const protocol::CursorShapeInfo& cursor_shape) OVERRIDE {};
|