/external/webkit/Source/WebCore/platform/chromium/ |
FileSystemChromiumMac.mm | 39 String pathGetFileName(const String& path) 41 return [path lastPathComponent]; 44 String pathGetDisplayFileName(const String& path) 46 return [[NSFileManager defaultManager] displayNameAtPath:path];
|
FileSystemChromium.cpp | 40 bool deleteFile(const String& path) 42 return PlatformBridge::deleteFile(path); 45 bool deleteEmptyDirectory(const String& path) 47 return PlatformBridge::deleteEmptyDirectory(path); 50 bool getFileSize(const String& path, long long& result) 52 return PlatformBridge::getFileSize(path, result); 55 bool getFileModificationTime(const String& path, time_t& result) 57 return PlatformBridge::getFileModificationTime(path, result); 60 void revealFolderInOS(const String& path) 62 PlatformBridge::revealFolderInOS(path); [all...] |
/libcore/luni/src/main/native/ |
readlink.h | 20 * Fills 'result' with the contents of the symbolic link 'path'. Sets errno and returns false on 25 bool readlink(const char* path, std::string& result);
|
/development/testrunner/test_defs/ |
test_walker.py | 34 def FindTests(self, path): 35 """Gets list of Android tests found at given path. 38 files relative to the given path. 45 FindTests will first scan sub-folders of path for tests. If none are found, 49 Some sample values for path: 65 path: file system path to search 71 if not os.path.exists(path): 72 logger.Log('%s does not exist' % path) [all...] |
/external/openssh/openbsd-compat/ |
dirname.c | 29 dirname(const char *path) 36 if (path == NULL || *path == '\0') { 43 endp = path + strlen(path) - 1; 44 while (endp > path && *endp == '/') 48 while (endp > path && *endp != '/') 52 if (endp == path) { 60 } while (endp > path && *endp == '/'); 63 len = endp - path + 1 [all...] |
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
filesystem.py | 57 def abspath(self, path): 58 return os.path.abspath(path) 60 def basename(self, path): 61 """Wraps os.path.basename().""" 62 return os.path.basename(path) 64 def chdir(self, path): 66 return os.chdir(path) 69 """Copies the contents of the file at the given path to the destinatio [all...] |
filesystem_mock.py | 33 from webkitpy.common.system import path namespace 59 def _raise_not_found(self, path): 60 raise IOError(errno.ENOENT, path, os.strerror(errno.ENOENT)) 62 def _split(self, path): 63 return path.rsplit(self.sep, 1) 65 def abspath(self, path): 66 if os.path.isabs(path): 67 return self.normpath(path) 68 return self.abspath(self.join(self.cwd, path)) [all...] |
/bionic/libc/stdio/ |
mktemp.c | 45 mkstemps(char *path, int slen) 49 return (_gettemp(path, &fd, 0, slen) ? fd : -1); 53 mkstemp(char *path) 57 return (_gettemp(path, &fd, 0, 0) ? fd : -1); 61 mkdtemp(char *path) 63 return(_gettemp(path, (int *)NULL, 1, 0) ? path : (char *)NULL); 69 _mktemp(char *path) 71 return(_gettemp(path, (int *)NULL, 0, 0) ? path : (char *)NULL) [all...] |
/external/chromium/base/ |
file_util_android.cc | 23 mkstemps(char *path, int slen) 27 return (_gettemp(path, &fd, 0, slen) ? fd : -1); 31 mkstemp(char *path) 35 return (_gettemp(path, &fd, 0, 0) ? fd : -1); 39 mkdtemp(char *path) 41 return(_gettemp(path, (int *)NULL, 1, 0) ? path : (char *)NULL); 47 _mktemp(char *path) 49 return(_gettemp(path, (int *)NULL, 0, 0) ? path : (char *)NULL) [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
BstInOrderPathTest.java | 52 BstInOrderPath<SimpleNode> path = extension(factory, d, LEFT, LEFT); local 53 ASSERT.that(pathToList(path)).hasContentsInOrder(a, b, d); 54 path = testNextPathIs(path, b, d); 55 path = testNextPathIs(path, c, b, d); 56 path = testNextPathIs(path, d); 57 path = testNextPathIs(path, e, f, d) 78 BstInOrderPath<SimpleNode> path = extension(factory, d, RIGHT, RIGHT); local 103 BstInOrderPath<SimpleNode> path = extension(factory, d, LEFT, LEFT); local 126 BstInOrderPath<SimpleNode> path = extension(factory, d, RIGHT, RIGHT); local 148 BstInOrderPath<SimpleNode> path = extension(factory, d, LEFT); local 170 BstInOrderPath<SimpleNode> path = extension(factory, d, RIGHT); local [all...] |
/development/testrunner/ |
android_build.py | 37 the absolute file path of the Android build root. 83 The absolute file path of the Android host binary directory. 89 path = os.path.join(GetTop(), "out", "host", os_arch, "bin") 90 if not os.path.exists(path): 91 logger.Log("Error: Host bin path could not be found %s" % path) 93 return path 105 The absolute file path of the Android product directory [all...] |
/bionic/libc/include/ |
libgen.h | 36 /* our version of dirname/basename don't modify the input path */ 37 extern char* dirname (const char* path); 38 extern char* basename(const char* path); 50 * ENAMETOOLONG: the result is too long for a valid path 52 extern int dirname_r(const char* path, char* buffer, size_t bufflen); 53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
|
/development/ndk/platforms/android-3/include/ |
libgen.h | 36 /* our version of dirname/basename don't modify the input path */ 37 extern char* dirname (const char* path); 38 extern char* basename(const char* path); 50 * ENAMETOOLONG: the result is too long for a valid path 52 extern int dirname_r(const char* path, char* buffer, size_t bufflen); 53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
|
/external/bluetooth/bluez/sap/ |
server.h | 25 int sap_server_register(const char *path, bdaddr_t *src); 26 int sap_server_unregister(const char *path);
|
/external/bluetooth/bluez/serial/ |
port.h | 26 int port_register(DBusConnection *conn, const char *path, bdaddr_t *src, 29 int port_unregister(const char *path);
|
/external/chromium/chrome/browser/chromeos/ |
cros_settings_provider.cc | 14 void CrosSettingsProvider::Set(const std::string& path, Value* value) { 19 !::StartsWithASCII(path, "cros.session.", true)) { 20 LOG(ERROR) << "Ignoring the guest request to change: " << path; 23 DoSet(path, value);
|
cros_settings_provider.h | 18 // Sets |in_value| to given |path| in cros settings. 20 void Set(const std::string& path, Value* in_value); 22 // Gets settings value of given |path| to |out_value|. 24 virtual bool Get(const std::string& path, Value** out_value) const = 0; 27 virtual bool HandlesSetting(const std::string& path) = 0; 31 virtual void DoSet(const std::string& path, Value* in_value) = 0;
|
/external/quake/quake/src/QW/server/ |
sys.h | 22 int Sys_FileTime (char *path); 24 void Sys_mkdir (char *path);
|
/external/webkit/Source/WebKit/win/ |
WebKitSystemBits.h | 35 unsigned long long WebVolumeFreeSize(CFStringRef path);
|
/external/webkit/Tools/wx/packaging/ |
build-debian-installer.py | 7 sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "build"))) 11 script_dir = os.path.abspath(os.path.dirname(__file__)) 12 wxwebkit_dir = os.path.abspath(os.path.join(script_dir, "..", "..", "..", "WebKitBuild", "Debug" + build_utils.git_branch_name())) 13 wxwk_root = os.path.abspath(os.path.join(script_dir, "..", "..", "..") [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
prefix.h | 24 /* Update PATH using KEY if PATH starts with PREFIX. The returned 27 extern char *update_path (const char *path, const char *key);
|
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/ |
libgen.h | 36 /* our version of dirname/basename don't modify the input path */ 37 extern char* dirname (const char* path); 38 extern char* basename(const char* path); 50 * ENAMETOOLONG: the result is too long for a valid path 52 extern int dirname_r(const char* path, char* buffer, size_t bufflen); 53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
prefix.h | 24 /* Update PATH using KEY if PATH starts with PREFIX. The returned 27 extern char *update_path (const char *path, const char *key);
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
prefix.h | 24 /* Update PATH using KEY if PATH starts with PREFIX. The returned 27 extern char *update_path (const char *path, const char *key);
|
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/ |
libgen.h | 36 /* our version of dirname/basename don't modify the input path */ 37 extern char* dirname (const char* path); 38 extern char* basename(const char* path); 50 * ENAMETOOLONG: the result is too long for a valid path 52 extern int dirname_r(const char* path, char* buffer, size_t bufflen); 53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
|