HomeSort by relevance Sort by last modified time
    Searched defs:path (Results 26 - 50 of 1478) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libselinux/src/
get_initial_context.c 16 char path[PATH_MAX]; local
26 snprintf(path, sizeof path, "%s%s%s",
28 fd = open(path, O_RDONLY);
getenforce.c 15 char path[PATH_MAX]; local
23 snprintf(path, sizeof path, "%s/enforce", selinux_mnt);
24 fd = open(path, O_RDONLY);
policyvers.c 16 char path[PATH_MAX]; local
25 snprintf(path, sizeof path, "%s/policyvers", selinux_mnt);
26 fd = open(path, O_RDONLY);
  /external/libvpx/libvpx/examples/includes/geshi/contrib/
aliased.php 25 // 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>
example.php 19 $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/
base.py 1 import os.path namespace
26 path = os.path.join(d, lib)
28 if os.path.exists(path):
29 return path
  /external/oprofile/libpopt/
findme.c 15 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/legacy/src/animator/
SkTextOnPath.h 25 SkDrawPath* path; member in class:SkTextOnPath
  /external/skia/src/animator/
SkTextOnPath.h 25 SkDrawPath* path; member in class:SkTextOnPath
  /external/webkit/Source/WebCore/inspector/
inline-javascript-imports.py 37 import os.path namespace
58 fullPath = os.path.join(importsDir, importFileName)
77 outputDirName = os.path.dirname(outputFileName)
  /external/webkit/Source/WebCore/platform/win/
PathWalker.cpp 35 String path = makeString(directory, "\\", pattern); local
36 m_handle = ::FindFirstFileW(path.charactersWithNullTermination(), &m_data);
  /external/webkit/Tools/Scripts/webkitpy/test/
cat.py 23 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__))))
echo.py 23 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__))))
  /frameworks/base/core/java/android/gesture/
OrientedBoundingBox.java 20 import android.graphics.Path;
55 public Path toPath() {
56 Path path = new Path(); local
64 path.moveTo(point[0], point[1]);
69 path.lineTo(point[0], point[1]);
74 path.lineTo(point[0], point[1]);
79 path.lineTo(point[0], point[1]);
81 path.close()
    [all...]
  /libcore/luni/src/main/java/java/net/
InetUnixAddress.java 29 * Constructs an AF_UNIX InetAddress for the given path.
31 public InetUnixAddress(String path) {
32 this(path.getBytes(Charsets.UTF_8));
36 * Constructs an AF_UNIX InetAddress for the given path.
38 public InetUnixAddress(byte[] path) {
39 super(AF_UNIX, path, null);
  /system/core/toolbox/
load_policy.c 16 const char *path; local
23 path = argv[1];
24 fd = open(path, O_RDONLY);
26 fprintf(stderr, "Could not open %s: %s\n", path, strerror(errno));
31 fprintf(stderr, "Could not stat %s: %s\n", path, strerror(errno));
37 fprintf(stderr, "Could not mmap %s: %s\n", path, strerror(errno));
43 fprintf(stderr, "Could not load %s: %s\n", path, strerror(errno));
  /frameworks/ex/carousel/java/com/android/ex/carousel/
CarouselViewUtilities.java 24 File path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES); local
25 File file = new File(path, filename);
28 path.mkdirs();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
SetupStartIndicatorView.java 23 import android.graphics.Path;
85 private final Path mIndicatorPath = new Path();
103 final Path path = mIndicatorPath; local
104 path.rewind();
107 path.moveTo(width, 0.0f);
108 path.lineTo(0.0f, halfHeight);
109 path.lineTo(width, height);
112 path.moveTo(0.0f, 0.0f)
    [all...]
  /build/core/
pathmap.mk 59 # Returns the path to the requested module's include directory,
65 define include-path-for
71 # so make it easy for them to find the correct path.
73 JNI_H_INCLUDE := $(call include-path-for,libnativehelper)/nativehelper
  /build/tools/releasetools/
build_image.py 24 import os.path namespace
45 in_dir: path of input directory.
47 out_file: path of the output image file.
82 unsparse_image = os.path.join(
83 os.path.dirname(out_file), "unsparse_" + os.path.basename(out_file))
162 image_filename = os.path.basename(out_file)
  /external/chromium/base/memory/
scoped_temp_dir_unittest.cc 30 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.
  /external/chromium/chrome/browser/chromeos/cros/
cros_library_loader.cc 39 FilePath path; local
40 if (PathService::Get(chrome::FILE_CHROMEOS_API, &path)) {
41 loaded = LoadLibcros(path.value().c_str(), *load_error_string);
  /external/chromium/chrome/browser/importer/
ie_importer.h 33 FilePath path; member in struct:IEImporter::FavoritesInfo
81 // IE does not have source path. It's used in unit tests only for providing a
  /external/chromium/chrome/browser/metrics/
metrics_service_uitest.cc 55 FilePath path = user_data_dir().Append(chrome::kLocalStateFilename); local
56 return PrefServiceMockBuilder().WithUserFilePrefs(path).Create();
  /external/chromium/net/server/
http_server_request_info.h 27 std::string path; member in class:net::HttpServerRequestInfo

Completed in 868 milliseconds

12 3 4 5 6 7 8 91011>>