Lines Matching refs:success

66 DropboxClient.prototype.updateUser = function(success, error, failOnAuth)  argument
85 success();
103 this.updateUser(success, error, true);
117 DropboxClient.prototype.authenticate = function(success, error) argument
125 this.authenticateStep2(req.getText(), success, error);
134 DropboxClient.prototype.authenticateStep2 = function(state, success, error) argument
155 success();
216 success();
264 DropboxClient.prototype.executePromise = function(promiseFn, success, error) argument
283 if (acceptResponse && success != null)
285 success(response);
359 DropboxClient.prototype.getLibrary = function(path, success, error) argument
361 this.getFile(path, success, error, true);
367 DropboxClient.prototype.getFile = function(path, success, error, asLibrary) argument
380 this.ui.convertFile(path, name, null, this.extension, success, error);
421 success((file != null) ? file :
434 DropboxClient.prototype.readFile = function(arg, success, error, binary) argument
485 success(reader.result, response);
614 DropboxClient.prototype.renameFile = function(file, filename, success, error) argument
649 this.executePromise(move, success, error);
688 DropboxClient.prototype.insertLibrary = function(filename, data, success, error) argument
690 this.insertFile(filename, data, success, error, true);
699 DropboxClient.prototype.insertFile = function(filename, data, success, error, asLibrary) argument
711 success(new DropboxLibrary(this.ui, data, stat));
715 success(new DropboxFile(this.ui, data, stat));
732 DropboxClient.prototype.saveFile = function(filename, data, success, error, folder) argument
755 this.executePromise(promiseFn, success, error);
777 success : mxUtils.bind(this, function(files)
830 DropboxClient.prototype.createLibrary = function(file, success, error) argument
842 success(newFile.getHash().substring(1), newFile);
881 success : mxUtils.bind(this, function(files)
899 var success = mxUtils.bind(this, function(path, file)
910 success(files[0].link);
949 this.createFile(files[0], success, error);
955 this.createFile(files[0], success, error);
975 DropboxClient.prototype.createFile = function(file, success, error) argument
999 success(file.name, newFile);