Searched defs:path (Results 1 - 25 of 1426) sorted by relevance

1234567891011>>

/external/chromium/build/
H A Ddir_exists.py6 import os.path namespace
9 sys.stdout.write(str(os.path.isdir(sys.argv[1])))
/external/chromium/chrome/browser/chromeos/
H A Dcros_settings_provider.cc14 void CrosSettingsProvider::Set(const std::string& path, Value* value) { argument
19 !::StartsWithASCII(path, "cros.session.", true)) {
20 LOG(ERROR) << "Ignoring the guest request to change: " << path;
23 DoSet(path, value);
/external/chromium/chrome/browser/parsers/
H A Dmetadata_parser_jpeg.cc7 JpegMetadataParser::JpegMetadataParser(const FilePath& path) argument
8 : FileMetadataParser(path) {}
/external/dbus/dbus/
H A Ddbus-nonce.h37 DBusString path; member in struct:DBusNonceFile
/external/libselinux/src/
H A Dlsetfilecon.c10 int lsetfilecon(const char *path, const security_context_t context) argument
12 return lsetxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dsetfilecon.c10 int setfilecon(const char *path, const security_context_t context) argument
12 return setxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dcheck_context.c14 char path[PATH_MAX]; local
22 snprintf(path, sizeof path, "%s/context", selinux_mnt);
23 fd = open(path, O_RDWR);
H A Ddisable.c15 char path[PATH_MAX]; local
23 snprintf(path, sizeof path, "%s/disable", selinux_mnt);
24 fd = open(path, O_WRONLY);
/external/skia/src/animator/
H A DSkDrawClip.h26 SkDrawPath* path; member in class:SkDrawClip
H A DSkTextToPath.h27 SkDrawPath* path; member in class:SkTextToPath
/external/webkit/Source/WebCore/platform/chromium/
H A DFileSystemChromiumLinux.cpp36 String pathGetFileName(const String& path) argument
38 return path.substring(path.reverseFind('/') + 1);
41 String pathGetDisplayFileName(const String& path) argument
43 return pathGetFileName(path);
H A DFileSystemChromiumWin.cpp39 String pathGetFileName(const String& path) argument
41 return String(PathFindFileName(String(path).charactersWithNullTermination()));
44 String pathGetDisplayFileName(const String& path) argument
46 return pathGetFileName(path);
/external/chromium/base/
H A Dfile_util_linux.cc14 bool GetFileSystemType(const FilePath& path, FileSystemType* type) { argument
16 if (statfs(path.value().c_str(), &statfs_buf) < 0) {
H A Dpath_service_unittest.cc19 // Returns true if PathService::Get returns true and sets the path parameter
22 FilePath path; local
23 bool result = PathService::Get(dir_type, &path);
25 // If chromium has never been started on this account, the cache path may not
28 return result && !path.value().empty();
30 return result && !path.value().empty() && file_util::PathExists(path);
36 FilePath path; local
37 bool result = PathService::Get(base::DIR_LOCAL_APP_DATA_LOW, &path);
38 return !result && path
[all...]
/external/icu4c/common/
H A Dresbund_cnv.cpp25 ResourceBundle::ResourceBundle( const UnicodeString& path, argument
30 constructForLocale(path, locale, error);
33 ResourceBundle::ResourceBundle( const UnicodeString& path, argument
37 constructForLocale(path, Locale::getDefault(), error);
41 ResourceBundle::constructForLocale(const UnicodeString& path, argument
45 if (path.isEmpty()) {
49 UnicodeString nullTerminatedPath(path);
/external/openssh/openbsd-compat/
H A Dbsd-statvfs.c24 int statvfs(const char *path, struct statvfs *buf) argument
H A Ddirname.c29 dirname(const char *path) argument
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
[all...]
/external/srec/portable/src/UNIX/
H A DPFileWrapUNIX_OS_Specific.c31 ESR_ReturnCode pf_make_dir ( const LCHAR* path )
35 passert(path!=NULL);
37 if ( mkdir ( path, S_IRWXU|S_IRWXG|S_IRWXO ) == 0)
64 ESR_ReturnCode pf_get_cwd ( LCHAR* path, size_t *len ) argument
68 if ( path != NULL )
70 if ( getcwd ( path, *len ) != NULL)
104 ESR_ReturnCode pf_change_dir ( const LCHAR* path )
108 passert ( path != NULL );
109 passert ( *path != '\0' );
111 if ( chdir ( path )
[all...]
/external/webkit/Source/WebCore/storage/
H A DStorageNamespace.cpp39 PassRefPtr<StorageNamespace> StorageNamespace::localStorageNamespace(const String& path, unsigned quota) argument
41 return StorageNamespaceImpl::localStorageNamespace(path, quota);
/external/webkit/Source/WebKit/chromium/scripts/
H A Dgenerate_devtools_html.py32 import os.path namespace
37 (dir_name, file_name) = os.path.split(resource_path)
82 output_dir_name = os.path.dirname(devtools_html_name)
/external/webkit/Source/WebKit2/Platform/
H A DModule.cpp31 Module::Module(const String& path) argument
32 : m_path(path)
/external/chromium/base/memory/
H A Dscoped_temp_dir.h27 // Recursively delete path.
34 // Creates a unique directory under a given path, and takes ownership of it.
35 bool CreateUniqueTempDirUnderPath(const FilePath& path) WARN_UNUSED_RESULT;
37 // Takes ownership of directory at |path|, creating it if necessary.
39 bool Set(const FilePath& path) WARN_UNUSED_RESULT;
48 const FilePath& path() const { return path_; } function in class:ScopedTempDir
/external/chromium/chrome/browser/download/
H A Dsave_types.cc8 SaveFileCreateInfo::SaveFileCreateInfo(const FilePath& path, argument
12 : path(path),
/external/chromium/chrome/browser/importer/
H A Dfirefox_profile_lock.cc72 FirefoxProfileLock::FirefoxProfileLock(const FilePath& path) { argument
74 lock_file_ = path.Append(kLockFileName);
/external/chromium/chrome/browser/net/
H A Dfile_system_url_request_job_factory.cc21 const std::string path = request->url().path(); local
23 // If the path ends with a /, we know it's a directory. If the path refers
26 if (!path.empty() && path[path.size() - 1] == '/') {

Completed in 535 milliseconds

1234567891011>>