HomeSort by relevance Sort by last modified time
    Searched defs:subdir (Results 26 - 50 of 54) sorted by null

12 3

  /prebuilts/go/darwin-x86/misc/ios/
go_darwin_arm_exec.go 511 finalPkgpath, underGoRoot, err := subdir()
564 // subdir determines the package based on the current working directory,
566 func subdir() (pkgpath string, underGoRoot bool, err error) { func
572 subdir, err := filepath.Rel(root, cwd)
576 return subdir, true, nil
583 subdir, err := filepath.Rel(p, cwd)
585 return subdir, false, nil
  /prebuilts/go/linux-x86/misc/ios/
go_darwin_arm_exec.go 511 finalPkgpath, underGoRoot, err := subdir()
564 // subdir determines the package based on the current working directory,
566 func subdir() (pkgpath string, underGoRoot bool, err error) { func
572 subdir, err := filepath.Rel(root, cwd)
576 return subdir, true, nil
583 subdir, err := filepath.Rel(p, cwd)
585 return subdir, false, nil
  /cts/hostsidetests/appsecurity/test-apps/ExternalStorageApp/src/com/android/cts/externalstorageapp/
CommonExternalStorageTest.java 116 final File subdir = new File(path, "subdir"); local
120 subdir.mkdirs();
121 assertDirReadWriteAccess(subdir);
  /external/autotest/server/cros/dynamic_suite/
job_status.py 204 # (test_name, subdir). In dynamic suite, we need to emit
205 # a subdir for each status and make sure (test_name, subdir)
210 # For normal test status, we use 'job_tag/subdir'
216 subdir=os.path.join(s.job_tag, s.subdir))
225 subdir=s.job_tag)
270 job_name='', subdir=None):
287 @param subdir: The result directory of the test. It will be recorded
288 as the subdir in the status.log file
462 def subdir(self): member in class:Status
    [all...]
  /external/libchrome/base/files/
