HomeSort by relevance Sort by last modified time
    Searched refs:fullname (Results 1 - 25 of 146) sorted by null

1 2 3 4 5 6

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
linecache.py 56 size, mtime, lines, fullname = cache[filename]
60 stat = os.stat(fullname)
78 fullname = filename
80 stat = os.stat(fullname)
102 [line+'\n' for line in data.splitlines()], fullname
115 fullname = os.path.join(dirname, basename)
120 stat = os.stat(fullname)
127 with open(fullname, 'rU') as fp:
134 cache[filename] = size, mtime, lines, fullname
compileall.py 44 fullname = os.path.join(dir, name)
46 fullname = fullname.replace('\\','/')
51 if not os.path.isdir(fullname):
52 if not compile_file(fullname, ddir, force, rx, quiet):
56 os.path.isdir(fullname) and \
57 not os.path.islink(fullname):
58 if not compile_dir(fullname, maxlevels - 1, dfile, force, rx,
63 def compile_file(fullname, ddir=None, force=0, rx=None, quiet=0):
66 Arguments (only fullname is required)
    [all...]
pkgutil.py 176 def find_module(self, fullname, path=None):
178 subname = fullname.split(".")[-1]
179 if subname != fullname and self.path is None:
189 return ImpLoader(fullname, file, filename, etc)
237 def __init__(self, fullname, file, filename, etc):
240 self.fullname = fullname
243 def load_module(self, fullname):
246 mod = imp.load_module(fullname, self.file, self.filename, self.etc)
265 def _fix_name(self, fullname)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
linecache.py 56 size, mtime, lines, fullname = cache[filename]
60 stat = os.stat(fullname)
78 fullname = filename
80 stat = os.stat(fullname)
102 [line+'\n' for line in data.splitlines()], fullname
115 fullname = os.path.join(dirname, basename)
120 stat = os.stat(fullname)
127 with open(fullname, 'rU') as fp:
134 cache[filename] = size, mtime, lines, fullname
compileall.py 44 fullname = os.path.join(dir, name)
46 fullname = fullname.replace('\\','/')
51 if not os.path.isdir(fullname):
52 if not compile_file(fullname, ddir, force, rx, quiet):
56 os.path.isdir(fullname) and \
57 not os.path.islink(fullname):
58 if not compile_dir(fullname, maxlevels - 1, dfile, force, rx,
63 def compile_file(fullname, ddir=None, force=0, rx=None, quiet=0):
66 Arguments (only fullname is required)
    [all...]
pkgutil.py 176 def find_module(self, fullname, path=None):
178 subname = fullname.split(".")[-1]
179 if subname != fullname and self.path is None:
189 return ImpLoader(fullname, file, filename, etc)
237 def __init__(self, fullname, file, filename, etc):
240 self.fullname = fullname
243 def load_module(self, fullname):
246 mod = imp.load_module(fullname, self.file, self.filename, self.etc)
265 def _fix_name(self, fullname)
    [all...]
  /external/chromium/sdch/open-vcdiff/packages/
rpm.sh 15 fullname="${PACKAGE}-${VERSION}"
16 archive=../$fullname.tar.gz
39 RPM_SOURCE_DIR="/tmp/rpmsource-$fullname"
40 RPM_BUILD_DIR="/tmp/rpmbuild-$fullname"
  /external/chromium_org/sdch/open-vcdiff/packages/
rpm.sh 29 fullname="${PACKAGE}-${VERSION}"
30 archive=../$fullname.tar.gz
53 RPM_SOURCE_DIR="/tmp/rpmsource-$fullname"
54 RPM_BUILD_DIR="/tmp/rpmbuild-$fullname"
  /external/open-vcdiff/packages/
rpm.sh 29 fullname="${PACKAGE}-${VERSION}"
30 archive=../$fullname.tar.gz
53 RPM_SOURCE_DIR="/tmp/rpmsource-$fullname"
54 RPM_BUILD_DIR="/tmp/rpmbuild-$fullname"
  /system/core/sh/
main.c 340 char *fullname; local
348 while ((fullname = padvance(&path, basename)) != NULL) {
349 if ((stat(fullname, &statb) == 0) && S_ISREG(statb.st_mode)) {
354 return fullname;
356 stunalloc(fullname);
370 char *fullname; local
374 fullname = find_dot_file(argv[1]);
375 setinputfile(fullname, 1);
376 commandname = fullname;
  /external/e2fsprogs/debugfs/
dump.c 189 const char *fullname)
231 if (symlink(buf, fullname) == -1) {
232 com_err("rdump", errno, "while creating symlink %s -> %s", buf, fullname);
245 char *fullname; local
249 fullname = malloc(strlen(dumproot) + strlen(name) + 2);
250 if (!fullname) {
254 sprintf(fullname, "%s/%s", dumproot, name);
257 rdump_symlink(ino, inode, fullname);
260 fd = open(fullname, O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE, S_IRWXU);
262 com_err("rdump", errno, "while dumping %s", fullname);
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/packages/
rpm.sh 15 fullname="${PACKAGE}-${VERSION}"
16 archive=../$fullname.tar.gz
39 RPM_SOURCE_DIR="/tmp/rpmsource-$fullname"
40 RPM_BUILD_DIR="/tmp/rpmbuild-$fullname"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_importhooks.py 62 def find_module(self, fullname, path=None):
63 if fullname in self.modules:
68 def load_module(self, fullname):
69 ispkg, code = self.modules[fullname]
70 mod = sys.modules.setdefault(fullname,imp.new_module(fullname))
94 def find_module(self, fullname, path=None):
95 if fullname in self.namestoblock:
98 def load_module(self, fullname):
109 def find_module(self, fullname, path=None)
    [all...]
test_pkg.py 16 fullname = os.path.join(root, name)
17 if os.path.isdir(fullname) and not os.path.islink(fullname):
18 cleanout(fullname)
20 os.remove(fullname)
74 fullname = root
76 fullname = os.path.join(fullname, c)
78 os.mkdir(fullname)
80 f = open(fullname, "w"
    [all...]
test_importlib.py 94 def find_module(self, fullname, path=None):
95 if fullname not in self.modules:
100 def load_module(self, fullname):
101 if fullname not in self.modules:
104 sys.modules[fullname] = self.modules[fullname]
105 return self.modules[fullname]
test_pkgutil.py 95 def load_module(self, fullname):
97 mod = sys.modules.setdefault(fullname, imp.new_module(fullname))
110 def find_module(self, fullname, path=None):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_importhooks.py 62 def find_module(self, fullname, path=None):
63 if fullname in self.modules:
68 def load_module(self, fullname):
69 ispkg, code = self.modules[fullname]
70 mod = sys.modules.setdefault(fullname,imp.new_module(fullname))
94 def find_module(self, fullname, path=None):
95 if fullname in self.namestoblock:
98 def load_module(self, fullname):
109 def find_module(self, fullname, path=None)
    [all...]
test_pkg.py 16 fullname = os.path.join(root, name)
17 if os.path.isdir(fullname) and not os.path.islink(fullname):
18 cleanout(fullname)
20 os.remove(fullname)
74 fullname = root
76 fullname = os.path.join(fullname, c)
78 os.mkdir(fullname)
80 f = open(fullname, "w"
    [all...]
test_importlib.py 94 def find_module(self, fullname, path=None):
95 if fullname not in self.modules:
100 def load_module(self, fullname):
101 if fullname not in self.modules:
104 sys.modules[fullname] = self.modules[fullname]
105 return self.modules[fullname]
test_pkgutil.py 95 def load_module(self, fullname):
97 mod = sys.modules.setdefault(fullname, imp.new_module(fullname))
110 def find_module(self, fullname, path=None):
  /external/oprofile/opcontrol/
opcontrol.cpp 419 char fullname[512]; local
424 snprintf(fullname, 512, OP_DRIVER_BASE"/%d/%s", counter, file);
427 snprintf(fullname, 512, OP_DRIVER_BASE"/%s", file);
429 fd = open(fullname, O_WRONLY);
431 fprintf(stderr, "Cannot open %s: %s\n", fullname, strerror(errno));
440 verbose("Configure %s (%s)\n", fullname, content);
449 char fullname[512]; local
455 sprintf(fullname, OP_DRIVER_BASE"/%d/enabled", i);
456 num = read_num(fullname);
461 sprintf(fullname, OP_DRIVER_BASE"/%d/event", i)
    [all...]
  /external/valgrind/main/coregrind/
launcher-linux.c 84 static char fullname[PATH_MAX]; local
92 strcpy(fullname, path);
97 memcpy(fullname, path, colon - path);
98 fullname[colon - path] = '\0';
102 strcat(fullname, "/");
103 strcat(fullname, clientname);
105 if (access(fullname, R_OK|X_OK) == 0)
106 return fullname;
launcher-darwin.c 101 static char fullname[PATH_MAX]; local
109 strcpy(fullname, path);
114 memcpy(fullname, path, colon - path);
115 fullname[colon - path] = '\0';
119 strcat(fullname, "/");
120 strcat(fullname, clientname);
122 if (access(fullname, R_OK|X_OK) == 0)
123 return fullname;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
bdist_wininst.py 185 fullname = self.distribution.get_fullname()
189 self.create_exe(arcname, fullname, self.bitmap)
195 self.get_installer_filename(fullname)))
254 def create_exe (self, arcname, fullname, bitmap=None):
261 installer_name = self.get_installer_filename(fullname)
309 def get_installer_filename(self, fullname):
316 (fullname, self.plat_name, self.target_version))
319 "%s.%s.exe" % (fullname, self.plat_name))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
bdist_wininst.py 185 fullname = self.distribution.get_fullname()
189 self.create_exe(arcname, fullname, self.bitmap)
195 self.get_installer_filename(fullname)))
254 def create_exe (self, arcname, fullname, bitmap=None):
261 installer_name = self.get_installer_filename(fullname)
309 def get_installer_filename(self, fullname):
316 (fullname, self.plat_name, self.target_version))
319 "%s.%s.exe" % (fullname, self.plat_name))

Completed in 1571 milliseconds

1 2 3 4 5 6