Searched defs:pathname (Results 1 - 25 of 197) sorted by relevance

12345678

/external/syslinux/com32/lib/
H A Dcreat.c9 int creat(const char *pathname, mode_t mode) argument
11 return open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
/external/ltp/include/lapi/
H A Dreadlinkat.h27 int readlinkat(int dirfd, const char *pathname, char *buf, size_t bufsiz) argument
29 return ltp_syscall(__NR_readlinkat, dirfd, pathname, buf, bufsiz);
/external/ltp/testcases/kernel/syscalls/openat/
H A Dopenat.h29 int openat(int dirfd, const char *pathname, int flags, mode_t mode) argument
31 return ltp_syscall(__NR_openat, dirfd, pathname, flags, mode);
/external/python/cpython2/Python/
H A Ddynload_dl.c20 const char *pathname, FILE *fp)
25 return dl_loadmod(Py_GetProgramName(), pathname, funcname);
19 _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, const char *pathname, FILE *fp) argument
H A Ddynload_atheos.c18 const char *pathname, FILE *fp)
25 printf("load_library %s\n", pathname);
27 lib = load_library(pathname, 0);
31 perror(pathname);
33 pathname, strerror(errno));
17 _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, const char *pathname, FILE *fp) argument
H A Dimportdl.c17 const char *pathname, FILE *fp);
22 _PyImport_LoadDynamicModule(char *name, char *pathname, FILE *fp) argument
28 if ((m = _PyImport_FindExtension(name, pathname)) != NULL) {
42 p = _PyImport_GetDynLoadFunc(name, shortname, pathname, fp);
65 if (PyModule_AddStringConstant(m, "__file__", pathname) < 0)
68 if (_PyImport_FixupExtension(name, pathname) == NULL)
73 name, pathname);
H A Ddynload_hpux.c23 const char *pathname, FILE *fp)
34 printf("shl_load %s\n",pathname);
36 lib = shl_load(pathname, flags, 0);
41 perror(pathname);
43 pathname);
22 _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, const char *pathname, FILE *fp) argument
H A Ddynload_os2.c19 const char *pathname, FILE *fp)
29 pathname,
18 _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, const char *pathname, FILE *fp) argument
/external/python/cpython3/Python/
H A Ddynload_dl.c17 const char *pathname, FILE *fp)
22 return dl_loadmod(Py_GetProgramName(), pathname, funcname);
15 _PyImport_FindSharedFuncptr(const char *prefix, const char *shortname, const char *pathname, FILE *fp) argument
H A Ddynload_hpux.c20 const char *pathname, FILE *fp)
31 printf("shl_load %s\n",pathname);
33 lib = shl_load(pathname, flags, 0);
42 perror(pathname);
44 pathname);
47 pathname_ob = PyUnicode_FromString(pathname);
18 _PyImport_FindSharedFuncptr(const char *prefix, const char *shortname, const char *pathname, FILE *fp) argument
/external/syslinux/com32/lib/sys/
H A Dopen.c54 int open(const char *pathname, int flags, ...) argument
61 //printf("enter, file = %s, fd = %d\n", pathname, fd);
68 handle = open_file(pathname, flags, &fp->i.fd);
/external/ltp/testcases/kernel/syscalls/fanotify/
H A Dfanotify.h50 int dfd, const char *pathname)
52 return syscall(__NR_fanotify_mark, fd, flags, mask, dfd, pathname);
49 fanotify_mark(int fd, unsigned int flags, uint64_t mask, int dfd, const char *pathname) argument
/external/python/cpython2/RISCOS/Python/
H A Ddynload_riscos.c51 char *pathname, FILE *fp)
57 err = dlk_load_no_init(pathname, &init_function);
50 _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, char *pathname, FILE *fp) argument
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
49 // handles platform-specific conventions (like the pathname separator).
64 explicit FilePath(const char* pathname) : pathname_(pathname) { argument
68 explicit FilePath(const String& pathname) : pathname_(pathname) { argument
102 // Returns a pathname for a file that does not currently exist. The pathname
105 // already exists. The number will be incremented until a pathname is found
160 // Returns true if pathname describe
[all...]
/external/googletest/googletest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
49 // handles platform-specific conventions (like the pathname separator).
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) { argument
98 // Returns a pathname for a file that does not currently exist. The pathname
101 // already exists. The number will be incremented until a pathname is found
156 // Returns true if pathname describes a directory in the file-system
165 // Returns true if pathname describes a root directory. (Windows has one
169 // Returns true if pathname describe
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
49 // handles platform-specific conventions (like the pathname separator).
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) { argument
98 // Returns a pathname for a file that does not currently exist. The pathname
101 // already exists. The number will be incremented until a pathname is found
156 // Returns true if pathname describes a directory in the file-system
165 // Returns true if pathname describes a root directory. (Windows has one
169 // Returns true if pathname describe
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
49 // handles platform-specific conventions (like the pathname separator).
64 explicit FilePath(const char* pathname) : pathname_(pathname) { argument
68 explicit FilePath(const String& pathname) : pathname_(pathname) { argument
102 // Returns a pathname for a file that does not currently exist. The pathname
105 // already exists. The number will be incremented until a pathname is found
160 // Returns true if pathname describe
[all...]
/external/ltp/include/
H A Dtst_safe_posix_ipc.h30 #define SAFE_MQ_OPEN(pathname, oflags, ...) \
31 safe_mq_open(__FILE__, __LINE__, (pathname), (oflags), ##__VA_ARGS__)
34 const char *pathname, int oflags, ...)
56 rval = mq_open(pathname, oflags, mode, attr);
59 file, lineno, pathname, oflags, mode, attr);
33 safe_mq_open(const char *file, const int lineno, const char *pathname, int oflags, ...) argument
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
49 // handles platform-specific conventions (like the pathname separator).
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) { argument
98 // Returns a pathname for a file that does not currently exist. The pathname
101 // already exists. The number will be incremented until a pathname is found
156 // Returns true if pathname describes a directory in the file-system
165 // Returns true if pathname describes a root directory. (Windows has one
169 // Returns true if pathname describe
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
49 // handles platform-specific conventions (like the pathname separator).
64 explicit FilePath(const char* pathname) : pathname_(pathname) { argument
68 explicit FilePath(const String& pathname) : pathname_(pathname) { argument
102 // Returns a pathname for a file that does not currently exist. The pathname
105 // already exists. The number will be incremented until a pathname is found
160 // Returns true if pathname describe
[all...]
/external/squashfs-tools/squashfs-tools/
H A Dunsquashfs_info.c45 char *pathname = NULL; variable
52 if(pathname)
53 free(pathname);
55 pathname = NULL;
61 if(pathname)
62 free(pathname);
64 pathname = name;
121 if(pathname)
122 INFO("%s\n", pathname);
H A Dunsquashfs_xattr.c40 void write_xattr(char *pathname, unsigned int xattr) argument
55 ERROR("Failed to read xattrs for file %s\n", pathname);
66 int res = lsetxattr(pathname, xattr_list[i].full_name,
85 pathname);
109 pathname);
120 pathname, strerror(errno));
133 xattr_list[i].full_name, pathname);
/external/strace/tests/
H A Dfutimesat.c54 const kernel_ulong_t pathname,
57 long rc = syscall(__NR_futimesat, dirfd, pathname, times);
91 /* pathname */
53 k_futimesat(const kernel_ulong_t dirfd, const kernel_ulong_t pathname, const kernel_ulong_t times) argument
H A Dutimensat.c54 const kernel_ulong_t pathname,
58 long rc = syscall(__NR_utimensat, dirfd, pathname, times, flags);
93 /* pathname */
53 k_utimensat(const kernel_ulong_t dirfd, const kernel_ulong_t pathname, const kernel_ulong_t times, const kernel_ulong_t flags) argument
H A Dxutimes.c60 k_utimes(const kernel_ulong_t pathname, const kernel_ulong_t times) argument
62 long rc = syscall(TEST_SYSCALL_NR, pathname, times);
77 /* pathname */

Completed in 4164 milliseconds

12345678