Searched defs:pathname (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/os/
H A DSELinux.java76 * @param path the pathname of the file object.
139 * @param pathname The pathname of the file to be relabeled.
141 * @exception NullPointerException if the pathname is a null object.
143 public static boolean restorecon(String pathname) throws NullPointerException { argument
144 if (pathname == null) { throw new NullPointerException(); }
145 return native_restorecon(pathname, 0);
155 * @param pathname The pathname of the file to be relabeled.
158 private static native boolean native_restorecon(String pathname, in argument
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuCore.cpp208 read_file(const char* pathname, char* buffer, size_t buffsize) argument
212 fd = open(pathname, O_RDONLY);
/frameworks/wilhelm/tests/sandbox/
H A Dreverb.c285 char *pathname = argv[i]; local
402 SLDataLocator_URI locURI = {SL_DATALOCATOR_URI, (SLchar *) pathname};
/frameworks/native/cmds/installd/
H A Dutils.c283 int delete_dir_contents(const char *pathname, argument
290 d = opendir(pathname);
292 ALOGE("Couldn't opendir %s: %s\n", pathname, strerror(errno));
298 if (rmdir(pathname)) {
299 ALOGE("Couldn't rmdir %s: %s\n", pathname, strerror(errno));
/frameworks/wilhelm/src/android/
H A DAudioPlayer_to_android.cpp1573 const char *pathname = uri; local
1575 if (!strncasecmp(pathname, "file://", 7)) {
1576 pathname += 7;
1579 int fd = ::open(pathname, O_RDONLY);

Completed in 70 milliseconds