HomeSort by relevance Sort by last modified time
    Searched refs:subpath (Results 1 - 15 of 15) sorted by null

  /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))
209 info_basedir[ci.subpath] = info_basedir.get(ci.subpath, []) + [ci]
215 if ci.subpath == '/':
218 # Otherwise, append this subpath to the parent list
    [all...]
  /development/tools/emulator/opengl/system/gralloc/
Android.mk 7 $(call emugl-set-shared-library-subpath,hw)
  /development/tools/emulator/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 203 char subpath[PATH_MAX]; local
215 if (nn >= (int)(sizeof subpath)) {
220 /* reject any '..' subpath */
229 /* copy to 'subpath', then check ownership */
230 memcpy(subpath, dataPath, nn);
231 subpath[nn] = '\0';
233 if (check_directory_ownership(subpath, AID_SYSTEM) < 0)
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCGWin.cpp 68 LPTTPOLYGONHEADER subpath = reinterpret_cast<LPTTPOLYGONHEADER>(outline.data() + offset); local
69 ASSERT(subpath->dwType == TT_POLYGON_TYPE);
70 if (subpath->dwType != TT_POLYGON_TYPE)
73 CGPathMoveToPoint(path, 0, toCGFloat(subpath->pfxStart.x), toCGFloat(subpath->pfxStart.y));
75 unsigned subpathOffset = sizeof(*subpath);
76 while (subpathOffset < subpath->cb) {
77 LPTTPOLYCURVE segment = reinterpret_cast<LPTTPOLYCURVE>(reinterpret_cast<UInt8*>(subpath) + subpathOffset);
125 offset += subpath->cb;
  /development/tools/emulator/opengl/system/egl/
Android.mk 7 $(call emugl-set-shared-library-subpath,egl)
  /external/skia/src/gpu/
GrTesselatedPathRenderer.cpp 397 int subpath = 0; local
403 subpathVertCount[subpath] = vert-subpathBase;
405 ++subpath;
429 subpathVertCount[subpath] = vert-subpathBase;
430 ++subpath; // this could be only in debug
456 subpathVertCount[subpath++] = 4;
459 GrAssert(subpath == subpathCnt);
GrDefaultPathRenderer.cpp 257 int subpath = 0; local
268 ++subpath;
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 5 def /( subpath )
6 File.join( self, subpath.to_s )
  /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);
  /development/tools/emulator/opengl/
common.mk 236 # For example: $(call emugl-set-shared-library-subpath,egl)
237 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 = \
  /tools/motodev/src/plugins/preflighting.core/apktool/
apktool.jar 

Completed in 992 milliseconds