Lines Matching defs:path
13 const pathModule = require('path');
48 constructor(handle, path, options) {
52 this[kDirPath] = path;
74 get path() {
150 processReadResult(path, result) {
155 path,
165 const ctx = { path: dirent.path };
167 pathModule.toNamespacedPath(dirent.path),
181 this.processReadResult(dirent.path, result);
205 const ctx = { path: this[kDirPath] };
267 const ctx = { path: this[kDirPath] };
296 function opendir(path, options, callback) {
300 path = getValidatedPath(path);
309 callback(null, new Dir(handle, path, options));
317 pathModule.toNamespacedPath(path),
323 function opendirSync(path, options) {
324 path = getValidatedPath(path);
329 const ctx = { path };
331 pathModule.toNamespacedPath(path),
338 return new Dir(handle, path, options);