Searched refs:path (Results 101 - 125 of 535) sorted by path

1234567891011>>

/frameworks/base/core/java/android/animation/
H A DPropertyValuesHolder.java208 * as a multi-int setter. The values are animated along the path, with the first
214 * @param path The Path along which the values should be animated.
218 public static PropertyValuesHolder ofMultiInt(String propertyName, Path path) { argument
219 Keyframes keyframes = KeyframeSet.ofPath(path);
326 * as a multi-float setter. The values are animated along the path, with the first
332 * @param path The Path along which the values should be animated.
336 public static PropertyValuesHolder ofMultiFloat(String propertyName, Path path) { argument
337 Keyframes keyframes = KeyframeSet.ofPath(path);
418 * @param path The Path along which the values should be animated.
422 TypeConverter<PointF, ?> converter, Path path) {
421 ofObject(String propertyName, TypeConverter<PointF, ?> converter, Path path) argument
494 ofObject(Property<?, V> property, TypeConverter<PointF, V> converter, Path path) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java1781 String path = data.readString();
1784 boolean res = dumpHeap(process, userId, managed, path, fd);
4644 String path, ParcelFileDescriptor fd) throws RemoteException {
4651 data.writeString(path);
4643 dumpHeap(String process, int userId, boolean managed, String path, ParcelFileDescriptor fd) argument
H A DActivityThread.java500 Slog.w(TAG, "Profiling failed on path " + profileFile);
547 String path; field in class:ActivityThread.DumpHeapData
901 public void dumpHeap(boolean managed, String path, ParcelFileDescriptor fd) { argument
903 dhd.path = path;
4159 Slog.w(TAG, "Profiling failed on path " + profilerInfo.profileFile
4160 + " -- can the process access this path?");
4180 Debug.dumpHprofData(dhd.path, dhd.fd.getFileDescriptor());
4182 Slog.w(TAG, "Managed heap dump failed on path " + dhd.path
[all...]
H A DApplicationThreadNative.java470 String path = data.readString();
473 dumpHeap(managed, path, fd);
1161 public void dumpHeap(boolean managed, String path, argument
1166 data.writeString(path);
H A DDownloadManager.java439 * Set the local destination for the downloaded file. Must be a file URI to a path on
475 * Set the local destination for the downloaded file to a path within
486 * @param subPath the path within the external directory, including the
513 * Set the local destination for the downloaded file to a path within
521 * @param subPath the path within the external directory, including the
1051 String path = cursor.getString(
1053 return Uri.fromFile(new File(path));
1184 * @param path absolute pathname to the file. The file should be world-readable, so that it can
1193 boolean isMediaScannerScannable, String mimeType, String path, long length,
1195 return addCompletedDownload(title, description, isMediaScannerScannable, mimeType, path,
1192 addCompletedDownload(String title, String description, boolean isMediaScannerScannable, String mimeType, String path, long length, boolean showNotification) argument
1200 addCompletedDownload(String title, String description, boolean isMediaScannerScannable, String mimeType, String path, long length, boolean showNotification, boolean allowWrite) argument
[all...]
H A DIActivityManager.java355 public boolean dumpHeap(String process, int userId, boolean managed, String path, argument
H A DIApplicationThread.java121 void dumpHeap(boolean managed, String path, ParcelFileDescriptor fd) argument
H A DIBackupAgent.aidl111 * @param domain Name of the file's semantic domain to which the 'path' argument is a
112 * relative path. e.g. FullBackup.DATABASE_TREE_TOKEN.
113 * @param path Relative path of the file within its semantic domain.
124 int type, String domain, String path, long mode, long mtime,
H A DINotificationManager.aidl74 boolean isSystemConditionProviderEnabled(String path);
H A DNativeActivity.java94 private native long loadNativeCode(String path, String funcname, MessageQueue queue, argument
161 String path = null;
166 path = libraryFile.getPath();
169 if (path == null) {
176 mNativeHandle = loadNativeCode(path, funcname, Looper.myQueue(),
182 throw new IllegalArgumentException("Unable to load native library: " + path);
H A DNotificationManager.java270 public boolean isSystemConditionProviderEnabled(String path) { argument
273 return service.isSystemConditionProviderEnabled(path);
H A DWallpaperManager.java1098 final String path = SystemProperties.get(PROP_WALLPAPER);
1099 if (!TextUtils.isEmpty(path)) {
1100 final File file = new File(path);
/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java466 if (DEBUG) Log.w(TAG, "Error canonicalizing path of " + file);
482 * operation. The agent is given the path to the file's original location as well
518 int type, String domain, String path, long mode, long mtime)
523 + " domain=" + domain + " relpath=" + path + " mode=" + mode
555 // Canonicalize the nominal path and verify that it lies within the stated domain
556 File outFile = new File(basePath, path);
559 if (DEBUG) Log.i(TAG, "[" + domain + " : " + path + "] mapped to " + outPath);
563 // Attempt to restore to a path outside the file's nominal domain.
570 // Not a supported output location, or bad path: we need to consume the data
573 if (DEBUG) Log.i(TAG, "[ skipping file " + path
517 onRestoreFile(ParcelFileDescriptor data, long size, int type, String domain, String path, long mode, long mtime) argument
717 doRestoreFile(ParcelFileDescriptor data, long size, int type, String domain, String path, long mode, long mtime, int token, IBackupManager callbackBinder) argument
[all...]
H A DFullBackup.java61 String linkdomain, String rootpath, String path, BackupDataOutput output);
89 * to a location that is writeable by the caller, preferably using an absolute path.
60 backupToTar(String packageName, String domain, String linkdomain, String rootpath, String path, BackupDataOutput output) argument
/frameworks/base/core/java/android/content/
H A DContentProvider.java500 // <path-permission> below removes this ability
505 final String path = uri.getPath();
508 if (pathPerm != null && pp.match(path)) {
513 // any denied <path-permission> means we lose
522 // if we passed <path-permission> checks above, and no default
568 // <path-permission> below removes this ability
573 final String path = uri.getPath();
576 if (pathPerm != null && pp.match(path)) {
581 // any denied <path-permission> means we lose
590 // if we passed <path
[all...]
H A DContentResolver.java1163 List<String> path = uri.getPathSegments();
1164 if (path == null) {
1165 throw new FileNotFoundException("No path: " + uri);
1167 int len = path.size();
1171 id = Integer.parseInt(path.get(0));
1173 throw new FileNotFoundException("Single path segment is not a resource ID: " + uri);
1176 id = r.getIdentifier(path.get(1), path.get(0), authority);
1178 throw new FileNotFoundException("More than two path segments: " + uri);
H A DIntent.java2100 * The path to the mount point for the removed media is contained in the Intent.mData field.
2107 * The path to the mount point for the unmounted media is contained in the Intent.mData field.
2114 * The path to the mount point for the checking media is contained in the Intent.mData field.
2121 * The path to the mount point for the checking media is contained in the Intent.mData field.
2128 * The path to the mount point for the mounted media is contained in the Intent.mData field.
2137 * The path to the mount point for the shared media is contained in the Intent.mData field.
2144 * The path to the mount point for the previously shared media is contained in the Intent.mData field.
2152 * The path to the mount point for the removed media is contained in the Intent.mData field.
2159 * The path to the mount point for the unmountable media is contained in the Intent.mData field.
2167 * The path t
[all...]
H A DIntentFilter.java41 * and/or path) in an Intent. It also includes a "priority" value which is
61 * itself divided into three attributes: type, scheme, authority, and path.
71 * To specify a path, you also must specify both one or more authorities and
86 * <strong>data scheme+authority+path</strong> if specified) must match
128 * Intent's data path <em>and</em> both a scheme and authority in the filter
143 private static final String PATH_STR = "path";
219 * authority, and path.
748 * For Uris that contain a path, this kind of matching is not generally of interest,
751 * them. However, for Uris that do not contain a path, the authority and path
944 addDataPath(String path, int type) argument
949 addDataPath(PatternMatcher path) argument
994 hasDataPath(PatternMatcher path) argument
[all...]
H A DUriMatcher.java153 * this method will accept a leading slash in the path.
156 * @param path the path to match. * may be used as a wild card for
161 public void addURI(String authority, String path, int code) argument
168 if (path != null) {
169 String newPath = path;
171 if (path.length() > 0 && path.charAt(0) == '/') {
172 newPath = path.substring(1);
213 * Try to match against the path i
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java179 * @deprecated callers should move to explicitly passing around source path.
254 * this is path to single base APK file; for cluster packages this is
255 * path to the cluster directory.
369 private static boolean isApkPath(String path) { argument
370 return path.endsWith(".apk");
784 for (String path : lite.splitCodePaths) {
785 loadApkIntoAssetManager(assets, path, flags);
852 // The AssetManager guarantees uniqueness for asset paths, so if this asset path
858 "Failed adding asset path: " + apkPath);
1142 * @param apkFile path t
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java338 * Return a String array of all the assets at the given path.
340 * @param path A relative path within the assets, i.e., "docs/home.html".
343 * names are relative to 'path'. You can open the file by
344 * concatenating 'path' and a name in the returned string (via
349 public native final String[] list(String path) argument
612 public final int addAssetPath(String path) { argument
614 int res = addAssetPathNative(path);
620 private native final int addAssetPathNative(String path); argument
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java120 private static native long nativeOpen(String path, int openFlags, String label, argument
209 mConnectionPtr = nativeOpen(mConfiguration.path, mConfiguration.openFlags,
1131 String path = window.getString(i, 2);
1141 if (!path.isEmpty()) {
1142 label += ": " + path;
1166 String label = mConfiguration.path;
1178 return "SQLiteConnection: " + mConfiguration.path + " (" + mConnectionId + ")";
H A DSQLiteConnectionPool.java1004 printer.println("Connection pool for " + mConfiguration.path + ":");
1057 return "SQLiteConnectionPool: " + mConfiguration.path;
H A DSQLiteDatabase.java254 private SQLiteDatabase(String path, int openFlags, CursorFactory cursorFactory, argument
258 mConfigurationLocked = new SQLiteDatabaseConfiguration(path, openFlags);
661 * @param path to database file to open and/or create
668 public static SQLiteDatabase openDatabase(String path, CursorFactory factory, int flags) { argument
669 return openDatabase(path, factory, flags, null);
682 * @param path to database file to open and/or create
691 public static SQLiteDatabase openDatabase(String path, CursorFactory factory, int flags, argument
693 SQLiteDatabase db = new SQLiteDatabase(path, flags, factory, errorHandler);
706 * Equivalent to openDatabase(path, factory, CREATE_IF_NECESSARY).
708 public static SQLiteDatabase openOrCreateDatabase(String path, CursorFactor argument
715 openOrCreateDatabase(String path, CursorFactory factory, DatabaseErrorHandler errorHandler) argument
[all...]
H A DSQLiteDatabaseConfiguration.java44 * Special path used by in-memory databases.
49 * The database path.
51 public final String path; field in class:SQLiteDatabaseConfiguration
55 * This is derived from the path but is stripped to remove PII.
96 * @param path The database path.
99 public SQLiteDatabaseConfiguration(String path, int openFlags) { argument
100 if (path == null) {
101 throw new IllegalArgumentException("path must not be null.");
104 this.path
159 stripPathForLogs(String path) argument
[all...]

Completed in 7305 milliseconds

1234567891011>>