Home | History | Annotate | Download | only in include

Lines Matching refs:function

16 function RFB(defaults) {
153 ['onUpdateState', 'rw', 'func', function() { },
155 ['onPasswordRequired', 'rw', 'func', function() { },
157 ['onClipboard', 'rw', 'func', function() { },
159 ['onBell', 'rw', 'func', function() { },
161 ['onFBUReceive', 'rw', 'func', function() { },
163 ['onFBUComplete', 'rw', 'func', function() { },
167 ['updateState', 'rw', 'func', function() { },
169 ['clipboardReceive', 'rw', 'func', function() { },
175 that.set_local_cursor = function(cursor) {
188 that.get_display = function() { return display; };
190 that.get_keyboard = function() { return keyboard; };
192 that.get_mouse = function() { return mouse; };
202 function constructor() {
229 ws.on('open', function() {
236 ws.on('close', function(e) {
250 ws.on('error', function(e) {
279 function connect() {
300 init_vars = function() {
328 print_stats = function() {
372 updateState = function(state, statusMsg) {
455 connTimer = setTimeout(function () {
469 disconnTimer = setTimeout(function () {
492 setTimeout(function() { updateState('disconnected'); }, 50);
512 fail = function(msg) {
517 handle_message = function() {
535 function () {
551 function genDES(password, challenge) {
559 function flushClient() {
563 setTimeout(function() {
575 checkEvents = function() {
589 keyPress = function(keysym, down) {
599 mouseButton = function(x, y, down, bmask) {
626 mouseMove = function(x, y) {
655 init_msg = function() {
687 sendTimer = setInterval(function() {
897 normal_msg = function() {
956 framebufferUpdate = function() {
1074 encHandlers.RAW = function display_raw() {
1102 encHandlers.COPYRECT = function display_copy_rect() {
1116 encHandlers.RRE = function display_rre() {
1149 encHandlers.HEXTILE = function display_hextile() {
1282 getTightCLength = function (arr) {
1296 function display_tight(isTightPNG) {
1310 var checksum = function(data) {
1319 var decompress = function(data) {
1337 var handlePalette = function() {
1414 var handleCopy = function() {
1536 extract_data_uri = function(arr) {
1545 scan_tight_imgQ = function() {
1564 encHandlers.TIGHT = function () { return display_tight(false); };
1565 encHandlers.TIGHT_PNG = function () { return display_tight(true); };
1567 encHandlers.last_rect = function last_rect() {
1574 encHandlers.DesktopSize = function set_desktopsize() {
1590 encHandlers.Cursor = function set_cursor() {
1617 encHandlers.JPEG_quality_lo = function set_jpeg_quality() {
1621 encHandlers.compress_lo = function set_compress_level() {
1629 pixelFormat = function() {
1656 clientEncodings = function() {
1681 fbUpdateRequest = function(incremental, x, y, xw, yw) {
1699 fbUpdateRequests = function() {
1718 keyEvent = function(keysym, down) {
1729 pointerEvent = function(x, y) {
1741 clientCutText = function(text) {
1763 that.connect = function(host, port, password, path) {
1780 that.disconnect = function() {
1786 that.sendPassword = function(passwd) {
1792 that.sendCtrlAltDel = function() {
1808 that.sendKey = function(code, down) {
1823 that.clipboardPasteFrom = function(text) {
1831 that.testMode = function(override_send) {
1835 checkEvents = function () { /* Stub Out */ };
1836 that.connect = function(host, port, password) {