Searched defs:path (Results 26 - 50 of 2871) sorted by relevance

1234567891011>>

/external/strace/tests-m32/
H A Dskip_unavailable.c7 skip_if_unavailable(const char *const path) argument
11 if (stat(path, &st))
12 perror_msg_and_skip("stat: %s", path);
H A Dzeroargc.c39 const char *const path = av[1]; local
41 execve(path, av + 1, av + 2);
42 perror_msg_and_fail("execve: %s", path);
/external/strace/tests-mx32/
H A Dskip_unavailable.c7 skip_if_unavailable(const char *const path) argument
11 if (stat(path, &st))
12 perror_msg_and_skip("stat: %s", path);
H A Dzeroargc.c39 const char *const path = av[1]; local
41 execve(path, av + 1, av + 2);
42 perror_msg_and_fail("execve: %s", path);
/external/toybox/toys/other/
H A Dpwdx.c23 char *path = toybuf; local
26 if (!readlink0(path, toybuf, sizeof(toybuf))) {
27 path = strerror(errno);
31 xprintf("%s: %s\n", *optargs, path);
/external/v8/tools/ninja/
H A Dninja_output.py7 import os.path namespace
24 root = os.path.join(v8_root, output_dir)
26 return os.path.join(root, configuration)
28 debug_path = os.path.join(root, 'Debug')
29 release_path = os.path.join(root, 'Release')
33 debug_mtime = os.path.getmtime(os.path.join(debug_path, test_path))
37 rel_mtime = os.path.getmtime(os.path.join(release_path, test_path))
/external/autotest/client/bin/self-test/
H A Dextract_tarball_to_dir2 import sys, os, os.path namespace
5 sys.path.insert(0, autodir + '/bin')
/external/curl/lib/
H A Dfile.h30 char *path; /* the path we operate on */ member in struct:FILEPROTO
32 differ from the 'path' pointer */
/external/e2fsprogs/contrib/android/
H A Dbase_fs.h9 char *path; member in struct:basefs_entry
/external/google-breakpad/src/common/linux/
H A Dsafe_readlink.h47 // at least one byte longer than the expected path length (e.g. PATH_MAX,
48 // which is typically defined as the maximum length of a path name
54 bool SafeReadLink(const char* path, char* buffer, size_t buffer_size);
59 bool SafeReadLink(const char* path, char (&buffer)[N]) { argument
60 return SafeReadLink(path, buffer, sizeof(buffer));
/external/icu/icu4c/source/common/
H A Dresbund_cnv.cpp27 ResourceBundle::ResourceBundle( const UnicodeString& path, argument
32 constructForLocale(path, locale, error);
35 ResourceBundle::ResourceBundle( const UnicodeString& path, argument
39 constructForLocale(path, Locale::getDefault(), error);
43 ResourceBundle::constructForLocale(const UnicodeString& path, argument
47 if (path.isEmpty()) {
51 UnicodeString nullTerminatedPath(path);
/external/libchrome/base/files/
H A Dfile_util_linux.cc16 bool GetFileSystemType(const FilePath& path, FileSystemType* type) { argument
18 if (statfs(path.value().c_str(), &statfs_buf) < 0) {
/external/parameter-framework/upstream/test/tmpfile/posix/
H A DTmpFile.cpp45 char path[] = "Tmp_ParameterFramework_XXXXXX"; local
46 int fd = mkstemp(path);
48 throwErrnoError("Could not create tmp file with pattern \"" + string(path) + '"');
51 throwErrnoError("Could not close tmp file \"" + string(path) + '"');
53 return path;
/external/selinux/libselinux/src/
H A Ddisable.c15 char path[PATH_MAX]; local
23 snprintf(path, sizeof path, "%s/disable", selinux_mnt);
24 fd = open(path, O_WRONLY | O_CLOEXEC);
/external/skia/gm/
H A Dbug5252.cpp36 SkPath path; local
37 path.moveTo(6, 6);
38 path.cubicTo(14, 10, 13, 12, 10, 12);
39 path.cubicTo(7, 15, 8, 17, 14, 18);
40 canvas->drawPath(path, pa);
H A Ddrawable.cpp17 SkPath path; variable
18 path.moveTo(10, 10);
19 path.conicTo(10, 90, 50, 90, 0.9f);
23 canvas->drawRect(path.getBounds(), paint);
27 canvas->drawPath(path, paint);
/external/skia/src/core/
H A DSkRecords.cpp12 PreCachedPath::PreCachedPath(const SkPath& path) : SkPath(path) { argument
/external/skia/tools/skpbench/
H A D_os_path.py6 from os import path namespace
10 return path.join(*pathnames)
18 if (path.isdir(skp)):
19 pathnames.extend(glob.iglob(path.join(skp, '*.skp')))
/external/skqp/gm/
H A Dbug5252.cpp36 SkPath path; local
37 path.moveTo(6, 6);
38 path.cubicTo(14, 10, 13, 12, 10, 12);
39 path.cubicTo(7, 15, 8, 17, 14, 18);
40 canvas->drawPath(path, pa);
H A Ddrawable.cpp17 SkPath path; variable
18 path.moveTo(10, 10);
19 path.conicTo(10, 90, 50, 90, 0.9f);
23 canvas->drawRect(path.getBounds(), paint);
27 canvas->drawPath(path, paint);
/external/skqp/src/core/
H A DSkRecords.cpp12 PreCachedPath::PreCachedPath(const SkPath& path) : SkPath(path) { argument
/external/skqp/tools/skpbench/
H A D_os_path.py6 from os import path namespace
10 return path.join(*pathnames)
18 if (path.isdir(skp)):
19 pathnames.extend(glob.iglob(path.join(skp, '*.skp')))
/external/ImageMagick/Magick++/demo/
H A Dpiddle.cpp104 std::vector<VPath> path; local
105 path.push_back(PathMovetoAbs(Coordinate(160,70)));
106 path.push_back(PathLinetoVerticalRel(-40));
107 path.push_back(PathArcRel(PathArcArgs(40,40, 0, 0, 0, -40,40)));
108 path.push_back(PathClosePath());
109 drawList.push_back(DrawablePath(path));
/external/ImageMagick/MagickCore/
H A Dstring_.h30 *path; member in struct:_StringInfo
/external/autotest/server/cros/
H A Dgsutil_wrapper.py7 import os.path namespace
20 @param bucket: path to name of gs bucket.
22 @param destination: path in DUT where the file should be copied to.
28 assert (os.path.isdir(destination))
30 src = os.path.join(bucket, filename)
32 log("SOURCE path: " + src)
53 host.send_file(tempsourcepath, os.path.join(destination, filename))

Completed in 3234 milliseconds

1234567891011>>