/system/core/toolbox/ |
chmod.c | 21 char *subpath = malloc(sizeof(char)*PATH_MAX); local 33 strcpy(subpath, path); 34 strcat(subpath, "/"); 35 strcat(subpath, dp->d_name); 37 if (chmod(subpath, mode) < 0) { 38 fprintf(stderr, "Unable to chmod %s: %s\n", subpath, strerror(errno)); 42 recurse_chmod(subpath, mode); 44 free(subpath);
|
/external/llvm/utils/llvm-build/llvmbuild/ |
componentinfo.py | 30 def __init__(self, subpath, name, dependencies, parent): 31 if not subpath.startswith('/'): 32 raise ValueError,"invalid subpath: %r" % subpath 33 self.subpath = subpath 95 def parse(subpath, items): 97 return GroupComponentInfo(subpath, **kwargs) 99 def __init__(self, subpath, name, parent): 100 ComponentInfo.__init__(self, subpath, name, [], parent [all...] |
main.py | 67 def recurse(subpath): 69 llvmbuild_path = os.path.join(llvmbuild_source_root + subpath, 76 subpath) 82 for item in recurse(os.path.join(subpath, subdir)): 121 ci.name, ci.subpath, existing.subpath)) 211 info_basedir[ci.subpath] = info_basedir.get(ci.subpath, []) + [ci] 217 if ci.subpath == '/': 220 # Otherwise, append this subpath to the parent list [all...] |
/device/generic/goldfish/opengl/system/gralloc/ |
Android.mk | 7 $(call emugl-set-shared-library-subpath,hw)
|
/device/generic/goldfish/opengl/tests/gles_android_wrapper/ |
Android.mk | 7 $(call emugl-set-shared-library-subpath,egl) 24 $(call emugl-set-shared-library-subpath,egl) 34 $(call emugl-set-shared-library-subpath,egl)
|
/system/core/run-as/ |
package.c | 224 char subpath[PATH_MAX]; local 236 if (nn >= (int)(sizeof subpath)) { 241 /* reject any '..' subpath */ 250 /* copy to 'subpath', then check ownership */ 251 memcpy(subpath, dataPath, nn); 252 subpath[nn] = '\0'; 254 if (check_directory_ownership(subpath, AID_SYSTEM) < 0)
|
/device/generic/goldfish/opengl/system/egl/ |
Android.mk | 7 $(call emugl-set-shared-library-subpath,egl)
|
/external/llvm/utils/lit/lit/ |
discovery.py | 150 subpath = path_in_suite + (filename,) 151 file_execpath = ts.getExecPath(subpath) 172 subiter = getTestsInSuite(ts, subpath, litConfig, testSuiteCache,
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/ |
core-extensions.rb | 5 def /( subpath ) 6 File.join( self, subpath.to_s )
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/ |
finder.py | 58 def subpath(self, path): member in class:_DirectoryTree 139 relpath = tree.subpath(path)
|
/external/chromium_org/third_party/icu/source/tools/tzcode/ |
zdump.c | 1021 char subpath[FILENAME_MAX + 1]; local 1028 strcpy(subpath, relpath); 1029 strcat(subpath, "/"); 1030 strcat(subpath, dir->d_name); 1032 strcpy(subpath, dir->d_name); 1034 getzones(basedir, subpath, last, count);
|
/external/icu4c/tools/tzcode/ |
zdump.c | 1021 char subpath[FILENAME_MAX + 1]; local 1028 strcpy(subpath, relpath); 1029 strcat(subpath, "/"); 1030 strcat(subpath, dir->d_name); 1032 strcpy(subpath, dir->d_name); 1034 getzones(basedir, subpath, last, count);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/ |
test_importer.py | 307 subpath = os.path.relpath(orig_path, self.repo_dir) 308 new_path = os.path.join(self.destination_directory, subpath)
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrDefaultPathRenderer.cpp | 250 int subpath = 0; local 264 ++subpath;
|
/external/skia/src/gpu/ |
GrDefaultPathRenderer.cpp | 250 int subpath = 0; local 264 ++subpath;
|
/device/generic/goldfish/opengl/ |
common.mk | 235 # For example: $(call emugl-set-shared-library-subpath,egl) 236 emugl-set-shared-library-subpath = \
|
/sdk/emulator/opengl/ |
common.mk | 234 # For example: $(call emugl-set-shared-library-subpath,egl) 235 emugl-set-shared-library-subpath = \
|
/external/chromium_org/chrome/browser/policy/ |
policy_loader_win_unittest.cc | 728 string16 subpath = path + kPathSep + UTF8ToUTF16(key); local 733 AppendPolicyToPRegFile(subpath, entry.key(), &entry.value()); 738 string16 subpath = path + kPathSep + UTF8ToUTF16(key); local 744 AppendPolicyToPRegFile(subpath, base::IntToString(i + 1), entry); [all...] |
/external/chromium_org/chrome/utility/importer/ |
ie_importer_win.cc | 233 base::FilePath subpath(path.Append(child.Name())); 234 if (!ParseFavoritesOrderRegistryTree(importer, subkey, subpath,
|
/external/chromium_org/third_party/lcov-1.9/bin/ |
lcov | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
mailbox.py | 346 subpath = self._lookup(key) 347 f = open(os.path.join(self._path, subpath), 'r') 355 subdir, name = os.path.split(subpath) 359 msg.set_date(os.path.getmtime(os.path.join(self._path, subpath))) 532 """Use TOC to return subpath for given key, or raise a KeyError.""" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
mailbox.py | 346 subpath = self._lookup(key) 347 f = open(os.path.join(self._path, subpath), 'r') 355 subdir, name = os.path.split(subpath) 359 msg.set_date(os.path.getmtime(os.path.join(self._path, subpath))) 532 """Use TOC to return subpath for given key, or raise a KeyError.""" [all...] |