• Home
  • Raw
  • Download

Lines Matching refs:realpath

84 function test_simple_error_callback(realpath, realpathSync, cb) {  argument
85 realpath('/this/path/does/not/exist', common.mustCall(function(err, s) {
92 function test_simple_error_cb_with_null_options(realpath, realpathSync, cb) { argument
93 realpath('/this/path/does/not/exist', null, common.mustCall(function(err, s) {
100 function test_simple_relative_symlink(realpath, realpathSync, callback) { argument
118 asynctest(realpath, [entry], callback, function(err, result) {
123 function test_simple_absolute_symlink(realpath, realpathSync, callback) { argument
144 asynctest(realpath, [entry], callback, function(err, result) {
149 function test_deep_relative_file_symlink(realpath, realpathSync, callback) { argument
174 asynctest(realpath, [entry], callback, function(err, result) {
179 function test_deep_relative_dir_symlink(realpath, realpathSync, callback) { argument
202 asynctest(realpath, [entry], callback, function(err, result) {
207 function test_cyclic_link_protection(realpath, realpathSync, callback) { argument
227 realpath, [entry], callback, common.mustCall(function(err, result) {
234 function test_cyclic_link_overprotection(realpath, realpathSync, callback) { argument
250 asynctest(realpath, [testPath], callback, function(er, res) {
255 function test_relative_input_cwd(realpath, realpathSync, callback) { argument
285 asynctest(realpath, [entry], callback, function(err, result) {
292 function test_deep_symlink_mix(realpath, realpathSync, callback) { argument
337 asynctest(realpath, [entry], callback, function(err, result) {
343 function test_non_symlinks(realpath, realpathSync, callback) { argument
351 asynctest(realpath, [entry], callback, function(err, result) {
359 function test_escape_cwd(realpath, realpathSync, cb) { argument
361 asynctest(realpath, ['..'], cb, function(er, uponeActual) {
368 function test_upone_actual(realpath, realpathSync, cb) { argument
382 function test_up_multiple(realpath, realpathSync, cb) { argument
406 realpath(abedabeda, function(er, real) {
409 realpath(abedabed, function(er, real) {
425 function test_up_multiple_with_null_options(realpath, realpathSync, cb) { argument
449 realpath(abedabeda, null, function(er, real) {
452 realpath(abedabed, null, function(er, real) {
468 function test_abs_with_kids(realpath, realpathSync, cb) { argument
512 asynctest(realpath, [linkPath], cb, function(er, actual) {
519 function test_root(realpath, realpathSync, cb) { argument
521 realpath('/', function(err, result) {
528 function test_root_with_null_options(realpath, realpathSync, cb) { argument
529 realpath('/', null, function(err, result) {
567 test(fs.realpath, fs.realpathSync, common.mustSucceed(() => {
569 test(fs.realpath.native,