Lines Matching defs:function
65 get: function() {
68 set: function(arg) {
133 process.setUncaughtExceptionCaptureCallback = function(fn) {
141 function emitMakeCallbackDeprecation({ target, method }) {
154 function topLevelDomainCallback(cb, ...args) {
174 function updateExceptionCapture() {
207 function domainUncaughtExceptionClear() {
229 exports.create = exports.createDomain = function createDomain() {
238 Domain.prototype._errorHandler = function(er) {
241 if ((typeof er === 'object' && er !== null) || typeof er === 'function') {
320 Domain.prototype.enter = function() {
329 Domain.prototype.exit = function() {
344 Domain.prototype.add = function(ee) {
379 Domain.prototype.remove = function(ee) {
387 Domain.prototype.run = function(fn) {
396 function intercepted(_this, self, cb, fnargs) {
420 Domain.prototype.intercept = function(cb) {
423 function runIntercepted() {
431 function bound(_this, self, cb, fnargs) {
440 Domain.prototype.bind = function(cb) {
443 function runBound() {
462 EventEmitter.init = function(opts) {
478 EventEmitter.prototype.emit = function emit(...args) {