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

1234567891011>>

/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp101 int uniqueId, const String8* path, const int action) {
103 if ((NULL != path) && (EMPTY_STRING != *path)) {
105 getDrmManagerService()->getConstraints(uniqueId, path, action);
110 DrmMetadata* DrmManagerClientImpl::getMetadata(int uniqueId, const String8* path) { argument
112 if ((NULL != path) && (EMPTY_STRING != *path)) {
113 drmMetadata = getDrmManagerService()->getMetadata(uniqueId, path);
119 int uniqueId, const String8& path, const String8& mimeType) {
121 if ((EMPTY_STRING != path) || (EMPTY_STRIN
100 getConstraints( int uniqueId, const String8* path, const int action) argument
118 canHandle( int uniqueId, const String8& path, const String8& mimeType) argument
151 getOriginalMimeType( int uniqueId, const String8& path, int fd) argument
160 getDrmObjectType( int uniqueId, const String8& path, const String8& mimeType) argument
170 checkRightsStatus( int uniqueId, const String8& path, int action) argument
202 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
213 removeRights(int uniqueId, const String8& path) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccFileHandler.java119 LoadLinearFixedContext(int efid, int recordNum, String path, Message onLoaded) { argument
124 mPath = path;
127 LoadLinearFixedContext(int efid, String path, Message onLoaded) { argument
132 mPath = path;
162 * @param path Path of the EF on the card
169 public void loadEFLinearFixed(int fileid, String path, int recordNum, Message onLoaded) { argument
170 String efPath = (path == null) ? getEFPath(fileid) : path;
217 * @param path Path of the EF on the card
223 public void getEFLinearRecordSize(int fileid, String path, Messag argument
255 loadEFLinearFixedAll(int fileid, String path, Message onLoaded) argument
352 updateEFLinearFixed(int fileid, String path, int recordNum, byte[] data, String pin2, Message onComplete) argument
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DCommandAction.cpp36 pBuilder.createNode<InputTree::Positional>(path().stem().native(), path());
50 const sys::fs::Path* path = NULL; local
51 // find out the real path of the namespec.
58 path = m_SearchDirs.find(namespec(), Input::Archive);
62 path = m_SearchDirs.find(namespec(), Input::DynObj);
66 path = m_SearchDirs.find(namespec(), Input::Archive);
69 if (path == NULL) {
74 pBuilder.createNode<InputTree::Positional>(namespec(), *path); local
87 "bitcode", path(), Inpu
[all...]
/frameworks/base/media/java/android/media/
H A DMediaScanner.java361 FileEntry(long rowId, String path, long lastModified, int format) { argument
363 mPath = path;
376 String path; field in class:MediaScanner.PlaylistEntry
475 public FileEntry beginFile(String path, String mimeType, long lastModified, argument
483 if (!noMedia && isNoMediaFile(path)) {
495 MediaFile.MediaFileType mediaFileType = MediaFile.getFileType(path);
505 mFileType = getFileTypeFromDrm(path);
509 FileEntry entry = makeEntryFor(path);
517 entry = new FileEntry(0, path, lastModified,
539 mPath = path;
550 scanFile(String path, long lastModified, long fileSize, boolean isDirectory, boolean noMedia) argument
557 doScanFile(String path, String mimeType, long lastModified, long fileSize, boolean isDirectory, boolean scanAlways, boolean noMedia) argument
776 processImageFile(String path) argument
1059 doesPathHaveFilename(String path, String filename) argument
1082 getFileTypeFromDrm(String path) argument
1230 inScanDirectory(String path, String[] directories) argument
1390 scanSingleFile(String path, String mimeType) argument
1413 isNoMediaFile(String path) argument
1462 isNoMediaPath(String path) argument
1504 scanMtpFile(String path, int objectHandle, int format) argument
1560 makeEntryFor(String path) argument
1691 processM3uPlayList(String path, String playListDirectory, Uri uri, ContentValues values, Cursor fileList) argument
1723 processPlsPlayList(String path, String playListDirectory, Uri uri, ContentValues values, Cursor fileList) argument
1792 processWplPlayList(String path, String playListDirectory, Uri uri, ContentValues values, Cursor fileList) argument
1893 processDirectory(String path, MediaScannerClient client) argument
1894 processFile(String path, String mimeType, MediaScannerClient client) argument
[all...]
/frameworks/av/services/audioflinger/tests/
H A DAndroid.mk17 $(call include-path-for, audio-utils) \
41 $(call include-path-for, audio-effects) \
42 $(call include-path-for, audio-utils) \
/frameworks/base/cmds/idmap/
H A Didmap.cpp15 idmap --path target overlay idmap \n\
16 idmap --scan target-package-name-to-look-for path-to-target-apk dir-to-hold-idmaps \\\
41 --fd: create idmap for target package 'target' (path to apk) and overlay package 'overlay' \n\
42 (path to apk); write results to file descriptor 'fd' (integer). This invocation \n\
49 --path: create idmap for target package 'target' (path to apk) and overlay package \n\
50 'overlay' (path to apk); write results to 'idmap' (path). \n\
52 --scan: non-recursively search directory 'dir-to-scan' (path) for overlay packages with \n\
54 'path
100 verify_directory_readable(const char *path) argument
105 verify_directory_writable(const char *path) argument
110 verify_file_readable(const char *path) argument
[all...]
/frameworks/base/core/java/android/gesture/
H A DGestureLibraries.java36 public static GestureLibrary fromFile(String path) { argument
37 return fromFile(new File(path));
40 public static GestureLibrary fromFile(File path) { argument
41 return new FileGestureLibrary(path);
55 public FileGestureLibrary(File path) { argument
56 mPath = path;
/frameworks/base/media/java/android/mtp/
H A DMtpDatabase.java64 // path to primary storage
191 String path = subDirectories[i];
192 mSubDirectoriesWhereArgs[j++] = path;
193 mSubDirectoriesWhereArgs[j++] = path + "/%";
282 // check to see if the path is contained in one of our storage subdirectories
284 private boolean inStorageSubDirectory(String path) { argument
286 if (path == null) return false;
289 int pathLength = path.length();
294 path.charAt(subdirLength) == '/' &&
295 path
304 isStorageSubDirectory(String path) argument
315 inStorageRoot(String path) argument
330 beginSendObject(String path, int format, int parent, int storageId, long size, long modified) argument
381 endSendObject(String path, int handle, int format, boolean succeeded) argument
[all...]
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.cpp125 char path[PATH_MAX]; local
129 snprintf(path, sizeof(path), "/proc/%d/ns/mnt", pid);
131 ssize_t r = readlink(path, linkname, PATH_MAX);
133 MYLOGE("Unable to read link for %s: %s\n", path, strerror(errno));
140 snprintf(path, sizeof(path), "/proc/%d/mountinfo", pid);
141 if (add_zip_entry(ZIP_ROOT_DIR + path, path)) {
144 MYLOGE("Unable to add mountinfo %s to zip file\n", path);
162 char path[PATH_MAX]; local
190 const char* path = "/sys/kernel/debug/tracing/tracing_on"; local
221 skip_not_stat(const char *path) argument
230 skip_none(const char *path) argument
317 dump_stat_from_fd(const char *title __unused, const char *path, int fd) argument
585 _add_file_from_fd(const char *title, const char *path, int fd) argument
1153 std::string path; local
[all...]
/frameworks/base/libs/hwui/
H A DPathCache.h61 * Alpha texture used to represent a path.
82 * Left coordinate of the path bounds.
86 * Top coordinate of the path bounds.
90 * Offset to draw the path at the correct origin.
134 } path; member in union:android::uirenderer::PathDescription::Shape
179 void operator()(PathDescription& path, PathTexture*& texture) override;
201 PathTexture* get(const SkPath* path, const SkPaint* paint);
202 void remove(const SkPath* path, const SkPaint* paint);
205 * Removes the specified path. This is meant to be called from threads
208 ANDROID_API void removeDeferred(const SkPath* path);
273 PathTask(const SkPath* path, const SkPaint* paint, PathTexture* texture) argument
282 const SkPath path; member in class:android::uirenderer::PathCache::PathTask
[all...]
/frameworks/av/drm/libdrmframework/include/
H A DDrmManagerClientImpl.h78 * @param[in] path Path of the protected content
86 virtual DrmConstraints* getConstraints(int uniqueId, const String8* path, const int action);
92 * @param[in] path Path of the protected content
98 virtual DrmMetadata* getMetadata(int uniqueId, const String8* path);
101 * Check whether the given mimetype or path can be handled
104 * @param[in] path Path of the content needs to be handled
107 * True if DrmManager can handle given path or mime type.
109 virtual bool canHandle(int uniqueId, const String8& path, const String8& mimeType);
133 * Save DRM rights to specified rights path
134 * and make association with content path
[all...]
H A DDrmManagerService.h79 DrmConstraints* getConstraints(int uniqueId, const String8* path, const int action);
81 DrmMetadata* getMetadata(int uniqueId, const String8* path);
83 bool canHandle(int uniqueId, const String8& path, const String8& mimeType);
92 String8 getOriginalMimeType(int uniqueId, const String8& path, int fd);
94 int getDrmObjectType(int uniqueId, const String8& path, const String8& mimeType);
96 int checkRightsStatus(int uniqueId, const String8& path,int action);
103 bool validateAction(int uniqueId, const String8& path,
106 status_t removeRights(int uniqueId, const String8& path);
/frameworks/av/drm/libdrmframework/plugins/common/include/
H A DIDrmEngine.h96 * @param[in] path Path of the protected content
105 int uniqueId, const String8* path, int action) = 0;
111 * @param[in] path Path of the protected content
117 virtual DrmMetadata* getMetadata(int uniqueId, const String8* path) = 0;
123 * @param[in] path Path the protected object
127 virtual bool canHandle(int uniqueId, const String8& path) = 0;
151 * Save DRM rights to specified rights path
152 * and make association with content path
156 * @param[in] rightsPath File path where rights to be saved
157 * @param[in] contentPath File path wher
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
H A DFwdLockEngine.h49 * @param path Path of the protected content
57 DrmConstraints* onGetConstraints(int uniqueId, const String8* path, int action);
63 * @param path Path of the protected content
69 DrmMetadata* onGetMetadata(int uniqueId, const String8* path);
104 * @param path Path to the protected object
108 bool onCanHandle(int uniqueId, const String8& path);
122 * Save DRM rights to specified rights path
123 * and make association with content path.
127 * @param rightsPath File path where rights to be saved
128 * @param contentPath File path wher
[all...]
/frameworks/av/media/libeffects/loudness/
H A DAndroid.mk20 $(call include-path-for, audio-effects) \
/frameworks/av/media/libeffects/visualizer/
H A DAndroid.mk20 $(call include-path-for, audio-effects)
/frameworks/av/services/medialog/
H A DAndroid.mk13 LOCAL_C_INCLUDES := $(call include-path-for, audio-utils)
/frameworks/base/core/java/android/hardware/fingerprint/
H A DIFingerprintDaemon.aidl33 int setActiveGroup(int groupId, in byte[] path);
/frameworks/base/core/jni/android/graphics/
H A DPathMeasure.cpp25 client to be sure not to edit the path while we have an active measure
28 This costs us the copy of the path, for the sake of not allowing a bad
30 native path has been modified).
33 later changes this, and is internally safe from changes to the path, then
36 Note that we do not have a reference on the java side to the java path.
38 reference, so that the java path would not get GD'd while the measure object
43 PathMeasurePair(const SkPath& path, bool forceClosed) argument
44 : fPath(path), fMeasure(fPath, forceClosed) {}
46 SkPath fPath; // copy of the user's path
57 const SkPath* path local
70 const SkPath* path = reinterpret_cast<SkPath*>(pathHandle); local
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DPathShape.java25 * The path can be drawn to a Canvas with its own draw() method,
40 * @param path a Path that defines the geometric paths for this shape
48 public PathShape(Path path, float stdWidth, float stdHeight) { argument
49 mPath = path;
/frameworks/base/libs/storage/
H A DIMountServiceListener.cpp40 String16 path = data.readString16(); local
43 onStorageStateChanged(path, oldState, newState);
/frameworks/base/media/jni/audioeffect/
H A DAndroid.mk17 $(call include-path-for, audio-effects)
/frameworks/base/rs/java/android/renderscript/
H A DFileA3D.java228 * @param path location of the file to load
232 static public FileA3D createFromAsset(RenderScript rs, AssetManager mgr, String path) { argument
234 long fileId = rs.nFileA3DCreateFromAsset(mgr, path);
237 throw new RSRuntimeException("Unable to create a3d file from asset " + path);
249 * @param path location of the file to load
253 static public FileA3D createFromFile(RenderScript rs, String path) { argument
254 long fileId = rs.nFileA3DCreateFromFile(path);
257 throw new RSRuntimeException("Unable to create a3d file from " + path);
269 * @param path location of the file to load
273 static public FileA3D createFromFile(RenderScript rs, File path) { argument
[all...]
H A DFont.java160 static public Font createFromFile(RenderScript rs, Resources res, String path, float pointSize) { argument
163 long fontId = rs.nFontCreateFromFile(path, pointSize, dpi);
166 throw new RSRuntimeException("Unable to create font from file " + path);
176 static public Font createFromFile(RenderScript rs, Resources res, File path, float pointSize) { argument
177 return createFromFile(rs, res, path.getAbsolutePath(), pointSize);
183 static public Font createFromAsset(RenderScript rs, Resources res, String path, float pointSize) { argument
188 long fontId = rs.nFontCreateFromAsset(mgr, path, pointSize, dpi);
190 throw new RSRuntimeException("Unable to create font from asset " + path);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DScaledTextActivity.java81 Path path = new Path();
82 buildPath(path);
83 return path;
86 private static void buildPath(Path path) { argument
87 path.moveTo(0.0f, 0.0f);
88 path.cubicTo(0.0f, 0.0f, 100.0f, 150.0f, 100.0f, 200.0f);
89 path.cubicTo(100.0f, 200.0f, 50.0f, 300.0f, -80.0f, 200.0f);
90 path.cubicTo(-80.0f, 200.0f, 100.0f, 200.0f, 200.0f, 0.0f);

Completed in 549 milliseconds

1234567891011>>