HomeSort by relevance Sort by last modified time
    Searched refs:pathname (Results 26 - 50 of 1156) sorted by null

12 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
importdl.c 17 const char *pathname, FILE *fp);
22 _PyImport_LoadDynamicModule(char *name, char *pathname, FILE *fp)
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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
importdl.c 17 const char *pathname, FILE *fp);
22 _PyImport_LoadDynamicModule(char *name, char *pathname, FILE *fp)
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);
  /external/squashfs-tools/squashfs-tools/
unsquashfs_xattr.c 40 void write_xattr(char *pathname, unsigned int xattr)
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);
  /bionic/libc/bionic/
fchmodat.cpp 39 int fchmodat(int dirfd, const char* pathname, mode_t mode, int flags) {
50 int fd = openat(dirfd, pathname, O_PATH | O_NOFOLLOW | O_CLOEXEC);
66 return ___fchmodat(dirfd, pathname, mode);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
MkdCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
37 public static final String PATHNAME_KEY = "pathname";
50 String pathname = command.getRequiredParameter(0); local
51 invocationRecord.set(PATHNAME_KEY, pathname);
52 sendReply(session, pathname);
StatCommandHandler.java 26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
27 * pathname is specified. You can customize the returned status information by setting
32 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory (or file) submitted on the
42 public static final String PATHNAME_KEY = "pathname";
54 String pathname = command.getOptionalString(0); local
55 invocationRecord.set(PATHNAME_KEY, pathname);
59 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
MkdCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
38 public static final String PATHNAME_KEY = "pathname";
51 String pathname = command.getRequiredString(0); local
52 invocationRecord.set(PATHNAME_KEY, pathname);
53 sendReply(session, pathname);
StatCommandHandler.java 26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
27 * pathname is specified. You can customize the returned status information by setting
32 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory (or file) submitted on the
44 public static final String PATHNAME_KEY = "pathname";
59 String pathname = command.getOptionalString(0); local
60 invocationRecord.set(PATHNAME_KEY, pathname);
64 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
glob.py 18 def glob(pathname):
19 """Return a list of paths matching a pathname pattern.
27 return list(iglob(pathname))
29 def iglob(pathname):
30 """Return an iterator which yields the paths matching a pathname pattern.
38 if not has_magic(pathname):
39 if os.path.lexists(pathname):
40 yield pathname
42 dirname, basename = os.path.split(pathname)
50 if dirname != pathname and has_magic(dirname)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
glob.py 18 def glob(pathname):
19 """Return a list of paths matching a pathname pattern.
27 return list(iglob(pathname))
29 def iglob(pathname):
30 """Return an iterator which yields the paths matching a pathname pattern.
38 if not has_magic(pathname):
39 if os.path.lexists(pathname):
40 yield pathname
42 dirname, basename = os.path.split(pathname)
50 if dirname != pathname and has_magic(dirname)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
glob.py 18 def glob(pathname):
19 """Return a list of paths matching a pathname pattern.
27 return list(iglob(pathname))
29 def iglob(pathname):
30 """Return an iterator which yields the paths matching a pathname pattern.
38 if not has_magic(pathname):
39 if os.path.lexists(pathname):
40 yield pathname
42 dirname, basename = os.path.split(pathname)
50 if dirname != pathname and has_magic(dirname)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
glob.py 18 def glob(pathname):
19 """Return a list of paths matching a pathname pattern.
27 return list(iglob(pathname))
29 def iglob(pathname):
30 """Return an iterator which yields the paths matching a pathname pattern.
38 if not has_magic(pathname):
39 if os.path.lexists(pathname):
40 yield pathname
42 dirname, basename = os.path.split(pathname)
50 if dirname != pathname and has_magic(dirname)
    [all...]
  /external/webrtc/webrtc/base/
win32filesystem.cc 34 bool Win32Filesystem::CreateFolder(const Pathname &pathname) {
35 if (pathname.pathname().empty() || !pathname.filename().empty())
39 if (!Utf8ToWindowsFilename(pathname.pathname(), &path16))
53 if (!pathname.parent_folder().empty()) {
54 Pathname parent(pathname);
    [all...]
pathutils.cc 43 // Pathname - parsing of pathnames into components, and vice versa
46 bool Pathname::IsFolderDelimiter(char ch) {
50 char Pathname::DefaultFolderDelimiter() {
54 Pathname::Pathname()
58 Pathname::Pathname(const std::string& pathname)
60 SetPathname(pathname);
63 Pathname::Pathname(const std::string& folder, const std::string& filename
91 std::string Pathname::pathname() const { function in class:rtc::Pathname
    [all...]
unixfilesystem.h 39 FileStream* OpenFile(const Pathname& filename,
44 bool CreatePrivateFile(const Pathname& filename) override;
48 bool DeleteFile(const Pathname& filename) override;
53 bool DeleteEmptyFolder(const Pathname& folder) override;
59 virtual bool CreateFolder(const Pathname &pathname, mode_t mode);
62 bool CreateFolder(const Pathname& pathname) override;
67 bool MoveFile(const Pathname& old_path, const Pathname& new_path) override
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
glob.py 10 def glob(pathname):
11 """Return a list of paths matching a pathname pattern.
16 return list(iglob(pathname))
18 def iglob(pathname):
19 """Return an iterator which yields the paths matching a pathname pattern.
24 if not has_magic(pathname):
25 if os.path.lexists(pathname):
26 yield pathname
28 dirname, basename = os.path.split(pathname)
  /external/libchrome/sandbox/linux/syscall_broker/
broker_client.cc 37 const char* pathname,
41 if (!pathname)
61 pathname, flags, NULL /* file_to_open */,
66 !broker_policy_.GetFileNameIfAllowedToAccess(pathname, flags, NULL)) {
73 write_pickle.WriteString(pathname);
136 int BrokerClient::Access(const char* pathname, int mode) const {
137 return PathAndFlagsSyscall(COMMAND_ACCESS, pathname, mode);
140 int BrokerClient::Open(const char* pathname, int flags) const {
141 return PathAndFlagsSyscall(COMMAND_OPEN, pathname, flags);
  /external/selinux/python/sepolgen/src/sepolgen/
defaults.py 26 def __init__(self, pathname):
28 if not os.path.exists(pathname):
32 self.config_pathname = pathname
35 for lineno, line in enumerate(open(pathname)):
39 raise ValueError("%s:%d: line is not in key = value format" % (pathname, lineno+1))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
defaults.py 26 def __init__(self, pathname):
28 if not os.path.exists(pathname):
32 self.config_pathname = pathname
35 for lineno, line in enumerate(open(pathname)):
39 raise ValueError("%s:%d: line is not in key = value format" % (pathname, lineno+1))
  /development/ndk/platforms/android-21/include/
fcntl.h 96 int open(const char* pathname, int flags, ...) {
108 return __open_2(pathname, flags);
111 return __open_real(pathname, flags, __builtin_va_arg_pack());
115 int openat(int dirfd, const char* pathname, int flags, ...) {
127 return __openat_2(dirfd, pathname, flags);
130 return __openat_real(dirfd, pathname, flags, __builtin_va_arg_pack());
  /prebuilts/ndk/r10/platforms/android-21/arch-arm/usr/include/
fcntl.h 96 int open(const char* pathname, int flags, ...) {
108 return __open_2(pathname, flags);
111 return __open_real(pathname, flags, __builtin_va_arg_pack());
115 int openat(int dirfd, const char* pathname, int flags, ...) {
127 return __openat_2(dirfd, pathname, flags);
130 return __openat_real(dirfd, pathname, flags, __builtin_va_arg_pack());
  /prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/
fcntl.h 96 int open(const char* pathname, int flags, ...) {
108 return __open_2(pathname, flags);
111 return __open_real(pathname, flags, __builtin_va_arg_pack());
115 int openat(int dirfd, const char* pathname, int flags, ...) {
127 return __openat_2(dirfd, pathname, flags);
130 return __openat_real(dirfd, pathname, flags, __builtin_va_arg_pack());
  /prebuilts/ndk/r10/platforms/android-21/arch-mips/usr/include/
fcntl.h 96 int open(const char* pathname, int flags, ...) {
108 return __open_2(pathname, flags);
111 return __open_real(pathname, flags, __builtin_va_arg_pack());
115 int openat(int dirfd, const char* pathname, int flags, ...) {
127 return __openat_2(dirfd, pathname, flags);
130 return __openat_real(dirfd, pathname, flags, __builtin_va_arg_pack());
  /prebuilts/ndk/r10/platforms/android-21/arch-mips64/usr/include/
fcntl.h 96 int open(const char* pathname, int flags, ...) {
108 return __open_2(pathname, flags);
111 return __open_real(pathname, flags, __builtin_va_arg_pack());
115 int openat(int dirfd, const char* pathname, int flags, ...) {
127 return __openat_2(dirfd, pathname, flags);
130 return __openat_real(dirfd, pathname, flags, __builtin_va_arg_pack());
  /prebuilts/ndk/r10/platforms/android-21/arch-x86/usr/include/
fcntl.h 96 int open(const char* pathname, int flags, ...) {
108 return __open_2(pathname, flags);
111 return __open_real(pathname, flags, __builtin_va_arg_pack());
115 int openat(int dirfd, const char* pathname, int flags, ...) {
127 return __openat_2(dirfd, pathname, flags);
130 return __openat_real(dirfd, pathname, flags, __builtin_va_arg_pack());

Completed in 699 milliseconds

12 3 4 5 6 7 8 91011>>