/external/protobuf/gtest/include/gtest/internal/ |
gtest-filepath.h | 48 // FilePath - a class for file and directory pathname manipulation which 49 // handles platform-specific conventions (like the pathname separator). 64 explicit FilePath(const char* pathname) : pathname_(pathname) { 68 explicit FilePath(const String& pathname) : pathname_(pathname) { 102 // Returns a pathname for a file that does not currently exist. The pathname 105 // already exists. The number will be incremented until a pathname is found 160 // Returns true if pathname describes a directory in the file-syste [all...] |
/hardware/msm7k/libgralloc-qsd8k/tests/ |
pmemalloc_test.cpp | 59 virtual int open(const char* pathname, int flags, int mode) { 96 virtual int open(const char* pathname, int flags, int mode) { 97 EXPECT_EQ(fakePmemDev, pathname); 138 virtual int open(const char* pathname, int flags, int mode) { 139 EXPECT_EQ(fakePmemDev, pathname); 183 virtual int open(const char* pathname, int flags, int mode) { 184 EXPECT_EQ(fakePmemDev, pathname); 213 virtual int open(const char* pathname, int flags, int mode) { 214 EXPECT_EQ(fakePmemDev, pathname); 287 virtual int open(const char* pathname, int flags, int mode) [all...] |
/external/bluetooth/bluez/src/ |
textfile.c | 185 static int write_key(const char *pathname, const char *key, const char *value, int icase) 193 fd = open(pathname, O_RDWR); 309 static char *read_key(const char *pathname, const char *key, int icase) 316 fd = open(pathname, O_RDONLY); 373 int textfile_put(const char *pathname, const char *key, const char *value) 375 return write_key(pathname, key, value, 0); 378 int textfile_caseput(const char *pathname, const char *key, const char *value) 380 return write_key(pathname, key, value, 1); 383 int textfile_del(const char *pathname, const char *key) 385 return write_key(pathname, key, NULL, 0) [all...] |
/dalvik/vm/ |
Native.cpp | 148 * hash is on the "pathName" field. 151 char* pathName; /* absolute path to library */ 171 return strcmp(pLib->pathName, name); 188 pLib, pLib->pathName, pNewLib, pNewLib->pathName); 189 return strcmp(pLib->pathName, pNewLib->pathName); 193 * Check to see if an entry with the same pathname already exists. 195 static SharedLib* findSharedLibEntry(const char* pathName) 197 u4 hash = dvmComputeUtf8Hash(pathName); [all...] |
/external/javassist/src/main/javassist/ |
ClassPoolTail.java | 126 JarClassPath(String pathname) throws NotFoundException { 128 jarfile = new JarFile(pathname); 129 jarfileURL = new File(pathname).getCanonicalFile() 134 throw new NotFoundException(pathname); 241 public ClassPath insertClassPath(String pathname) 244 return insertClassPath(makePathObject(pathname)); 247 public ClassPath appendClassPath(String pathname) 250 return appendClassPath(makePathObject(pathname)); 253 private static ClassPath makePathObject(String pathname) 256 String lower = pathname.toLowerCase() [all...] |
/external/e2fsprogs/misc/ |
uuidd.8.in | 66 Specify the pathname where the pid file should be written. By default, 70 Specify the pathname used for the unix-domain socket used by uuidd. By 71 default, the pathname used is /var/lib/libuuid/request. This is primarily 72 for debugging purposes, since the pathname is hard-coded in the libuuid
|
/external/valgrind/main/ |
vg-in-place | 3 # Figure out an absolute pathname to this file, based on
|
/external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/ |
set-href-attribute-pathname.html | 10 <script src="script-tests/set-href-attribute-pathname.js"></script>
|
set-href-attribute-prevents-rebase-expected.txt | 11 Pathname attribute, update document base URI without attribute having been set 13 Pathname attribute, update document base URI after attribute has been set 18 Pathname attribute, update document base URI after attribute has been set
|
/external/llvm/lib/Support/Windows/ |
Path.inc | 203 char pathname[MAX_PATH]; 204 if (!GetTempPath(MAX_PATH, pathname)) { 211 result.set(pathname); 217 sprintf(pathname, "LLVM_%u", unsigned(GetCurrentProcessId())); 219 sprintf(pathname, "LLVM_%u", GetCurrentProcessId()); 221 result.appendComponent(pathname); 311 char pathname[MAX_PATH]; 312 ::GetCurrentDirectoryA(MAX_PATH,pathname); 313 return Path(pathname); 319 char pathname[MAX_PATH] [all...] |
/bionic/libc/unistd/ |
creat.c | 31 int creat(const char* pathname, mode_t mode) 33 return open(pathname, O_WRONLY|O_TRUNC|O_CREAT, mode);
|
open.c | 34 int open(const char *pathname, int flags, ...) 49 return __open(pathname, flags, mode);
|
openat.c | 34 int openat(int fd, const char *pathname, int flags, ...) 49 return __openat(fd, pathname, flags, mode);
|
/external/bluetooth/glib/gio/fam/ |
fam-helper.c | 38 gchar *pathname; member in struct:_fam_sub 114 path = g_strdup_printf ("%s/%s", sub->pathname, ev.filename); 209 _fam_sub_add (const gchar *pathname, 230 sub->pathname = g_strdup (pathname); 235 FAMMonitorDirectory (fam_connection, pathname, &sub->request, sub); 237 FAMMonitorFile (fam_connection, pathname, &sub->request, sub); 273 g_free (sub->pathname);
|
/external/chromium/sdch/open-vcdiff/src/gtest/internal/ |
gtest-filepath.h | 48 // FilePath - a class for file and directory pathname manipulation which 49 // handles platform-specific conventions (like the pathname separator). 63 explicit FilePath(const char* pathname) : pathname_(pathname) { } 64 explicit FilePath(const String& pathname) : pathname_(pathname) { } 82 // Returns a pathname for a file that does not currently exist. The pathname 85 // already exists. The number will be incremented until a pathname is found 137 // Returns true if pathname describes a directory in the file-syste [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
diskcache.cc | 284 Pathname pathname; local 285 pathname.SetFolder(folder_); 286 pathname.SetBasename(buffer); 287 pathname.SetExtension(extension); 293 return pathname.pathname(); 298 Pathname pathname(filename); 300 if (1 != sscanf(pathname.extension().c_str(), ".%u", &tempdex) [all...] |
/cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/ |
RootProcessScanner.java | 86 private static boolean isUnapprovedRootProcess(File pathname) 88 return isPidDirectory(pathname) 89 && !isKernelProcess(pathname) 90 && isRootProcess(pathname); 93 private static boolean isPidDirectory(File pathname) { 94 return pathname.isDirectory() && Pattern.matches("\\d+", pathname.getName());
|
/external/llvm/runtime/libprofile/ |
GCDAProfiling.c | 84 char *pathname; local 89 pathname = malloc(i + 1); 90 strncpy(pathname, filename, i); 91 pathname[i] = '\0'; 93 _mkdir(pathname); 95 mkdir(pathname, 0750); /* some of these will fail, ignore it. */ 97 free(pathname);
|
/external/oprofile/libutil/ |
op_file.h | 64 typedef void (*get_pathname_callback)(char const * pathname, void * name_list); 77 * @param filter a pathname filter 86 * dir is of type 'dir' and its complete pathname contains a match to
|
/external/llvm/lib/Support/Unix/ |
Path.inc | 134 char pathname[] = "/tmp/llvm_XXXXXX"; 135 if (0 == mkdtemp(pathname)) { 137 std::string(pathname) + ": can't create temporary directory"); 140 return Path(pathname); 147 char pathname[] = "/tmp/llvm_XXXXXX"; 149 if (-1 == (fd = mkstemp(pathname))) { 151 std::string(pathname) + ": can't create temporary directory"); 155 ::unlink(pathname); // start race condition, ignore errors 156 if (-1 == ::mkdir(pathname, S_IRWXU)) { // end race condition 158 std::string(pathname) + ": can't create temporary directory") [all...] |
/external/bluetooth/glib/gio/ |
glocalfilemonitor.c | 174 * @pathname: path name to monitor. 177 * Returns: a new #GFileMonitor for the given @pathname. 180 _g_local_file_monitor_new (const char *pathname, 195 monitor = G_FILE_MONITOR (g_object_new (type, "filename", pathname, NULL));
|
/system/extras/fatblock/ |
fdpool.h | 27 int fdpool_open(struct pooled_fd *pfd, const char *pathname, int flags);
|
/external/webkit/Source/WebCore/html/ |
HTMLAnchorElement.idl | 41 readonly attribute DOMString pathname; 49 attribute [ConvertNullToNullString] DOMString pathname;
|
/frameworks/base/graphics/java/android/graphics/ |
Movie.java | 51 public static Movie decodeFile(String pathName) { 54 is = new FileInputStream(pathName);
|
/development/testrunner/ |
android_build.py | 31 """Returns the full pathname of the "top" of the Android development tree. 75 """Compute the full pathname to the host binary directory. 97 """Returns the full pathname to the target/product directory. 118 """Returns the full pathname to the target/product system/bin directory. 138 """Returns the full pathname to the host java library output directory. 159 """Returns the full pathname to the test app build output directory.
|