Searched defs:path (Results 26 - 50 of 1426) sorted by relevance

1234567891011>>

/external/chromium/chrome/common/extensions/
H A DPRESUBMIT.py6 import os.path namespace
10 os.path.normpath("chrome/common/extensions/api"),
11 os.path.normpath("chrome/common/extensions/docs")
16 os.path.normpath("chrome/common/extensions/docs/server")
31 dir = os.path.normpath(input_api.os_path.dirname(f.LocalPath()))
37 dir = os.path.dirname(dir)
/external/compiler-rt/lib/asan/lit_tests/
H A Dshared-lib-test.cc37 string path = string(argv[0]) + "-so.so"; local
38 printf("opening %s ... \n", path.c_str());
39 void *lib = dlopen(path.c_str(), RTLD_NOW);
/external/libselinux/src/
H A Dgetenforce.c15 char path[PATH_MAX]; local
23 snprintf(path, sizeof path, "%s/enforce", selinux_mnt);
24 fd = open(path, O_RDONLY);
H A Dgetfilecon.c10 int getfilecon(const char *path, security_context_t * context) argument
22 ret = getxattr(path, XATTR_NAME_SELINUX, buf, size - 1);
26 size = getxattr(path, XATTR_NAME_SELINUX, NULL, 0);
37 ret = getxattr(path, XATTR_NAME_SELINUX, buf, size - 1);
H A Dlgetfilecon.c10 int lgetfilecon(const char *path, security_context_t * context) argument
22 ret = lgetxattr(path, XATTR_NAME_SELINUX, buf, size - 1);
26 size = lgetxattr(path, XATTR_NAME_SELINUX, NULL, 0);
37 ret = lgetxattr(path, XATTR_NAME_SELINUX, buf, size - 1);
H A Dload_policy.c21 char path[PATH_MAX]; local
29 snprintf(path, sizeof path, "%s/load", selinux_mnt);
30 fd = open(path, O_RDWR);
H A Dpolicyvers.c16 char path[PATH_MAX]; local
25 snprintf(path, sizeof path, "%s/policyvers", selinux_mnt);
26 fd = open(path, O_RDONLY);
H A Dsetenforce.c15 char path[PATH_MAX]; local
23 snprintf(path, sizeof path, "%s/enforce", selinux_mnt);
24 fd = open(path, O_RDWR);
/external/libvpx/examples/includes/geshi/contrib/
H A Daliased.php25 // Get path info
26 $path = SOURCE_ROOT.$_SERVER['PATH_INFO']; variable
30 $real_path = realpath($path);
36 if(!file_exists($path)) {
37 exit("File not found ($path).");
41 $contents = file_get_contents($path);
63 <title>Source code viewer - <?php echo $path; ?></title>
H A Dexample.php19 $path = '../'; variable
21 $path = './'; variable
23 die('Could not find geshi.php - make sure it is in your include path!');
25 require $path . 'geshi.php';
34 $_POST['source'] = implode('', @file($path . 'geshi/' . $_POST['language'] . '.php'));
/external/llvm/bindings/python/llvm/tests/
H A Dbase.py1 import os.path namespace
26 path = os.path.join(d, lib)
28 if os.path.exists(path):
29 return path
/external/openssh/openbsd-compat/
H A Dbasename.c27 basename(const char *path) argument
34 if (path == NULL || *path == '\0') {
41 endp = path + strlen(path) - 1;
42 while (endp > path && *endp == '/')
46 if (endp == path && *endp == '/') {
54 while (startp > path && *(startp - 1) != '/')
/external/openssl/crypto/x509/
H A Dx509_d2.c84 const char *path)
95 if (path != NULL)
99 if (X509_LOOKUP_add_dir(lookup,path,X509_FILETYPE_PEM) != 1)
102 if ((path == NULL) && (file == NULL))
83 X509_STORE_load_locations(X509_STORE *ctx, const char *file, const char *path) argument
/external/oprofile/libpopt/
H A Dfindme.c15 char * path = getenv("PATH"); local
21 /* If there is a / in the argv[0], it has to be an absolute path */
25 if (path == NULL) return NULL;
27 start = pathbuf = alloca(strlen(path) + 1);
28 buf = malloc(strlen(path) + strlen(argv0) + sizeof("/"));
30 strcpy(pathbuf, path);
/external/skia/src/animator/
H A DSkTextOnPath.h25 SkDrawPath* path; member in class:SkTextOnPath
/external/webkit/Source/WebCore/inspector/
H A Dinline-javascript-imports.py37 import os.path namespace
58 fullPath = os.path.join(importsDir, importFileName)
77 outputDirName = os.path.dirname(outputFileName)
/external/webkit/Source/WebCore/page/
H A DGroupSettings.cpp42 void GroupSettings::setIndexedDBDatabasePath(const String& path) argument
44 m_indexedDBDatabasePath = path;
/external/webkit/Source/WebCore/platform/cf/
H A DFileSystemCF.cpp38 CString fileSystemRepresentation(const String& path) argument
40 RetainPtr<CFStringRef> cfString(AdoptCF, path.createCFString());
58 RetainPtr<CFURLRef> pathAsURL(const String& path) argument
67 RetainPtr<CFStringRef>(AdoptCF, path.createCFString()).get(), pathStyle, FALSE));
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitapplicationcache.cpp78 * Returns the current path to the directory WebKit will write web application
79 * cache databases. By default this path is set to $XDG_DATA_HOME/webkit/databases
82 * Returns: the current application cache database directory path
89 CString path = WebCore::fileSystemRepresentation(WebCore::cacheStorage().cacheDirectory()); local
90 return path.data();
/external/webkit/Tools/Scripts/webkitpy/test/
H A Dcat.py23 import os.path namespace
26 # Add WebKitTools/Scripts to the path to ensure we can find webkitpy.
27 sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(__file__))))
H A Decho.py23 import os.path namespace
26 # Add WebKitTools/Scripts to the path to ensure we can find webkitpy.
27 sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(__file__))))
/external/chromium/android/autofill/
H A Dprofile_android.cc40 ProfileImplAndroid::ProfileImplAndroid(const FilePath& path) argument
41 : path_(path)
74 Profile* Profile::CreateProfile(const FilePath& path) { argument
75 return new ProfileImplAndroid(path);
/external/chromium/base/
H A Dbase_paths_linux.cc37 FilePath path; local
55 NOTREACHED() << "Unable to resolve path.";
69 path = FilePath(cr_source_root);
70 if (file_util::PathExists(path.Append(kThisSourceFile))) {
71 *result = path;
80 if (PathService::Get(base::DIR_EXE, &path)) {
81 path = path.DirName().DirName();
82 if (file_util::PathExists(path.Append(kThisSourceFile))) {
83 *result = path;
[all...]
/external/chromium/base/files/
H A Dfile_path_watcher.cc20 bool FilePathWatcher::Watch(const FilePath& path, Delegate* delegate) { argument
21 DCHECK(path.IsAbsolute());
22 return impl_->Watch(path, delegate);
/external/chromium/base/memory/
H A Dscoped_temp_dir_unittest.cc30 FilePath path = dir.Take(); local
31 EXPECT_EQ(path.value(), test_path.value());
51 test_path = dir.path();
61 // Create a path which will contain a unique temp path.
70 test_path = dir.path();
99 FilePath file_path(dir.path().Append(FILE_PATH_LITERAL("temp")));
105 EXPECT_FALSE(dir.path().empty()); // We should still have a valid path.

Completed in 2345 milliseconds

1234567891011>>