HomeSort by relevance Sort by last modified time
    Searched full:subpath (Results 1 - 25 of 73) sorted by null

1 2 3

  /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 33 def __init__(self, subpath, name, dependencies, parent):
34 if not subpath.startswith('/'):
35 raise ValueError("invalid subpath: %r" % subpath)
36 self.subpath = subpath
98 def parse(subpath, items):
100 return GroupComponentInfo(subpath, **kwargs)
102 def __init__(self, subpath, name, parent):
103 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)
  /external/chromium_org/content/ppapi_plugin/
ppapi.sb 20 (allow file-read* (subpath "@USER_HOMEDIR_AS_LITERAL@/Library/Fonts")) ; 10.6
  /device/generic/goldfish/opengl/system/egl/
Android.mk 7 $(call emugl-set-shared-library-subpath,egl)
  /external/chromium_org/content/renderer/
renderer.sb 25 (allow file-read* (subpath "@USER_HOMEDIR_AS_LITERAL@/Library/Fonts")) ; 10.6
  /system/core/run-as/
package.c 226 char subpath[PATH_MAX]; local
238 if (nn >= (int)(sizeof subpath)) {
243 /* reject any '..' subpath */
252 /* copy to 'subpath', then check ownership */
253 memcpy(subpath, dataPath, nn);
254 subpath[nn] = '\0';
256 if (check_directory_ownership(subpath, AID_SYSTEM) < 0)
  /external/llvm/utils/lit/lit/
discovery.py 160 subpath = path_in_suite + (filename,)
161 file_execpath = ts.getExecPath(subpath)
182 subiter = getTestsInSuite(ts, subpath, litConfig, testSuiteCache,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceClipper.cpp 121 Path subPath;
122 styled->toClipPath(subPath);
123 subPath.setWindRule(svgStyle->clipRule());
124 if (!clipPath.unionPath(subPath))
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/mathmaps/
math_map.js 76 * Subpath to dir containing ChromeVox JSON definitions for symbols.
85 * Subpath to dir containing ChromeVox JSON definitions for functions.
  /external/chromium_org/chrome/common/extensions/docs/server2/
test_file_system.py 47 for subpath, subitem in item.iteritems():
48 update_result(subitem, path + subpath)
content_providers.py 89 property that is a subpath of |path|, serve_from is that property, and
  /external/chromium_org/tools/memory_inspector/memory_inspector/classification/
native_heap_classifier_unittest.py 83 (22, '/root/base2/subpath/file.cc'), # Contrib: 0.28
96 'Total::/root/::base2/::subpath/': [22],
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DefaultHdfParser.java 108 private String createFullPath(List<String> context, String subPath) {
113 result.append(subPath);
  /development/samples/BackupRestore/src/com/example/android/backuprestore/
FileHelperExampleAgent.java 58 * also handle files stored at any subpath within that location. All we
  /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/icu/icu4c/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);
  /frameworks/base/core/java/android/app/
DownloadManager.java 486 * @param subPath the path within the external directory, including the
493 String subPath) {
508 setDestinationFromBase(file, subPath);
521 * @param subPath the path within the external directory, including the
527 public Request setDestinationInExternalPublicDir(String dirType, String subPath) {
542 setDestinationFromBase(file, subPath);
546 private void setDestinationFromBase(File base, String subPath) {
547 if (subPath == null) {
548 throw new NullPointerException("subPath cannot be null");
550 mDestinationUri = Uri.withAppendedPath(Uri.fromFile(base), subPath);
    [all...]
  /device/generic/goldfish/opengl/
common.mk 235 # For example: $(call emugl-set-shared-library-subpath,egl)
236 emugl-set-shared-library-subpath = \
  /external/chromium_org/third_party/skia/src/gpu/
GrDefaultPathRenderer.cpp 249 int subpath = 0; local
263 ++subpath;
  /external/skia/src/gpu/
GrDefaultPathRenderer.cpp 249 int subpath = 0; local
263 ++subpath;

Completed in 1375 milliseconds

1 2 3