HomeSort by relevance Sort by last modified time
    Searched defs:paths (Results 101 - 125 of 925) sorted by null

1 2 3 45 6 7 8 91011>>

  /system/vold/
Ext4Crypt.cpp 148 const std::vector<std::string>& paths,
150 if (paths.empty()) {
156 if (paths[0] < candidate) {
167 const std::vector<std::string>& paths) {
168 for (auto const other_path: paths) {
186 auto const paths = get_ce_key_paths(directory_path); local
187 for (auto const ce_key_path: paths) {
191 fixate_user_ce_key(directory_path, ce_key_path, paths);
242 auto const paths = get_ce_key_paths(directory_path); local
244 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false
568 auto const paths = get_ce_key_paths(directory_path); local
580 auto const paths = get_ce_key_paths(directory_path); local
    [all...]
  /bionic/linker/
linker.cpp 347 std::vector<std::string> paths; local
348 split_path(path, delimiters, &paths);
349 resolve_paths(paths, resolved_paths);
1022 const std::vector<std::string>& paths,
1024 for (const auto& path : paths) {
1060 // If the name contains a slash, we should attempt to open it directly and not search the paths.
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_FilesTest.java 477 final List<File> paths = new ArrayList<File>(); local
478 Collections.addAll(paths, dropFirst(context.getExternalCacheDirs()));
479 Collections.addAll(paths, dropFirst(context.getExternalFilesDirs(null)));
481 paths, dropFirst(context.getExternalFilesDirs(Environment.DIRECTORY_PICTURES)));
482 Collections.addAll(paths, dropFirst(context.getObbDirs()));
483 return paths;
500 // There is special logic in MediaProvider#update() to update paths when a folder was moved
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_xmlrpc.py 375 paths = ["/foo", "/foo/bar"] variable in class:http_multi_server.MyRequestHandler
376 for path in paths:
380 serv.get_dispatcher(paths[0]).register_function(pow)
381 serv.get_dispatcher(paths[1]).register_function(lambda x,y: x+y, 'add')
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 45 * and also collects all absolute paths within the subtree. First
117 * paths were collected.
118 * @param paths A vector of paths that hold ExpressionOwner objects,
121 protected void eleminateRedundent(ElemTemplateElement psuedoVarRecipient, Vector paths)
123 int n = paths.size();
128 ExpressionOwner owner = (ExpressionOwner) paths.elementAt(i);
131 int found = findAndEliminateRedundant(i + 1, i, owner, psuedoVarRecipient, paths);
138 eleminateSharedPartialPaths(psuedoVarRecipient, paths);
141 diagnoseNumPaths(paths, numPathsEliminated, numUniquePathsEliminated)
    [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp 1187 CXXBasePaths paths; local
    [all...]
  /external/python/cpython2/Lib/test/
test_xmlrpc.py 412 paths = ["/foo", "/foo/bar"] variable in class:http_multi_server.MyRequestHandler
413 for path in paths:
417 serv.get_dispatcher(paths[0]).register_function(pow)
418 serv.get_dispatcher(paths[1]).register_function(lambda x,y: x+y, 'add')
    [all...]
  /external/python/cpython3/Lib/test/
test_xmlrpc.py 600 paths = ["/foo", "/foo/bar"] variable in class:http_multi_server.BrokenDispatcher
601 for path in paths:
605 serv.get_dispatcher(paths[0]).register_function(pow)
606 serv.get_dispatcher(paths[1]).register_function(lambda x,y: x+y, 'add')
    [all...]
  /external/selinux/libselinux/src/
selinux_restorecon.c 779 char *paths[2] = { NULL, NULL }; local
845 paths[0] = pathname;
908 fts = fts_open(paths, fts_flags, NULL);
1033 paths[0], strerror(errno));
1145 char *paths[2] = { NULL, NULL }; local
1182 paths[0] = (char *)pathname;
1185 fts = fts_open(paths, fts_flags, NULL);
1189 paths[0], strerror(errno));
  /frameworks/base/libs/androidfw/
AssetManager.cpp 156 // Manually close any fd paths for which we have not yet opened their zip (which
212 // new paths are always added at the end
314 // new paths are always added at the end
330 const String8 paths[2] = { String8(targetApkPath), String8(overlayApkPath) }; local
339 ap.path = paths[i];
347 ALOGW("failed to add %s to resource table", paths[i].string());
430 * with illegal characters or "../" backward relative paths.
959 * An "asset directory" is simply the combination of all asset paths' "assets/" directories.
1017 * An "asset directory" is simply the combination of all asset paths' "assets/" directories.
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/
DexManagerTests.java 578 List<String> paths = new ArrayList<>(); local
579 paths.add(mPackageInfo.applicationInfo.dataDir + "/secondary1.dex");
580 paths.add(mPackageInfo.applicationInfo.dataDir + "/secondary2.dex");
581 paths.add(mPackageInfo.applicationInfo.dataDir + "/secondary3.dex");
582 return paths;
586 List<String> paths = new ArrayList<>(); local
587 paths.add(mPackageInfo.applicationInfo.dataDir + "/secondary4.dex");
588 paths.add(mPackageInfo.applicationInfo.dataDir + "/secondary5.dex");
589 return paths;
593 List<String> paths = new ArrayList<>() local
600 List<String> paths = new ArrayList<>(); local
    [all...]
  /frameworks/native/vulkan/libvulkan/
api.cpp 149 std::vector<std::string> paths = android::base::Split(layers, ":"); local
150 for (uint32_t i = 0; i < paths.size(); i++) {
151 AddImplicitLayer(int(i), paths[i].c_str(), paths[i].length());
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_xmlrpc.py 375 paths = ["/foo", "/foo/bar"] variable in class:http_multi_server.MyRequestHandler
376 for path in paths:
380 serv.get_dispatcher(paths[0]).register_function(pow)
381 serv.get_dispatcher(paths[1]).register_function(lambda x,y: x+y, 'add')
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_xmlrpc.py 375 paths = ["/foo", "/foo/bar"] variable in class:http_multi_server.MyRequestHandler
376 for path in paths:
380 serv.get_dispatcher(paths[0]).register_function(pow)
381 serv.get_dispatcher(paths[1]).register_function(lambda x,y: x+y, 'add')
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xmlrpc.py 375 paths = ["/foo", "/foo/bar"] variable in class:http_multi_server.MyRequestHandler
376 for path in paths:
380 serv.get_dispatcher(paths[0]).register_function(pow)
381 serv.get_dispatcher(paths[1]).register_function(lambda x,y: x+y, 'add')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xmlrpc.py 375 paths = ["/foo", "/foo/bar"] variable in class:http_multi_server.MyRequestHandler
376 for path in paths:
380 serv.get_dispatcher(paths[0]).register_function(pow)
381 serv.get_dispatcher(paths[1]).register_function(lambda x,y: x+y, 'add')
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManager.java 172 ArrayList<TreePath> paths = new ArrayList<TreePath>(); local
177 paths.add(getTreePath(vi));
181 return new TreeSelection(paths.toArray(new TreePath[paths.size()]));
    [all...]
  /system/core/init/
builtins.cpp 394 /* Imports .rc files from the specified paths. Default ones are applied if none is given.
574 /* Paths of .rc files are specified at the 2nd argument and beyond */
666 // compatible with new paths, therefore we skip reporting this error.
787 char* paths[] = {const_cast<char*>(args[1].data()), nullptr}; local
789 fts_open(paths, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, nullptr), fts_close);
888 return Error() << "flags must precede paths";
    [all...]
  /system/timezone/distro/installer/src/test/com/android/timezone/distro/installer/
TimeZoneDistroInstallerTest.java 660 final List<Path> paths = new ArrayList<>(); local
665 paths.add(filePath);
670 assertEquals("Found: " + paths, expectedFiles, paths.size());
    [all...]
  /external/autotest/client/common_lib/
utils_unittest.py 474 def paths(self, *path_segments): member in class:test_merge_trees
479 src, dest = self.paths(*path_segments)
508 utils.merge_trees(*self.paths("empty"))
513 utils.merge_trees(*self.paths("src_only"))
519 utils.merge_trees(*self.paths("dest_only"))
527 utils.merge_trees(*self.paths("in_both"))
534 utils.merge_trees(*self.paths())
541 utils.merge_trees(*self.paths())
553 utils.merge_trees(*self.paths())
    [all...]
  /external/libxml2/
catalog.c 3121 const char *cur, *paths; local
3240 const char *paths; local
    [all...]
xmllint.c 212 static xmlChar *paths[MAX_PATHS + 1]; variable
224 fprintf(stderr, "MAX_PATHS reached: too many paths\n");
234 paths[nbpaths] = xmlStrndup(path, cur - path);
235 if (paths[nbpaths] != NULL)
290 newURL = xmlStrdup((const xmlChar *) paths[i]);
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
ArchiveCommandLine.cpp 994 FStringVector paths; local
1009 paths.Add(dirItems.GetPhyPath(i));
1013 if (paths.Size() == 0)
1020 for (i = 0; i < paths.Size(); i++)
1023 NFile::NDir::MyGetFullPathName(paths[i], fullPath);
1035 sortedPaths.AddInReserved(fs2us(paths[index]));
    [all...]
  /external/selinux/libselinux/src/android/
android_platform.c 1469 char * paths[2] = { NULL , NULL }; local
    [all...]
  /external/squashfs-tools/squashfs-tools/
unsquashfs.c 1278 void free_path(struct pathname *paths)
1282 for(i = 0; i < paths->names; i++) {
1283 if(paths->name[i].paths)
1284 free_path(paths->name[i].paths);
1285 free(paths->name[i].name);
1286 if(paths->name[i].preg) {
1287 regfree(paths->name[i].preg);
1288 free(paths->name[i].preg)
2508 struct pathnames *paths = NULL; local
    [all...]

Completed in 691 milliseconds

1 2 3 45 6 7 8 91011>>