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

1234567891011>>

/external/pdfium/build/
H A Dgyp_pdfium.py7 path = os.path.abspath(os.path.split(__file__)[0]) variable
8 execfile(os.path.join(path, 'gyp_pdfium'))
/external/skia/
H A Dgyp_skia.py17 path = os.path.abspath(os.path.split(__file__)[0]) variable
18 execfile(os.path.join(path, 'gyp_skia'))
/external/skia/src/doc/
H A DSkDocument_XPS_None.cpp3 SkDocument* SkDocument::CreateXPS(const char path[], SkScalar) { return NULL; } argument
/external/v8/build/
H A Dgyp_v8.py40 path = os.path.abspath(os.path.split(__file__)[0]) variable
41 execfile(os.path.join(path, 'gyp_v8'))
/external/libselinux/src/
H A Dlsetfilecon.c10 int lsetfilecon(const char *path, const char *context) argument
12 return lsetxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dsetfilecon.c10 int setfilecon(const char *path, const char *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);
H A Ddeny_unknown.c15 char path[PATH_MAX]; local
23 snprintf(path, sizeof(path), "%s/deny_unknown", selinux_mnt);
24 fd = open(path, O_RDONLY);
H A Denabled.c28 char buf[20], path[PATH_MAX]; local
34 snprintf(path, sizeof path, "%s/mls", selinux_mnt);
35 fd = open(path, O_RDONLY);
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, char ** 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, char ** 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);
/external/toybox/toys/other/
H A Dpwdx.c23 char *path; local
26 path = xmprintf("/proc/%s/cwd", *optargs);
27 num_bytes = readlink(path, toybuf, sizeof(toybuf)-1);
28 free(path);
31 path = strerror(errno);
34 path = toybuf;
37 xprintf("%s: %s\n", *optargs, path);
/external/google-breakpad/src/common/linux/
H A Dsafe_readlink.h47 // at least one byte longer than the expected path length (e.g. PATH_MAX,
48 // which is typically defined as the maximum length of a path name
54 bool SafeReadLink(const char* path, char* buffer, size_t buffer_size);
59 bool SafeReadLink(const char* path, char (&buffer)[N]) { argument
60 return SafeReadLink(path, buffer, sizeof(buffer));
H A Dsafe_readlink.cc39 bool SafeReadLink(const char* path, char* buffer, size_t buffer_size) { argument
42 // one byte longer than the expected path length. Also, sys_readlink()
43 // returns the actual path length on success, which does not count the
45 ssize_t result_size = sys_readlink(path, buffer, buffer_size);
/external/icu/icu4c/source/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 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/selinux/libselinux/src/
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/gm/
H A Dsmallarc.cpp37 SkPath path; variable
38 path.moveTo(75, 0);
39 path.cubicTo(33.5, 0, 0, 33.5, 0, 75);
43 canvas->drawPath(path, p);
/external/skia/src/animator/
H A DSkDrawClip.h26 SkDrawPath* path; member in class:SkDrawClip
/external/boringssl/src/crypto/x509/
H A Dx509_d2.c82 const char *path)
93 if (path != NULL)
97 if (X509_LOOKUP_add_dir(lookup,path,X509_FILETYPE_PEM) != 1)
100 if ((path == NULL) && (file == NULL))
81 X509_STORE_load_locations(X509_STORE *ctx, const char *file, const char *path) argument
/external/clang/tools/libclang/
H A DCIndexer.cpp47 // Did we already compute the path?
56 char path[MAX_PATH]; local
59 GetModuleFileNameA((HINSTANCE)mbi.AllocationBase, path, MAX_PATH);
63 strcpy(w32path, path);
65 cygwin_conv_path(CCP_WIN_A_TO_POSIX, w32path, path, MAX_PATH);
67 cygwin_conv_to_full_posix_path(w32path, path);
71 LibClangPath += llvm::sys::path::parent_path(path);
79 LibClangPath += llvm::sys::path::parent_path(info.dli_fname);
82 llvm::sys::path
[all...]
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dglob.cc17 std::string path = argv[1]; local
18 std::string pattern = path + "/glob_test_root/*a";
/external/google-breakpad/src/processor/
H A Dpathname_stripper.cc41 string PathnameStripper::File(const string &path) { argument
42 string::size_type slash = path.rfind('/');
43 string::size_type backslash = path.rfind('\\');
53 return path.substr(file_start);

Completed in 686 milliseconds

1234567891011>>