Lines Matching defs:binding
6 // This file creates the internal module & binding loaders used by built-in
15 // C++ binding loaders:
16 // - process.binding(): the legacy C++ binding loader, accessible from user land
26 // - internalBinding(): the private internal C++ binding loader, inaccessible
27 // from user land unless through `require('internal/test/binding')`.
83 // that are allowed for access via process.binding()... This is used
141 // Set up process.binding() and process._linkedBinding().
145 process.binding = function binding(module) {
147 // Deprecated specific process.binding() modules, but not all, allow
153 `Access to process.binding('${module}') is deprecated.`,
247 * The C++ ModuleWrap binding used to interface with the ESM implementation.