Home
last modified time | relevance | path

Searched refs:existingPath (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/npm/node_modules/node-gyp/test/
Dtest-configure-python.js45 var existingPath = path.join('a', 'b')
46 process.env.PYTHONPATH = existingPath
51 assert.strictEqual(process.env.PYTHONPATH, [EXPECTED_PYPATH, existingPath].join(SEPARATOR))
54 assert.deepStrictEqual(dirs, [EXPECTED_PYPATH, existingPath])
65 var existingPath = [pythonDir1, pythonDir2].join(SEPARATOR)
66 process.env.PYTHONPATH = existingPath
71 assert.strictEqual(process.env.PYTHONPATH, [EXPECTED_PYPATH, existingPath].join(SEPARATOR))
/third_party/musl/libc-test/src/functionalext/supplement/misc/misc_gtest/
Dmisc_realpath_test.cpp63 char existingPath[] = "/tmp"; variable
65 char* ptr = realpath(existingPath, nullptr);
/third_party/node/typings/internalBinding/
Dfs.d.ts117 function link(existingPath: string, newPath: string, req: FSReqCallback): void;
118 function link(existingPath: string, newPath: string, req: undefined, ctx: FSSyncContext): void;
119 …function link(existingPath: string, newPath: string, usePromises: typeof kUsePromises): Promise<vo…
/third_party/node/lib/
Dfs.js1827 function link(existingPath, newPath, callback) { argument
1830 existingPath = getValidatedPath(existingPath, 'existingPath');
1836 binding.link(pathModule.toNamespacedPath(existingPath),
1848 function linkSync(existingPath, newPath) { argument
1849 existingPath = getValidatedPath(existingPath, 'existingPath');
1852 const ctx = { path: existingPath, dest: newPath };
1853 const result = binding.link(pathModule.toNamespacedPath(existingPath),
/third_party/node/lib/internal/fs/
Dpromises.js894 async function link(existingPath, newPath) { argument
895 existingPath = getValidatedPath(existingPath, 'existingPath');
897 return binding.link(pathModule.toNamespacedPath(existingPath),
/third_party/node/doc/api/
Dfs.md1067 ### `fsPromises.link(existingPath, newPath)`
1073 * `existingPath` {string|Buffer|URL}
1077 Creates a new link from the `existingPath` to the `newPath`. See the POSIX
3067 ### `fs.link(existingPath, newPath, callback)`
3083 description: The `existingPath` and `newPath` parameters can be WHATWG
3092 * `existingPath` {string|Buffer|URL}
3097 Creates a new link from the `existingPath` to the `newPath`. See the POSIX
5392 ### `fs.linkSync(existingPath, newPath)`
5399 description: The `existingPath` and `newPath` parameters can be WHATWG
5404 * `existingPath` {string|Buffer|URL}
[all …]