Searched defs:path (Results 251 - 275 of 1434) sorted by relevance

<<11121314151617181920>>

/external/valgrind/none/tests/
H A Dexec-sigmask.c10 static void do_exec(const char *path, const char *arg, const sigset_t *mask) argument
22 execl(path, path, arg, NULL);
H A Dprocfs-cmdline-exe.c21 const char* const path)
27 fd = open(path, 0);
49 const char* const path)
55 if ((n = readlink(path, buf, sizeof(buf) - 1)) >= 0)
68 const char* const path)
75 if ((n = readlinkat(AT_FDCWD, path, buf, sizeof(buf) - 1)) >= 0)
94 char path[512]; local
101 snprintf(path, sizeof(path), "/proc/%d/cmdline", getpid());
104 test_cmdline(cwd, "/proc/<pid>/cmdline", path);
20 test_cmdline(const char* const cwd, const char* const label, const char* const path) argument
48 test_readlink(const char* const cwd, const char* const label, const char* const path) argument
67 test_readlinkat(const char* const cwd, const char* const label, const char* const path) argument
[all...]
/external/vogar/src/vogar/commands/
H A DJavac.java43 public Javac classpath(File... path) { argument
44 return classpath(Classpath.of(path));
52 public Javac sourcepath(File... path) { argument
53 builder.args("-sourcepath", Classpath.of(path).toString());
57 public Javac sourcepath(Collection<File> path) { argument
58 builder.args("-sourcepath", Classpath.of(path).toString());
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DLineAndPointRenderer.java73 protected void appendToPath(Path path, PointF thisPoint, PointF lastPoint) { argument
75 path.lineTo(thisPoint.x, thisPoint.y);
86 Path path = null;
102 //appendToPath(path, thisPoint, lastPoint);
111 path = new Path();
115 path.moveTo(firstPoint.x, firstPoint.y);
119 appendToPath(path, thisPoint, lastPoint);
125 renderPath(canvas, plotArea, path, firstPoint, lastPoint, formatter);
132 renderPath(canvas, plotArea, path, firstPoint, lastPoint, formatter);
155 protected void renderPath(Canvas canvas, RectF plotArea, Path path, Point argument
[all...]
/external/apache-http/src/org/apache/http/client/utils/
H A DURIUtils.java64 * @param path
72 * If both a scheme and a path are given but the path is
82 final String path,
98 if (path == null || !path.startsWith("/")) {
101 if (path != null) {
102 buffer.append(path);
117 * and port are taken from the target host, but whose path, query and
122 * Contains the path, quer
78 createURI( final String scheme, final String host, int port, final String path, final String query, final String fragment) argument
[all...]
/external/apache-http/src/org/apache/http/cookie/
H A DSetCookie.java86 * Sets the path attribute.
88 * @param path The value of the path attribute
93 void setPath(String path); argument
/external/clang/tools/clang-format-vs/ClangFormat/
H A DClangFormatPackage.cs94 string path = GetDocumentParent(view);
97 var root = XElement.Parse(RunClangFormat(text, start, length, path));
130 private string RunClangFormat(string text, int offset, int length, string path) argument
149 if (path != null)
150 process.StartInfo.WorkingDirectory = path;
/external/compiler-rt/lib/asan/
H A Dasanwrapper.cc30 bool elf_is_64bit(const char* path) { argument
31 int fd = open(path, O_RDONLY);
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dnohugepage_test.cc30 void FileToString(const char *path) { argument
32 int fd = open(path, 0);
55 const char *path = "/proc/self/smaps"; local
56 FileToString(path);
/external/compiler-rt/test/asan/TestCases/
H A Ddlclose-test.cc48 string path = string(argv[0]) + "-so.so"; local
50 printf("opening %s ... \n", path.c_str());
51 void *lib = dlopen(path.c_str(), RTLD_NOW);
/external/droiddriver/src/io/appium/droiddriver/
H A DDroidDriver.java132 * @param path the path of file to save the tree
135 boolean dumpUiElementTree(String path); argument
/external/droiddriver/src/io/appium/droiddriver/base/
H A DBaseUiDevice.java79 public boolean takeScreenshot(String path) { argument
80 return takeScreenshot(path, Bitmap.CompressFormat.PNG, 0);
84 public boolean takeScreenshot(String path, CompressFormat format, int quality) { argument
85 Logs.call(this, "takeScreenshot", path, quality);
92 bos = FileUtils.open(path);
/external/elfutils/src/libdwfl/
H A Ddwfl_build_id_find_elf.c58 char *path = strdupa ((cb->debuginfo_path ? *cb->debuginfo_path : NULL) local
63 while (fd < 0 && (dir = strsep (&path, ":")) != NULL)
/external/emma/core/java12/com/vladium/emma/data/
H A DMergeProcessor.java47 * @param path [null is equivalent to an empty array]
49 public synchronized final void setDataPath (final String [] path) argument
51 if ((path == null) || (path.length == 0))
54 m_dataPath = Files.pathToFiles (path, true);
86 throw new IllegalStateException ("data path not set");
104 log.verbose ("input data path:");
/external/emma/core/java12/com/vladium/emma/report/
H A DReportProcessor.java51 * @param path [null is equivalent to an empty array]
53 public synchronized final void setDataPath (final String [] path) argument
55 if ((path == null) || (path.length == 0))
58 m_dataPath = Files.pathToFiles (path, true);
62 * @param path [null is equivalent to no source path]
64 public synchronized void setSourcePath (final String [] path) argument
66 if (path == null)
69 m_sourcePath = Files.pathToFiles (path, tru
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
H A DAssetPathFetcher.java11 * An abstract class for obtaining data for an asset path using an {@link android.content.res.AssetManager}.
13 * @param <T> The type of data obtained from the asset path (InputStream, FileDescriptor etc).
58 * Opens the given asset path with the given {@link android.content.res.AssetManager} and returns the conrete data
61 * @param assetManager An AssetManager to use to open the given path.
62 * @param path A string path pointing to a resource in assets to open.
64 protected abstract T loadResource(AssetManager assetManager, String path) throws IOException; argument
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
H A DUriLoader.java32 String path = AssetUriParser.toAssetPath(model);
33 result = getAssetPathFetcher(context, path);
46 protected abstract DataFetcher<T> getAssetPathFetcher(Context context, String path); argument
/external/google-breakpad/src/common/tests/
H A Dfile_utils.cc99 bool ReadFile(const char* path, void* buffer, ssize_t* buffer_size) { argument
100 int fd = HANDLE_EINTR(open(path, O_RDONLY));
122 bool WriteFile(const char* path, const void* buffer, size_t buffer_size) { argument
123 int fd = HANDLE_EINTR(open(path, O_CREAT | O_TRUNC | O_WRONLY, S_IRWXU));
/external/icu/icu4c/source/test/depstest/
H A Ddepstest.py24 import os.path namespace
50 path = os.path.join(root_path, library_name, obj_name)
52 "--extern-only", "--no-sort", path],
82 obj_paths = glob.glob(os.path.join(root_path, library_name, "*.o"))
83 for path in obj_paths:
84 _ReadObjFile(root_path, library_name, os.path.basename(path))
185 "need one argument with the root path to the built ICU libraries/*.o files."))
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DPackageRemapper.java58 public String mapPath(String path) { argument
59 String s = pathCache.get(path);
61 s = path;
78 return path;
80 pathCache.put(path, s);
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DDataContext.java82 * object for this variable is requested, it will return the Data object at the path location or
84 * true}, then if no Data object exists at the path location, it will be created.
87 * @param path The path to the Data object
89 void createLocalVariableByPath(String name, String path); argument
/external/libdrm/tests/
H A Ddrmtest.c64 const char *pci_id, *path; local
79 path = udev_list_entry_get_name(entry);
80 device = udev_device_new_from_syspath(udev, path);
/external/libmtp/examples/
H A Dalbumart.c53 char *path = NULL; local
97 path = argv[0];
99 if ( stat(path, &statbuff) == -1 ) {
100 fprintf(stderr, "%s: ", path);
108 if ( (fd = open(path, O_RDONLY|O_BINARY) == -1) ) {
110 if ( (fd = open(path, O_RDONLY)) == -1) {
112 printf("Couldn't open image file %s (%s)\n",path,strerror(errno));
/external/libselinux/src/
H A Dprocattr.c21 char *path, *buf; local
29 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
32 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
37 fd = open(path, O_RDONLY);
38 free(path);
79 char *path; local
86 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
89 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
94 fd = open(path, O_RDWR);
95 free(path);
[all...]
/external/libunwind/src/ptrace/
H A D_UPT_find_proc_info.c42 char *path = NULL; local
66 if (tdep_get_elf_image (as, &ei, pid, ip, &segbase, &mapoff, &path, as_arg) < 0)
69 ret = tdep_find_unwind_table (edi, &ei, as, path, segbase, mapoff, ip);
70 free(path);

Completed in 615 milliseconds

<<11121314151617181920>>