Lines Matching defs:filename
160 void* wrapped_dlopen(const char* filename, int flags) {
161 CHECK_NOT_NULL(filename); // This deviates from the 'real' dlopen().
166 int rc = uv_fs_stat(nullptr, &req, filename, nullptr);
185 void* real_handle = dlopen(filename, flags);
335 DLib::DLib(const char* filename, int flags)
336 : filename_(filename), flags_(flags), handle_(nullptr) {}
428 // DLOpen is process.dlopen(module, filename, flags).
465 node::Utf8Value filename(env->isolate(), args[1]); // Cast
466 env->TryLoadAddon(*filename, flags, [&](DLib* dlib) {
482 // Windows needs to add the filename into the error message
483 errmsg += *filename;
516 env, "Module did not self-register: '%s'.", *filename);
544 *filename,