Можно так
$.ajax({
url: '/mashines/index/getmashines/format/json',
dataType: 'json',
data: {'start': 0, 'limit': 50},
assync: false,
success: fn,
context: this
});
либо вот так
this.doAjax($.proxy(function(a){
console.log(a); // выводит отлично!
this.func3(a);
}, this));