Home
last modified time | relevance | path

Searched refs:pth (Results 1 – 25 of 45) sorted by relevance

12

/third_party/node/deps/npm/node_modules/make-dir/
Dindex.js13 const checkPath = pth => { argument
15 const pathHasInvalidWinCharacters = /[<>:"|?*]/.test(pth.replace(path.parse(pth).root, ''));
18 const err = new Error(`Path contains invalid characters: ${pth}`);
32 const make = pth => { argument
33 return mkdir(pth, opts.mode)
34 .then(() => pth)
37 if (err.message.includes('null bytes') || path.dirname(pth) === pth) {
41 return make(path.dirname(pth)).then(() => make(pth));
44 return stat(pth)
45 .then(stats => stats.isDirectory() ? pth : Promise.reject())
[all …]
/third_party/ltp/testcases/kernel/syscalls/keyctl/
Dkeyctl02.c63 pthread_t pth[4]; in do_test() local
71 SAFE_PTHREAD_CREATE(&pth[0], NULL, do_read, in do_test()
73 SAFE_PTHREAD_CREATE(&pth[1], NULL, do_revoke, in do_test()
75 SAFE_PTHREAD_CREATE(&pth[2], NULL, do_read, in do_test()
77 SAFE_PTHREAD_CREATE(&pth[3], NULL, do_revoke, in do_test()
80 SAFE_PTHREAD_JOIN(pth[0], NULL); in do_test()
81 SAFE_PTHREAD_JOIN(pth[1], NULL); in do_test()
82 SAFE_PTHREAD_JOIN(pth[2], NULL); in do_test()
83 SAFE_PTHREAD_JOIN(pth[3], NULL); in do_test()
/third_party/node/deps/npm/node_modules/npm-run-path/
Dindex.js12 let pth = path.resolve(opts.cwd); variable
15 while (prev !== pth) {
16 ret.push(path.join(pth, 'node_modules/.bin'));
17 prev = pth;
18 pth = path.resolve(pth, '..');
/third_party/flutter/skia/third_party/externals/sdl/premake/patches/
D713.patch14 local pth, src
31 - pth = node.path
32 + pth = nodePath
34 - pth = "/System/Library/Frameworks/" .. node.path
35 + pth = "/System/Library/Frameworks/" .. nodePath
43 + if string.find(pth, '^/') then
44 + pth = string.sub(pth, 2)
62 node.id, node.name, xcode.getfiletype(node), node.name, pth, src)
/third_party/boost/libs/process/test/
Dbind_stdin.cpp175 fs::path pth = variable
180 boost::filesystem::ofstream fs(pth);
190 bp::std_in <pth,
208 boost::filesystem::remove(pth);
218 fs::path pth = variable
223 boost::filesystem::ofstream fs(pth);
229 FILE * f = fopen(pth.string().c_str(), "r+");
257 boost::filesystem::remove(pth);
Dcmd_test.cpp39 fs::path pth = master_test_suite().argv[1]; in BOOST_AUTO_TEST_CASE() local
47 (*itr) += fs::canonical(fs::absolute(pth.parent_path())).string(); in BOOST_AUTO_TEST_CASE()
66 fs::path pth = master_test_suite().argv[1]; in BOOST_AUTO_TEST_CASE() local
74 (*itr) += fs::canonical(fs::absolute(pth.parent_path())).string(); in BOOST_AUTO_TEST_CASE()
Dbind_stdout.cpp141 fs::path pth = variable
145 FILE* f = fopen(pth.string().c_str(), "w");
161 fs::ifstream is{pth};
167 boost::filesystem::remove(pth);
Dbind_stderr.cpp130 fs::path pth = variable
138 bp::std_err>pth,
145 fs::ifstream is{pth};
151 boost::filesystem::remove(pth);
/third_party/boost/boost/process/
Dexe.hpp39 …typename boost::filesystem::path::value_type> operator()(const boost::filesystem::path & pth) const in operator ()()
41 return exe_setter_<typename boost::filesystem::path::value_type>(pth.native()); in operator ()()
45 …<typename boost::filesystem::path::value_type> operator=(const boost::filesystem::path & pth) const in operator =()
47 return exe_setter_<typename boost::filesystem::path::value_type>(pth.native()); in operator =()
/third_party/boost/boost/chrono/detail/inlined/posix/
Dthread_clock.hpp34 pthread_t pth=pthread_self(); in now()
37 pthread_getcpuclockid(pth, &clock_id); in now()
60 pthread_t pth=pthread_self(); in now()
63 pthread_getcpuclockid(pth, &clock_id); in now()
/third_party/ltp/utils/sctp/func_tests/
Dtest_1_to_1_threads.c140 int pth[THREADS]; in main() local
178 pth[cnt] = cnt; in main()
179 status = pthread_create(&thread[cnt], &attr, relay, &pth[cnt]); in main()
/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dpthread_equal.c29 pthread_t pth = pthread_self(); in threadfuncB() local
30 int ret = pthread_equal(g_pthd_1, pth); in threadfuncB()
/third_party/boost/tools/inspect/
Dinspect.cpp137 bool visit_predicate( const path & pth ) in visit_predicate() argument
139 string local( boost::inspect::relative_to( pth, search_root_path() ) ); in visit_predicate()
140 string leaf( pth.leaf().string() ); in visit_predicate()
152 && !boost::filesystem::exists(pth / boost_no_inspect) in visit_predicate()
215 const path & pth, const string & content, const inspector_list & insp_list ) in check() argument
221 itr->inspector->inspect( lib, pth ); // always call two-argument form in check()
222 if ( find_signature( pth, itr->inspector->signatures() ) ) in check()
224 itr->inspector->inspect( lib, pth, content ); in check()
/third_party/python/Doc/library/
Dsite.rst56 A path configuration file is a file whose name has the form :file:`{name}.pth`
66 An executable line in a :file:`.pth` file is run at every Python startup,
86 configuration files, :file:`foo.pth` and :file:`bar.pth`. Assume
87 :file:`foo.pth` contains the following::
95 and :file:`bar.pth` contains::
108 directory precedes the :file:`foo` directory because :file:`bar.pth` comes
109 alphabetically before :file:`foo.pth`; and :file:`spam` is omitted because it is
183 :file:`.pth` files in it will be processed.
210 Add a directory to sys.path and process its :file:`.pth` files. Typically
Dpkgutil.rst34 *name* argument. This feature is similar to :file:`\*.pth` files (see the
/third_party/ltp/testcases/kernel/sched/cfs-scheduler/
Dhackbench.c238 static unsigned int group(pthread_t * pth, in group() argument
266 pth[i] = create_worker(ctx, (void *)(void *)receiver); in group()
279 pth[num_fds + i] = in group()
/third_party/grpc/test/core/gprpp/
Dmpscq_test.cc172 for (auto& pth : pull_thds) { in test_mt_multipop() local
173 pth.Join(); in test_mt_multipop()
/third_party/gettext/gettext-tools/examples/po/
Dde.po8 # Philipp Thomas <pth@suse.de>, 2015.
16 "Last-Translator: Philipp Thomas <pth@suse.de>\n"
/third_party/boost/tools/build/src/tools/
Dclang-linux.jam38 : <toolset>clang <toolset-clang:platform>linux : pth ;
/third_party/gettext/gettext-runtime/po/
Dde.po77 # Philipp Thomas <pth@suse.com>, 2015.
DChangeLog.028 * de.po: Update from Philipp Thomas <pth@suse.de>.
/third_party/python/Doc/install/
Dindex.rst557 search path, such as by putting a :file:`.pth` file in a site directory (see
674 directory. Path configuration files have an extension of :file:`.pth`, and each
681 directory containing the :file:`.pth` file. See the documentation of
/third_party/python/Misc/NEWS.d/
D3.9.0a5.rst940 :data:`sys.path` contains a ``.pth`` file.
/third_party/gettext/gettext-tools/po/
DChangeLog.121 * de.po: Update from Philipp Thomas <pth@suse.de>.
/third_party/gettext/gettext-runtime/m4/
DChangeLog.0281 * threadlib.m4 (gl_THREADLIB_BODY): When testing whether pth works, use

12