HomeSort by relevance Sort by last modified time
    Searched refs:subpath (Results 1 - 10 of 10) 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);
  /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 172 char subpath[PATH_MAX]; local
184 if (nn >= (int)(sizeof subpath)) {
189 /* reject any '..' subpath */
198 /* copy to 'subpath', then check ownership */
199 memcpy(subpath, dataPath, nn);
200 subpath[nn] = '\0';
202 if (check_directory_ownership(subpath, AID_SYSTEM) < 0)
  /external/skia/gpu/src/
GrPathRenderer.cpp 328 int subpath = 0; local
337 subpathVertCount[subpath] = vert-subpathBase;
339 ++subpath;
363 subpathVertCount[subpath] = vert-subpathBase;
364 ++subpath; // this could be only in debug
370 GrAssert(subpath == subpathCnt);
GrTesselatedPathRenderer.cpp 177 int subpath = 0; local
183 subpathVertCount[subpath] = vert-subpathBase;
185 ++subpath;
209 subpathVertCount[subpath] = vert-subpathBase;
210 ++subpath; // this could be only in debug
236 subpathVertCount[subpath++] = 4;
239 GrAssert(subpath == subpathCnt);
  /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/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 335 # For example: $(call emugl-set-shared-library-subpath,egl)
336 emugl-set-shared-library-subpath = \

Completed in 920 milliseconds