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

1 2 3

  /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 68 def recurse(subpath):
70 llvmbuild_path = os.path.join(llvmbuild_source_root + subpath,
77 subpath)
83 for item in recurse(os.path.join(subpath, subdir)):
122 ci.name, ci.subpath, existing.subpath))
212 info_basedir[ci.subpath] = info_basedir.get(ci.subpath, []) + [ci]
218 if ci.subpath == '/':
221 # Otherwise, append this subpath to the parent list
    [all...]
  /external/syslinux/extlinux/
mountinfo.h 33 const struct mountinfo *find_mount(const char *path, char **subpath);
mountinfo.c 195 const struct mountinfo *find_mount(const char *path, char **subpath)
216 * Tricky business: we need the longest matching subpath
217 * which isn't a parent of the same subpath.
240 if (best && subpath) {
242 *subpath = strdup("/");
244 *subpath = strdup(real_path + best->pathlen);
256 char *subpath; local
261 m = find_mount(argv[i], &subpath);
268 argv[i], subpath, m->devpath, major(m->dev), minor(m->dev),
271 free(subpath);
    [all...]
main.c 239 char *dirpath, *subpath, *xdirpath; local
255 subpath = strchr(dirpath, '\0');
257 if (*subpath == '/') {
258 if (subpath > dirpath) {
259 *subpath = '\0';
265 subpath = strchr(subpath+1, '/');
266 if (!subpath)
267 subpath = "/"; /* It's the root of the filesystem */
270 *subpath = '/'
    [all...]
  /external/squashfs-tools/squashfs-tools/
android.h 24 void alloc_mounted_path(const char *mount_point, const char *subpath, char **mounted_path);
android.c 36 void alloc_mounted_path(const char *mount_point, const char *subpath, char **mounted_path) {
37 *mounted_path = malloc(strlen(mount_point) + strlen(subpath) + 1);
43 strcat(*mounted_path, subpath);
info.c 71 if(dir_ent->our_dir->subpath[0] != '\0')
72 INFO("%s/%s\n", dir_ent->our_dir->subpath, dir_ent->name);
action.c 762 if(action_data->subpath)
763 expr_log(action_data->subpath);
888 action_data.subpath = strdup(subpathname(dir_ent));
908 free(action_data.subpath);
922 action_data.subpath = strdup(subpathname(dir_ent));
932 free(action_data.subpath);
938 free(action_data.subpath);
975 int eval_exclude_actions(char *name, char *pathname, char *subpath,
983 action_data.subpath = subpath;
    [all...]
mksquashfs.h 36 char *subpath; member in struct:dir_info
action.h 215 char *subpath; member in struct:action_data
  /external/libmojo/build/android/gyp/util/
md5_check.py 102 def _GetOldTag(self, path, subpath=None):
103 return self.old_metadata and self.old_metadata.GetTag(path, subpath)
144 for subpath in self.new_metadata.IterSubpaths(path):
145 if self._GetOldTag(path, subpath) is None:
146 yield subpath
158 for subpath in self.old_metadata.IterSubpaths(path):
159 if self.new_metadata.GetTag(path, subpath) is None:
160 yield subpath
172 for subpath in self.new_metadata.IterSubpaths(path):
173 old_tag = self._GetOldTag(path, subpath)
    [all...]
  /system/core/run-as/
run-as.cpp 99 char subpath[PATH_MAX]; local
108 if (nn >= (int)(sizeof subpath)) return false;
110 /* reject any '..' subpath */
118 /* copy to 'subpath', then check ownership */
119 memcpy(subpath, data_path, nn);
120 subpath[nn] = '\0';
122 if (!check_directory(subpath, AID_SYSTEM)) return false;
  /device/generic/goldfish-opengl/system/gralloc/
Android.mk 8 $$(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/libbrillo/brillo/
url_utils.h 20 // Appends a subpath to url and delimiting then with '/' if the path doesn't
24 const std::string& subpath) WARN_UNUSED_RESULT;
url_utils.cc 66 std::string url::Combine(const std::string& url, const std::string& subpath) {
67 return CombineMultiple(url, {subpath});
  /libcore/ojluni/src/main/java/java/nio/file/
Path.java 48 * {@link #getParent getParent}, {@link #getRoot getRoot}, and {@link #subpath
49 * subpath} methods to access the path components or a subsequence of its name
155 * subpath(0, getNameCount()-1);
215 Path subpath(int beginIndex, int endIndex); method in interface:Path
    [all...]
  /external/syslinux/gpxe/src/interface/efi/
efi_snp.c 885 EFI_DEVICE_PATH_PROTOCOL *subpath; local
908 subpath = path;
909 while ( subpath->Type != END_DEVICE_PATH_TYPE ) {
910 subpath_len = ( ( subpath->Length[1] << 8 ) |
911 subpath->Length[0] );
913 subpath = ( ( ( void * ) subpath ) + subpath_len );
975 subpath = ( ( void * ) ( macpath + 1 ) );
983 memset ( subpath, 0, sizeof ( *subpath ) );
    [all...]
  /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,
  /device/generic/goldfish-opengl/system/egl/
Android.mk 7 $(call emugl-set-shared-library-subpath,egl)
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 5 def /( subpath )
6 File.join( self, subpath.to_s )
  /external/skia/infra/bots/
recipes.py 161 subpath = dep.path_override
166 engine_path = os.path.join(engine, subpath)
  /external/skqp/infra/bots/
recipes.py 161 subpath = dep.path_override
166 engine_path = os.path.join(engine, subpath)
  /external/icu/icu4c/source/tools/tzcode/
zdump.c 1077 char subpath[FILENAME_MAX + 1]; local
1084 strcpy(subpath, relpath);
1085 strcat(subpath, "/");
1086 strcat(subpath, dir->d_name);
1088 strcpy(subpath, dir->d_name);
1090 getzones(basedir, subpath, last, count);

Completed in 1383 milliseconds

1 2 3