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

  /system/core/toolbox/
mkdir.c 37 char currpath[PATH_MAX], *pathpiece; local
45 strcpy(currpath, "");
50 strcat(currpath, "/");
53 if(strlen(currpath) + strlen(pathpiece) + 2/*NUL and slash*/ > PATH_MAX) {
57 strcat(currpath, pathpiece);
58 strcat(currpath, "/");
59 if(stat(currpath, &st) != 0) {
60 ret = mkdir(currpath, 0777);
62 fprintf(stderr, "mkdir failed for %s, %s\n", currpath, strerror(errno));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
install.py 34 currpath = os.path.join(_path, _msysdll)
35 if os.path.isfile(currpath) and os.access(currpath, os.F_OK):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
install.py 34 currpath = os.path.join(_path, _msysdll)
35 if os.path.isfile(currpath) and os.access(currpath, os.F_OK):

Completed in 101 milliseconds