• Home
  • Raw
  • Download

Lines Matching refs:RFB

16 var RFB;  variable
20 RFB = function (defaults) { class
146 Object.keys(RFB.encodingHandlers).forEach(function (encName) {
147 this._encHandlers[encName] = RFB.encodingHandlers[encName].bind(this);
225 RFB.prototype = { class
255 arr = arr.concat(RFB.messages.keyEvent(0xFFE3, 1)); // Control
256 arr = arr.concat(RFB.messages.keyEvent(0xFFE9, 1)); // Alt
257 arr = arr.concat(RFB.messages.keyEvent(0xFFFF, 1)); // Delete
258 arr = arr.concat(RFB.messages.keyEvent(0xFFFF, 0)); // Delete
259 arr = arr.concat(RFB.messages.keyEvent(0xFFE9, 0)); // Alt
260 arr = arr.concat(RFB.messages.keyEvent(0xFFE3, 0)); // Control
290 arr = arr.concat(RFB.messages.keyEvent(code, down ? 1 : 0));
293 arr = arr.concat(RFB.messages.keyEvent(code, 1));
294 arr = arr.concat(RFB.messages.keyEvent(code, 0));
301 this._sock.send(RFB.messages.clientCutText(text));
546 this._sock.send(RFB.messages.keyEvent(keysym, down));
571RFB.messages.pointerEvent(this._display.absX(x), this._display.absY(y), this._mouse_buttonMask));
591RFB.messages.pointerEvent(this._display.absX(x), this._display.absY(y), this._mouse_buttonMask));
718 var response = RFB.genDES(this._rfb_password, challenge);
954 var response = RFB.messages.pixelFormat(this._fb_Bpp, this._fb_depth, this._true_color);
956RFB.messages.clientEncodings(this._encodings, this._local_cursor, this._true_color));
958 RFB.messages.fbUpdateRequests(this._display.getCleanDirtyReset(),
1067 … this._sock.send(RFB.messages.fbUpdateRequests(this._display.getCleanDirtyReset(),
1189 Util.make_properties(RFB, [
1215 RFB.prototype.set_local_cursor = function (cursor) {
1227 RFB.prototype.get_display = function () { return this._display; };
1228 RFB.prototype.get_keyboard = function () { return this._keyboard; };
1229 RFB.prototype.get_mouse = function () { return this._mouse; };
1232 RFB.messages = {
1322 arr = arr.concat(RFB.messages.fbUpdateRequest(1, cb.x, cb.y, w, h));
1330 arr = arr.concat(RFB.messages.fbUpdateRequest(0, db.x, db.y, w, h));
1351 RFB.genDES = function (password, challenge) {
1359 RFB.extract_data_uri = function (arr) {
1363 RFB.encodingHandlers = {
1666 … clength = RFB.encodingHandlers.getTightCLength(this._sock.rQslice(3 + paletteSize,
1706 clength = RFB.encodingHandlers.getTightCLength(this._sock.rQslice(1, 4));
1788 clength = RFB.encodingHandlers.getTightCLength(this._sock.rQslice(1, 4));
1796 RFB.extract_data_uri(this._sock.rQshiftBytes(clength[1]));