file_path_watcher_linux.cc 130 // - |subdir|: the subdirectory that identifies the next component.
137 subdir(dirname) {}
140 FilePath::StringType subdir; member in struct:base::__anon24181::FilePathWatcherImpl::WatchEntry
184 // |target_| and always stores an empty next component name in |subdir|.
362 (child == watch_entry.subdir);
366 if (watch_entry.subdir.empty()) {
367 // The fired watch is for a WatchEntry without a subdir. Thus for a given
374 // The fired watch is for a WatchEntry with a subdir. Thus for a given
379 bool next_watch_may_be_for_target = watches_[i + 1].subdir.empty();
383 target_changed = watch_entry.subdir == child
    [all...]
  /external/ltp/testcases/kernel/controllers/cgroup_xattr/
cgroup_xattr.c 55 int subdir; member in struct:cgrp_option
237 if (cgrp_opt[i].subdir) {
323 opt->subdir = 1;
418 /* proceed to subdir */
  /external/mesa3d/src/util/
disk_cache.c 481 char *subdir; local
482 if (asprintf(&subdir, "%s/%s", path, entry->d_name) == -1)
486 int res = stat(subdir, &sb);
487 free(subdir);
  /build/make/core/
definitions.mk 179 define all-subdir-makefiles
190 define all-named-subdir-makefiles
202 $(call find-subdir-files,$(2) -type d -name "$(1)")
210 define all-subdir-named-dirs
230 define all-subdir-named-files
246 ## SRC_FILES := $(call all-subdir-java-files)
249 define all-subdir-java-files
265 ## SRC_FILES := $(call all-subdir-c-files)
268 define all-subdir-c-files
288 ## SRC_FILES := $(call all-subdir-cpp-files
    [all...]
product_config.mk 76 define find-copy-subdir-files
  /external/autotest/frontend/tko/
models.py 206 subdir = dbmodels.CharField(blank=True, max_length=300) variable in class:Test
702 subdir = dbmodels.CharField('subdirectory', blank=True, max_length=180) variable in class:TestView
  /external/libogg/win32/
Makefile 114 subdir = win32 macro
127 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
  /libcore/luni/src/test/java/libcore/java/io/
FileTest.java 179 // .../subdir/shorter -> .../target (using a link to ../target).
180 File subdir = new File(base, "subdir"); local
181 assertTrue(subdir.mkdir());
182 linkName = new File(subdir, "shorter");
186 // .../l -> .../subdir/longer (using a relative link to subdir/longer).
188 ln_s("subdir/longer", linkName.toString());
189 File longer = new File(base, "subdir/longer");
193 // .../double -> .../target (via a link into subdir and a link back out)
    [all...]
  /frameworks/base/tools/aapt/
AaptAssets.cpp 618 sp<AaptDir> subdir = this; local
620 subdir = subdir->makeDir(name);
623 ssize_t i = subdir->mDirs.indexOfKey(name);
625 return subdir->mDirs.valueAt(i);
627 sp<AaptDir> dir = new AaptDir(name, subdir->mPath.appendPathCopy(name));
628 subdir->mDirs.add(name, dir);
708 sp<AaptDir> subdir; local
711 subdir = mDirs.valueFor(fileNames[i]);
713 subdir = new AaptDir(fileNames[i], mPath.appendPathCopy(fileNames[i]))
940 sp<AaptDir> subdir = new AaptDir(rootStr, partialPath); local
960 sp<AaptDir> subdir = res->makeDir(dirname); local
    [all...]
  /frameworks/native/cmds/installd/
utils.cpp 457 DIR *subdir; local
471 subdir = fdopendir(subfd);
472 if (subdir == NULL) {
478 if (_delete_dir_contents(subdir, exclusion_predicate)) {
481 closedir(subdir);
1039 DIR* subdir = fdopendir(subdir_fd); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_tarfile.py 524 longname = self.subdir + "/" + "123/" * 125 + "longname"
532 longname = self.subdir + "/" + "123/" * 125 + "longname"
533 longlink = self.subdir + "/" + "123/" * 125 + "longlink"
541 longname = self.subdir + "/" + "123/" * 125 + "longname"
551 longname = self.subdir + "/" + "123/" * 125 + "longname"
561 subdir = "gnu" variable in class:GNUReadTest
575 subdir = "pax" variable in class:PaxReadTest
    [all...]
  /external/python/cpython2/Lib/test/
test_tarfile.py 691 longname = self.subdir + "/" + "123/" * 125 + "longname"
699 longname = self.subdir + "/" + "123/" * 125 + "longname"
700 longlink = self.subdir + "/" + "123/" * 125 + "longlink"
708 longname = self.subdir + "/" + "123/" * 125 + "longname"
718 longname = self.subdir + "/" + "123/" * 125 + "longname"
728 subdir = "gnu" variable in class:GNUReadTest
742 subdir = "pax" variable in class:PaxReadTest
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_tarfile.py 547 longname = self.subdir + "/" + "123/" * 125 + "longname"
555 longname = self.subdir + "/" + "123/" * 125 + "longname"
556 longlink = self.subdir + "/" + "123/" * 125 + "longlink"
564 longname = self.subdir + "/" + "123/" * 125 + "longname"
574 longname = self.subdir + "/" + "123/" * 125 + "longname"
584 subdir = "gnu" variable in class:GNUReadTest
598 subdir = "pax" variable in class:PaxReadTest
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_tarfile.py 547 longname = self.subdir + "/" + "123/" * 125 + "longname"
555 longname = self.subdir + "/" + "123/" * 125 + "longname"
556 longlink = self.subdir + "/" + "123/" * 125 + "longlink"
564 longname = self.subdir + "/" + "123/" * 125 + "longname"
574 longname = self.subdir + "/" + "123/" * 125 + "longname"
584 subdir = "gnu" variable in class:GNUReadTest
598 subdir = "pax" variable in class:PaxReadTest
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tarfile.py 547 longname = self.subdir + "/" + "123/" * 125 + "longname"
555 longname = self.subdir + "/" + "123/" * 125 + "longname"
556 longlink = self.subdir + "/" + "123/" * 125 + "longlink"
564 longname = self.subdir + "/" + "123/" * 125 + "longname"
574 longname = self.subdir + "/" + "123/" * 125 + "longname"
584 subdir = "gnu" variable in class:GNUReadTest
598 subdir = "pax" variable in class:PaxReadTest
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tarfile.py 547 longname = self.subdir + "/" + "123/" * 125 + "longname"
555 longname = self.subdir + "/" + "123/" * 125 + "longname"
556 longlink = self.subdir + "/" + "123/" * 125 + "longlink"
564 longname = self.subdir + "/" + "123/" * 125 + "longname"
574 longname = self.subdir + "/" + "123/" * 125 + "longname"
584 subdir = "gnu" variable in class:GNUReadTest
598 subdir = "pax" variable in class:PaxReadTest
    [all...]
  /external/iproute2/lib/
bpf.c 51 const char *subdir; member in struct:bpf_prog_meta
68 .subdir = "tc",
74 .subdir = "tc",
80 .subdir = "xdp",
85 .subdir = "ip",
90 .subdir = "ip",
95 .subdir = "ip",
103 __bpf_prog_meta[type].subdir);
104 return __bpf_prog_meta[type].subdir;
    [all...]
  /external/kmod/tools/
depmod.c 493 static int cfg_override_add(struct cfg *cfg, const char *modname, const char *subdir)
497 size_t subdirlen = strlen(subdir);
506 memcpy(o->path, subdir, subdirlen);
580 const char *subdir = strtok_r(NULL, "\t ", &saveptr); local
583 subdir == NULL)
592 cfg_override_add(cfg, modname, subdir);
1156 DIR *subdir; local
1167 subdir = fdopendir(fd);
1168 if (subdir == NULL) {
1175 err = depmod_modules_search_dir(depmod, subdir,
2451 DIR *subdir; local
    [all...]
  /external/python/cpython3/Lib/test/
test_tarfile.py 861 longname = self.subdir + "/" + "123/" * 125 + "longname"
901 subdir = "gnu" variable in class:GNUReadTest
955 subdir = "pax" variable in class:PaxReadTest
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
windint.h 132 rc_uint_type subdir : 1; member in struct:rc_res_entry
135 /* If the subdir field is non-zero, this is a pointer to the
138 /* If the subdir field is zero, this is a pointer to the resource
  /frameworks/opt/setupwizard/tools/docs/
doclava.jar 

Completed in 1334 milliseconds

12 3