Searched refs:path (Results 201 - 225 of 535) sorted by relevance

1234567891011>>

/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp108 DrmConstraints* FwdLockEngine::onGetConstraints(int uniqueId, const String8* path, int action) { argument
113 if (NULL != path &&
114 (RightsStatus::RIGHTS_VALID == onCheckRightsStatus(uniqueId, *path, action))) {
122 DrmMetadata* FwdLockEngine::onGetMetadata(int uniqueId, const String8* path) { argument
127 if (NULL != path) {
225 bool FwdLockEngine::onCanHandle(int uniqueId, const String8& path) { argument
228 String8 extString = path.getPathExtension();
264 const String8& path,
271 if (onCanHandle(uniqueId, path)) {
303 const String8& path,
263 onCheckRightsStatus(int uniqueId, const String8& path, int action) argument
302 onValidateAction(int uniqueId, const String8& path, int action, const ActionDescription& description) argument
312 onGetOriginalMimeType(int uniqueId, const String8& path, int fd) argument
336 onGetDrmObjectType(int uniqueId, const String8& path, const String8& mimeType) argument
357 onRemoveRights(int uniqueId, const String8& path) argument
[all...]
/frameworks/av/media/mtp/
H A DMtpServer.cpp281 void MtpServer::addEditObject(MtpObjectHandle handle, MtpString& path, argument
283 ObjectEdit* edit = new ObjectEdit(handle, path, size, format, fd);
878 MtpString path; local
892 path = storage->getPath();
897 int result = mDatabase->getObjectFilePath(parent, path, length, format);
935 if (path[path.size() - 1] != '/')
936 path += "/";
937 path += (const char *)name;
951 ALOGD("path
1059 deleteRecursive(const char* path) argument
1105 deletePath(const char* path) argument
1273 MtpString path; local
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/common/
H A DFwdLockGlue.c43 * Creates all directories along the fully qualified path of the given file.
45 * @param[in] path A reference to the fully qualified path of a file.
50 static int FwdLockGlue_CreateDirectories(const char *path, mode_t mode) { argument
52 size_t partialPathLength = strlen(path);
59 if (path[i] == '/' && i > 0) {
66 partialPath[i] = path[i];
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.h47 char *path; member in struct:lib_entry_s
/frameworks/base/core/java/android/animation/
H A DObjectAnimator.java74 * will cause the code to take an optimized path for these constrained circumstances. Other
237 * @param path The <code>Path</code> to animate values along.
238 * @return An ObjectAnimator object that is set up to animate along <code>path</code>.
241 Path path) {
242 PathKeyframes keyframes = KeyframeSet.ofPath(path);
278 * @param path The <code>Path</code> to animate values along.
279 * @return An ObjectAnimator object that is set up to animate along <code>path</code>.
282 Property<T, Integer> yProperty, Path path) {
283 PathKeyframes keyframes = KeyframeSet.ofPath(path);
324 * @param path Th
240 ofInt(Object target, String xPropertyName, String yPropertyName, Path path) argument
281 ofInt(T target, Property<T, Integer> xProperty, Property<T, Integer> yProperty, Path path) argument
327 ofMultiInt(Object target, String propertyName, Path path) argument
434 ofFloat(Object target, String xPropertyName, String yPropertyName, Path path) argument
476 ofFloat(T target, Property<T, Float> xProperty, Property<T, Float> yProperty, Path path) argument
523 ofMultiFloat(Object target, String propertyName, Path path) argument
598 ofObject(Object target, String propertyName, @Nullable TypeConverter<PointF, ?> converter, Path path) argument
675 ofObject(T target, @NonNull Property<T, V> property, @Nullable TypeConverter<PointF, V> converter, Path path) argument
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteOpenHelper.java219 final String path = mContext.getDatabasePath(mName).getPath();
220 db = SQLiteDatabase.openDatabase(path, mFactory,
233 final String path = mContext.getDatabasePath(mName).getPath();
234 db = SQLiteDatabase.openDatabase(path, mFactory,
/frameworks/base/core/java/android/transition/
H A DArcMotion.java27 * A PathMotion that generates a curved path along an arc on an imaginary circle containing
35 * the path, {@link #setMinimumHorizontalAngle(float)} and
83 * circle will be far from both points, giving a near straight path between the points.
85 * exaggerated curve to the path.
100 * circle will be far from both points, giving a near straight path between the points.
102 * exaggerated curve to the path.
115 * circle will be far from both points, giving a near straight path between the points.
117 * exaggerated curve to the path.
132 * circle will be far from both points, giving a near straight path between the points.
134 * exaggerated curve to the path
[all...]
H A DTranslationAnimationCreator.java68 Path path = new Path();
69 path.moveTo(startX, startY);
70 path.lineTo(endX, endY);
72 path);
/frameworks/base/include/private/graphics/
H A DCanvas.h76 virtual bool quickRejectPath(const SkPath& path) const = 0;
79 virtual bool clipPath(const SkPath* path, SkRegion::Op op) = 0;
107 virtual void drawPath(const SkPath& path, const SkPaint& paint) = 0;
129 virtual void drawTextOnPath(const uint16_t* glyphs, int count, const SkPath& path,
/frameworks/base/libs/usb/tests/accessorytest/
H A Dhid.c134 char path[100]; local
136 snprintf(path, sizeof(path), "/dev/%s", name);
137 int fd = open(path, O_RDWR);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardClockPositionAlgorithm.java64 Path path = new Path();
65 path.moveTo(0, 0);
66 path.cubicTo(0.3f, 0.875f, 0.6f, 1f, 1f, 1f);
67 sSlowDownInterpolator = new PathInterpolator(path);
/frameworks/base/services/core/jni/
H A DAndroid.mk40 $(call include-path-for, libhardware)/hardware \
41 $(call include-path-for, libhardware_legacy)/hardware_legacy \
/frameworks/base/tools/aapt/
H A DApkBuilder.cpp59 status_t ApkBuilder::addEntry(const String8& path, const sp<AaptFile>& file) { argument
63 return mSplits.editItemAt(i)->addEntry(path, file);
109 status_t ApkSplit::addEntry(const String8& path, const sp<AaptFile>& file) { argument
110 if (!mFiles.insert(OutputEntry(path, file)).second) {
H A DFileFinder.h35 /* findFiles takes a path, a Vector of extensions, and a destination KeyedVector
36 * and places path/modification date key/values pointing to
39 * path is a valid system path
42 * compares the end of the path string so if the "."
49 * matching files encountered in subdirectories of path
62 * checkAndAddFile looks at a single file path and stat combo
71 * is added to the KeyedVector with the path as the key and the modification
75 static void checkAndAddFile(String8 path, const struct stat* stats,
H A DApkBuilder.h52 android::status_t addEntry(const String8& path, const android::sp<AaptFile>& file);
72 android::status_t addEntry(const String8& path, const android::sp<AaptFile>& file);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DMain.java85 for (String path : osJarPath) {
86 log.info("Input : %1$s", path);
145 for (String path : osJarPath) {
146 log.info("- Input JAR : %1$s", path);
209 log.error("Missing parameter: path to input jar");
213 log.error("Missing parameter: path to output jar");
/frameworks/base/tools/layoutlib/rename_font/
H A Dtest.py9 PYTHONPATH="$PYTHONPATH:/path/to/android/checkout/external/fonttools/Lib" ./test.py
30 out_path = os.path.join(destdir, font_name)
/frameworks/compile/mclinker/lib/Support/
H A DDirectory.cpp170 Path* DirIterator::path() function in class:DirIterator
177 const Path* DirIterator::path() const function in class:DirIterator
243 const Path* x_path = path();
244 const Path* y_path = y.path();
/frameworks/av/media/libnbaio/
H A DAndroid.mk21 #LOCAL_C_INCLUDES += path/to/libsndfile/src
/frameworks/av/media/mediaserver/
H A DAndroid.mk40 $(call include-path-for, audio-utils) \
/frameworks/base/core/jni/
H A Dandroid_os_SELinux.cpp153 * path: the location of the file system object
156 * Exception: NullPointerException is thrown if either path or context strign are NULL
163 ScopedUtfChars path(env, pathStr);
164 if (path.c_str() == NULL) {
175 int ret = setfilecon(path.c_str(), tmp);
177 ALOGV("setFileCon(%s, %s) => %d", path.c_str(), context.c_str(), ret);
183 * Purpose: retrieves the context associated with the given path in the file system
185 * path: given path in the file system
189 * Exceptions: NullPointerException if the path objec
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DTypeface.java179 * @param path The file name of the font data in the assets directory
182 public static Typeface createFromAsset(AssetManager mgr, String path) { argument
185 if (fontFamily.addFontFromAsset(mgr, path)) {
190 throw new RuntimeException("Font asset not found " + path);
196 * @param path The path to the font data.
199 public static Typeface createFromFile(File path) { argument
200 return createFromFile(path.getAbsolutePath());
206 * @param path The full path t
209 createFromFile(String path) argument
[all...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DPathOpsActivity.java81 for (Path path : mPaths) {
82 canvas.drawPath(path, mPaint);
/frameworks/wilhelm/tests/
H A DAndroid.mk21 $(call include-path-for, wilhelm) \
/frameworks/base/core/java/android/app/
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);

Completed in 1449 milliseconds

1234567891011>>