Lines Matching refs:desc

705 				this.file.loadPatchDescriptor(mxUtils.bind(this, function(desc)  argument
718 this.catchup(desc, success, error, abort);
736 this.file.loadDescriptor(mxUtils.bind(this, function(desc) argument
738 if (desc != null)
741 this.file.setDescriptorRevisionId(desc, this.file.getCurrentRevisionId());
742 this.updateDescriptor(desc);
760 DrawioFileSync.prototype.updateDescriptor = function(desc) argument
762 this.file.setDescriptor(desc);
767 DrawioFileSync.prototype.p2pCatchup = function(data, from, to, id, desc, success, error, abort) argument
769 if (desc != null && (abort == null || !abort()))
771 var etag = this.file.getDescriptorRevisionId(desc);
783 var secret = this.file.getDescriptorSecret(desc);
837 this.merge(temp, checksum, desc, success, error, abort);
860 DrawioFileSync.prototype.catchup = function(desc, success, error, abort) argument
862 if (desc != null && (abort == null || !abort()))
864 var etag = this.file.getDescriptorRevisionId(desc);
869 this.file.patchDescriptor(this.file.getDescriptor(), desc);
885 var secret = this.file.getDescriptorSecret(desc);
1007 this.merge(temp, checksum, desc, success, error, abort);
1071 DrawioFileSync.prototype.merge = function(patches, checksum, desc, success, error, abort) argument
1086 var etag = this.file.getDescriptorRevisionId(desc);
1102 'etag', this.file.getDescriptorEtag(desc),
1153 this.file.patchDescriptor(this.file.getDescriptor(), desc);
1478 DrawioFileSync.prototype.fileConflict = function(desc, success, error) argument
1486 if (desc != null)
1488 this.catchup(desc, success, error);