Searched defs:paths (Results 1 - 25 of 25) sorted by relevance

/frameworks/base/tools/bit/
H A Dmake.h30 vector<string> paths; member in struct:Module
/frameworks/base/libs/androidfw/tests/
H A DBenchmarkHelpers.cpp25 void GetResourceBenchmarkOld(const std::vector<std::string>& paths, const ResTable_config* config, argument
28 for (const std::string& path : paths) {
54 void GetResourceBenchmark(const std::vector<std::string>& paths, const ResTable_config* config, argument
58 for (const std::string& path : paths) {
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java219 void eraseFiles(File[] paths) { argument
220 for (File path : paths) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
H A DDumpTruck.java75 final ArrayList<String> paths = new ArrayList<String>();
99 paths.add(path);
113 if (DumpTruck.zipUp(zipfile, paths)) {
154 private static boolean zipUp(String zipfilePath, ArrayList<String> paths) { argument
158 for (String filename : paths) {
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DMethodBaseExpr.java41 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
42 final List<ExecutionPath> targetPaths = getTarget().toExecutionPath(paths);
46 result.addAll(toExecutionPathInOrder(paths, getTarget()));
H A DFieldAssignmentExpr.java80 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
82 List<ExecutionPath> targetPaths = child.toExecutionPath(paths);
87 result.addAll(toExecutionPathInOrder(paths, child));
H A DSymbolExpr.java77 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
79 return paths;
81 return super.toExecutionPath(paths);
H A DBracketExpr.java61 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
62 final List<ExecutionPath> targetPaths = getTarget().toExecutionPath(paths);
66 result.addAll(toExecutionPathInOrder(paths, getTarget()));
H A DLambdaExpr.java120 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
H A DMethodCallExpr.java98 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
99 final List<ExecutionPath> targetPaths = getTarget().toExecutionPath(paths);
103 result.addAll(toExecutionPathInOrder(paths, getArgs()));
H A DTernaryExpr.java104 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
105 List<ExecutionPath> executionPaths = getPred().toExecutionPath(paths);
H A DExpr.java330 List<ExecutionPath> paths = new ArrayList<ExecutionPath>();
331 paths.add(path);
332 return toExecutionPath(paths);
335 public List<ExecutionPath> toExecutionPath(List<ExecutionPath> paths) { argument
337 return addJustMeToExecutionPath(paths);
339 return toExecutionPathInOrder(paths, getChildren());
345 protected final List<ExecutionPath> addJustMeToExecutionPath(List<ExecutionPath> paths) { argument
347 for (ExecutionPath path : paths) {
354 protected final List<ExecutionPath> toExecutionPathInOrder(List<ExecutionPath> paths, argument
356 List<ExecutionPath> executionPaths = paths;
368 toExecutionPathInOrder(List<ExecutionPath> paths, List<Expr> order) argument
[all...]
/frameworks/base/core/java/android/content/pm/dex/
H A DDexMetadataHelper.java104 * Look up the dex metadata files for the given code paths building the map
113 * This should only be used for code paths extracted from a package structure after the naming
195 * Validates that all dex metadata paths in the given list have a matching apk.
202 public static void validateDexPaths(String[] paths) { argument
204 for (int i = 0; i < paths.length; i++) {
205 if (PackageParser.isApkPath(paths[i])) {
206 apks.add(paths[i]);
210 for (int i = 0; i < paths.length; i++) {
211 String dmPath = paths[i];
/frameworks/base/media/java/android/media/
H A DMediaScannerConnection.java192 ClientProxy(String[] paths, String[] mimeTypes, OnScanCompletedListener client) { argument
193 mPaths = paths;
230 * @param paths Array of paths to be scanned.
238 public static void scanFile(Context context, String[] paths, String[] mimeTypes, argument
240 ClientProxy client = new ClientProxy(paths, mimeTypes, callback);
/frameworks/base/services/core/java/com/android/server/slice/
H A DSliceClientPermissions.java349 private String pathToString(ArraySet<String[]> paths) { argument
350 return TextUtils.join(", ", paths.stream().map(s -> TextUtils.join("/", s))
/frameworks/base/core/java/android/accessibilityservice/
H A DGestureDescription.java121 * least the number of paths in the gesture to prevent going out of bounds
148 private static long getTotalDuration(List<StrokeDescription> paths) { argument
150 for (int i = 0; i < paths.size(); i++) {
151 StrokeDescription path = paths.get(i);
166 * {@link GestureDescription#getMaxStrokeCount()} paths may be
211 // The tap location is only set for zero-length paths
260 // Treat zero-length paths as taps
/frameworks/native/vulkan/libvulkan/
H A Dlayers_extensions.cpp405 std::vector<std::string> paths = android::base::Split(pathstr, ":"); local
406 for (const auto& path : paths) {
H A Dapi.cpp149 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());
/frameworks/base/core/java/android/os/
H A DFileUtils.java848 public static String[] rewriteAfterRename(File beforeDir, File afterDir, String[] paths) { argument
849 if (paths == null) return null;
850 final String[] result = new String[paths.length];
851 for (int i = 0; i < paths.length; i++) {
852 result[i] = rewriteAfterRename(beforeDir, afterDir, paths[i]);
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp156 // 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.
H A DResourceTypes.cpp7161 const char* paths[] = { targetPath, overlayPath }; local
7164 const char* path = paths[j];
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.cpp1575 std::vector<std::string> paths; local
1578 paths.emplace_back(kDumpstateBoardPath + kDumpstateBoardFiles[i]);
1585 paths[i])));
1596 ScopedNativeHandle handle(native_handle_create(static_cast<int>(paths.size()), 0),
1606 for (size_t i = 0; i < paths.size(); i++) {
1607 MYLOGI("Calling IDumpstateDevice implementation using path %s\n", paths[i].c_str());
1610 open(paths[i].c_str(), O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC | O_NOFOLLOW,
1613 MYLOGE("Could not open file %s: %s\n", paths[i].c_str(), strerror(errno));
1624 dumpstate_task([paths, dumpstate_device, &handle]() -> bool {
1652 auto file_sizes = std::make_unique<ssize_t[]>(paths
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DBaseShortcutManagerTest.java1884 protected File makeFile(File baseDirectory, String... paths) { argument
1887 for (String path : paths) {
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java2175 // The updated users should already be indexed and the package code paths
2598 // Set flag to monitor and not change apk file paths when
3041 // the correct library paths.
3235 // At this point we know the code paths of the packages, so we can validate
9065 // The other paths will not change the filter.
9954 /** ABI code paths that have changed in the package scan */
10152 // DELETE_DATA_ON_FAILURES is only used by frozen paths
10220 // library paths after the scan is done. Also during the initial
10598 // Get all of our default paths setup
10629 Slog.i(TAG, "Using ABIS and native lib paths fro
15119 clearDirectory(IMediaContainerService mcs, File[] paths) argument
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jar ... static transient void setLibrarySearchPaths (java.lang.String[]) String[] paths static synthetic java.lang.String access$000 ...

Completed in 6284 milliseconds