Home | History | Annotate | Download | only in front_end

Lines Matching refs:objectId

193         var objectId = this._nextObjectId++;
194 var proxy = new WebInspector.HeapSnapshotLoaderProxy(this, objectId, snapshotConstructorName, proxyConstructor);
195 this._postMessage({callId: this._nextCallId++, disposition: "create", objectId: objectId, methodName: "WebInspector.HeapSnapshotLoader"});
206 disposeObject: function(objectId)
208 this._postMessage({callId: this._nextCallId++, disposition: "dispose", objectId: objectId});
211 callGetter: function(callback, objectId, getterName)
215 this._postMessage({callId: callId, disposition: "getter", objectId: objectId, methodName: getterName});
218 callFactoryMethod: function(callback, objectId, methodName, proxyConstructor)
229 this._postMessage({callId: callId, disposition: "factory", objectId: objectId, methodName: methodName, methodArguments: methodArguments, newObjectId: newObjectId});
232 this._postMessage({callId: callId, disposition: "factory", objectId: objectId, methodName: methodName, methodArguments: methodArguments, newObjectId: newObjectId});
237 callMethod: function(callback, objectId, methodName)
243 this._postMessage({callId: callId, disposition: "method", objectId: objectId, methodName: methodName, methodArguments: methodArguments});
307 WebInspector.HeapSnapshotProxyObject = function(worker, objectId)
310 this._objectId = objectId;
361 WebInspector.HeapSnapshotLoaderProxy = function(worker, objectId, snapshotConstructorName, proxyConstructor)
363 WebInspector.HeapSnapshotProxyObject.call(this, worker, objectId);
415 WebInspector.HeapSnapshotProxy = function(worker, objectId)
417 WebInspector.HeapSnapshotProxyObject.call(this, worker, objectId);
524 WebInspector.NativeHeapSnapshotProxy = function(worker, objectId)
526 WebInspector.HeapSnapshotProxy.call(this, worker, objectId);
542 objectId)
544 WebInspector.HeapSnapshotProxyObject.call(this, worker, objectId);