HomeSort by relevance Sort by last modified time
    Searched defs:path (Results 26 - 50 of 5507) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/toybox/toys/other/
pwdx.c 23 char *path = toybuf; local
26 if (!readlink0(path, toybuf, sizeof(toybuf))) {
27 path = strerror(errno);
31 xprintf("%s: %s\n", *optargs, path);
  /frameworks/av/media/libeffects/factory/test/
DumpConfig.cpp 23 const char* path = nullptr; local
32 fprintf(stderr, "Dumping XML effect config file: %s\n", path);
43 ssize_t ret = EffectLoadXmlEffectConfig(path);
  /prebuilts/go/darwin-x86/src/path/
match_test.go 5 package path package
  /prebuilts/go/linux-x86/src/path/
match_test.go 5 package path package
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
devicetreeconquery.py 34 path A single devicetree path.
59 path = None variable in class:DevicetreeconQuery
68 self.log.debug("Path: {0.path!r}".format(self))
73 if self.path and self.path != devicetreecon.path:
  /frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/
PathPerfTest.java 19 import android.graphics.Path;
36 Path path = new Path(); local
38 path.reset();
45 Path path = new Path(); local
47 path.addRect(0, 0, 100, 100, Path.Direction.CW)
55 Path path = new Path(); local
64 Path path = new Path(); local
74 Path path = new Path(); local
84 Path path = new Path(); local
94 Path path = new Path(); local
105 Path path = new Path(); local
    [all...]
  /external/compiler-rt/test/asan/TestCases/Posix/
glob.cc 17 std::string path = argv[1]; local
18 std::string pattern = path + "/glob_test_root/*a";
  /external/curl/lib/
file.h 30 char *path; /* the path we operate on */ member in struct:FILEPROTO
32 differ from the 'path' pointer */
  /external/e2fsprogs/contrib/android/
base_fs.h 9 char *path; member in struct:basefs_entry
  /external/icu/icu4c/source/common/
ures_cnv.cpp 36 char *path = pathBuffer; local
42 path = NULL;
54 u_UCharsToChars(myPath, path, length+1); /* length+1 to include the NUL */
59 length=ucnv_fromUChars(cnv, path, (int32_t)sizeof(pathBuffer), myPath, length, status);
65 /* not NUL-terminated - path too long */
77 return ures_open(path, localeID, status);
  /external/linux-kselftest/tools/testing/selftests/efivarfs/
create-read.c 14 const char *path; local
19 fprintf(stderr, "usage: %s <path>\n", argv[0]);
23 path = argv[1];
26 fd = open(path, O_RDWR | O_CREAT, 0600);
  /external/linux-kselftest/tools/testing/selftests/powerpc/tm/
tm-exec.c 29 static char *path; variable
42 execl(path, "tm-exec", "--child", NULL);
64 path = argv[0];
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaltstack/
9-1.c 42 char path[PATH_MAX + 1]; local
61 /* Get abs path if needed and exec ourself */
63 getcwd(path, PATH_MAX);
64 strcat(path, "/");
65 strcat(path, argv[0]);
67 strcpy(path, argv[0]);
69 execl(path, argv[0], "verify", NULL);
  /external/parameter-framework/upstream/test/tmpfile/posix/
TmpFile.cpp 45 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/
disable.c 15 char path[PATH_MAX]; local
23 snprintf(path, sizeof path, "%s/disable", selinux_mnt);
24 fd = open(path, O_WRONLY | O_CLOEXEC);
setenforce.c 15 char path[PATH_MAX]; local
23 snprintf(path, sizeof path, "%s/enforce", selinux_mnt);
24 fd = open(path, O_RDWR | O_CLOEXEC);
  /external/skia/experimental/svg/model/
SkSVGPath.cpp 19 if (const auto* path = v.as<SkSVGPathValue>()) {
20 this->setPath(*path);
36 SkPath path = fPath; local
38 path.setFillType(ctx.presentationContext().fInherited.fClipRule.get()->asFillType());
39 this->mapToParent(&path);
40 return path;
  /external/skia/gm/
bug5252.cpp 36 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);
drawable.cpp 17 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/experimental/svg/model/
SkSVGPath.cpp 19 if (const auto* path = v.as<SkSVGPathValue>()) {
20 this->setPath(*path);
36 SkPath path = fPath; local
38 path.setFillType(ctx.presentationContext().fInherited.fClipRule.get()->asFillType());
39 this->mapToParent(&path);
40 return path;
  /external/skqp/gm/
bug5252.cpp 36 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);
drawable.cpp 17 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);
  /frameworks/base/core/tests/coretests/src/android/graphics/
PathTest.java 28 Path path = new Path(); local
30 final Path.FillType defaultFillType = path.getFillType();
31 final Path.FillType fillType = Path.FillType.INVERSE_EVEN_ODD;
34 path.setFillType(fillType);
35 path.reset();
36 assertEquals(path.getFillType(), fillType)
    [all...]
  /bionic/tests/
gtest_globals.cpp 28 std::string path = get_executable_path(); local
30 path = android::base::Dirname(path);
31 path += "/..";
34 if (!android::base::Realpath(path.c_str(), &out_path)) {
35 printf("Failed to get realpath for \"%s\"", path.c_str());
  /bootable/recovery/tests/unit/
dirutil_test.cpp 38 ASSERT_EQ(0, mkdir_recursively(td.path, 0755, false, nullptr));
45 ASSERT_EQ(-1, mkdir_recursively(tf.path, 0755, false, nullptr));
51 std::string prefix(td.path);
52 std::string path = prefix + "/a/b"; local
54 ASSERT_EQ(0, mkdir_recursively(path, mode, false, nullptr));
58 ASSERT_EQ(0, stat(path.c_str(), &sb)) << strerror(errno);
70 std::string prefix(td.path);
71 std::string path = prefix + "/a/b"; local
72 ASSERT_EQ(0, mkdir_recursively(path, 0755, true, nullptr));
79 ASSERT_EQ(-1, stat(path.c_str(), &sb))
89 std::string path = prefix + "\/a\/b"; local
    [all...]

Completed in 587 milliseconds

12 3 4 5 6 7 8 91011>>