Searched defs:path (Results 226 - 250 of 269) sorted by relevance

1234567891011

/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp570 PathAdder(Vector<uint32_t> *path, uint32_t chunkType) argument
571 : mPath(path) {
586 static bool underMetaDataPath(const Vector<uint32_t> &path) { argument
587 return path.size() >= 5
588 && path[0] == FOURCC('m', 'o', 'o', 'v')
589 && path[1] == FOURCC('u', 'd', 't', 'a')
590 && path[2] == FOURCC('m', 'e', 't', 'a')
591 && path[3] == FOURCC('i', 'l', 's', 't');
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h146 AString host, path, user, pass; local
149 mSessionURL.c_str(), &host, &port, &path, &user, &pass));
157 mSessionURL.append(path);
/frameworks/av/services/audioflinger/
H A DAudioPolicyService.cpp1313 status_t AudioPolicyService::loadPreProcessorConfig(const char *path) argument
1318 data = (char *)load_file(path, NULL);
/frameworks/base/core/java/android/app/
H A DDownloadManager.java428 * Set the local destination for the downloaded file. Must be a file URI to a path on
464 * Set the local destination for the downloaded file to a path within the application's
472 * @param subPath the path within the external directory, including the destination filename
482 * Set the local destination for the downloaded file to a path within the public external
491 * @param subPath the path within the external directory, including the destination filename
1016 String path = cursor.getString(
1018 return Uri.fromFile(new File(path));
1152 * @param path absolute pathname to the file. The file should be world-readable, so that it can
1161 boolean isMediaScannerScannable, String mimeType, String path, long length,
1166 validateArgumentIsNonEmpty("path", pat
1160 addCompletedDownload(String title, String description, boolean isMediaScannerScannable, String mimeType, String path, long length, boolean showNotification) argument
[all...]
H A DIApplicationThread.java113 void profilerControl(boolean start, String path, ParcelFileDescriptor fd, int profileType) argument
115 void dumpHeap(boolean managed, String path, ParcelFileDescriptor fd) argument
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java340 * Return a String array of all the assets at the given path.
342 * @param path A relative path within the assets, i.e., "docs/home.html".
345 * names are relative to 'path'. You can open the file by
346 * concatenating 'path' and a name in the returned string (via
351 public native final String[] list(String path) argument
605 public native final int addAssetPath(String path); argument
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java120 private static native int nativeOpen(String path, int openFlags, String label, argument
209 mConnectionPtr = nativeOpen(mConfiguration.path, mConfiguration.openFlags,
1124 String path = window.getString(i, 2);
1134 if (!path.isEmpty()) {
1135 label += ": " + path;
1159 String label = mConfiguration.path;
1171 return "SQLiteConnection: " + mConfiguration.path + " (" + mConnectionId + ")";
/frameworks/base/core/java/android/provider/
H A DMediaStore.java802 * @param imagePath The path to the image to insert
1339 public static Uri getContentUriForPath(String path) { argument
1340 return (path.startsWith(Environment.getExternalStorageDirectory().getPath()) ?
/frameworks/base/core/jni/android/graphics/
H A DCanvas.cpp267 SkPath* path, int op) {
268 return canvas->clipPath(*path, (SkRegion::Op)op);
289 SkPath* path, int edgetype) {
290 return canvas->quickReject(*path, (SkCanvas::EdgeType)edgetype);
435 static void drawPath(JNIEnv* env, jobject, SkCanvas* canvas, SkPath* path, argument
437 canvas->drawPath(*path, *paint);
919 SkPath* path, jfloat hOffset, jfloat vOffset, jint bidiFlags, SkPaint* paint) {
923 path, canvas);
928 SkCanvas* canvas, jstring text, SkPath* path,
933 path, canva
266 clipPath(JNIEnv* env, jobject, SkCanvas* canvas, SkPath* path, int op) argument
288 quickReject__PathI(JNIEnv* env, jobject, SkCanvas* canvas, SkPath* path, int edgetype) argument
917 drawTextOnPath___CIIPathFFPaint(JNIEnv* env, jobject, SkCanvas* canvas, jcharArray text, int index, int count, SkPath* path, jfloat hOffset, jfloat vOffset, jint bidiFlags, SkPaint* paint) argument
927 drawTextOnPath__StringPathFFPaint(JNIEnv* env, jobject, SkCanvas* canvas, jstring text, SkPath* path, jfloat hOffset, jfloat vOffset, jint bidiFlags, SkPaint* paint) argument
[all...]
H A DPaint.cpp691 jint bidiFlags, jfloat x, jfloat y, SkPath *path) {
692 TextLayout::getTextPath(paint, text, count, bidiFlags, x, y, path);
696 jcharArray text, int index, int count, jfloat x, jfloat y, SkPath* path) {
698 getTextPath(env, paint, textArray + index, count, bidiFlags, x, y, path);
703 jstring text, int start, int end, jfloat x, jfloat y, SkPath* path) {
705 getTextPath(env, paint, textArray + start, end - start, bidiFlags, x, y, path);
690 getTextPath(JNIEnv* env, SkPaint* paint, const jchar* text, jint count, jint bidiFlags, jfloat x, jfloat y, SkPath *path) argument
695 getTextPath___C(JNIEnv* env, jobject clazz, SkPaint* paint, jint bidiFlags, jcharArray text, int index, int count, jfloat x, jfloat y, SkPath* path) argument
702 getTextPath__String(JNIEnv* env, jobject clazz, SkPaint* paint, jint bidiFlags, jstring text, int start, int end, jfloat x, jfloat y, SkPath* path) argument
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp241 // critical keys like DPAD go through this path. We really need to have
602 loadNativeCode_native(JNIEnv* env, jobject clazz, jstring path, jstring funcName, argument
609 const char* pathStr = env->GetStringUTFChars(path, NULL);
614 env->ReleaseStringUTFChars(path, pathStr);
H A Dandroid_util_AssetManager.cpp433 jstring path)
435 ScopedUtfChars path8(env, path);
432 android_content_AssetManager_addAssetPath(JNIEnv* env, jobject clazz, jstring path) argument
H A Dandroid_view_GLES20Canvas.cpp470 OpenGLRenderer* renderer, SkPath* path, SkPaint* paint) {
471 renderer->drawPath(path, paint);
542 SkPath* path, jfloat hOffset, jfloat vOffset, int flags, SkPaint* paint) {
551 renderer->drawTextOnPath((const char*) glyphs, bytesCount, glyphsCount, path,
590 SkPath* path, jfloat hOffset, jfloat vOffset, jint flags, SkPaint* paint) {
592 renderTextOnPath(renderer, textArray + index, count, path,
599 SkPath* path, jfloat hOffset, jfloat vOffset, jint flags, SkPaint* paint) {
601 renderTextOnPath(renderer, textArray + start, end - start, path,
469 android_view_GLES20Canvas_drawPath(JNIEnv* env, jobject clazz, OpenGLRenderer* renderer, SkPath* path, SkPaint* paint) argument
541 renderTextOnPath(OpenGLRenderer* renderer, const jchar* text, int count, SkPath* path, jfloat hOffset, jfloat vOffset, int flags, SkPaint* paint) argument
588 android_view_GLES20Canvas_drawTextArrayOnPath(JNIEnv* env, jobject clazz, OpenGLRenderer* renderer, jcharArray text, jint index, jint count, SkPath* path, jfloat hOffset, jfloat vOffset, jint flags, SkPaint* paint) argument
597 android_view_GLES20Canvas_drawTextOnPath(JNIEnv* env, jobject clazz, OpenGLRenderer* renderer, jstring text, jint start, jint end, SkPath* path, jfloat hOffset, jfloat vOffset, jint flags, SkPaint* paint) argument
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java621 * Modify the current clip with the specified path.
623 * @param path The path to operate on the current clip
627 public boolean clipPath(Path path, Region.Op op) { argument
628 return native_clipPath(mNativeCanvas, path.ni(), op.nativeInt);
632 * Intersect the current clip with the specified path.
634 * @param path The path to intersect with the current clip
637 public boolean clipPath(Path path) { argument
638 return clipPath(path, Regio
728 quickReject(Path path, EdgeType type) argument
1020 drawPath(Path path, Paint paint) argument
1544 drawTextOnPath(char[] text, int index, int count, Path path, float hOffset, float vOffset, Paint paint) argument
1567 drawTextOnPath(String text, Path path, float hOffset, float vOffset, Paint paint) argument
1661 native_quickReject(int nativeCanvas, int path, int native_edgeType) argument
1695 native_drawPath(int nativeCanvas, int path, int paint) argument
1751 native_drawTextOnPath(int nativeCanvas, char[] text, int index, int count, int path, float hOffset, float vOffset, int bidiFlags, int paint) argument
1757 native_drawTextOnPath(int nativeCanvas, String text, int path, float hOffset, float vOffset, int flags, int paint) argument
[all...]
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp79 String8 path(root);
80 path.appendPath(kIdmapCacheDir);
96 path.appendPath(filename);
97 path.append("@idmap");
99 return path;
155 bool AssetManager::addAssetPath(const String8& path, void** cookie) argument
161 String8 realPath(path);
167 ap.path = realPath;
169 ap.path = path;
956 String8 path; local
1253 String8 path; local
1379 scanDirLocked(const String8& path) argument
1797 SharedZip(const String8& path, time_t modWhen) argument
1811 get(const String8& path) argument
1927 getZip(const String8& path) argument
1938 getZipResourceTableAsset(const String8& path) argument
1949 setZipResourceTableAsset(const String8& path, Asset* asset) argument
1958 getZipResourceTable(const String8& path) argument
1969 setZipResourceTable(const String8& path, ResTable* res) argument
[all...]
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.cpp169 SkPath* path = mPaths.itemAt(i); local
170 caches.pathCache.remove(path);
171 delete path;
583 SkPath* path = getPath(); local
585 ALOGD("%s%s %p, %p", (char*) indent, OP_NAMES[op], path, paint);
605 SkPath* path = getPath(); local
1218 SkPath* path = getPath(); local
1220 DISPLAY_LIST_LOGD("%s%s %p, %p", (char*) indent, OP_NAMES[op], path, paint);
1221 drawGlStatus |= renderer.drawPath(path, paint);
1243 SkPath* path local
1720 drawPath(SkPath* path, SkPaint* paint) argument
1750 drawTextOnPath(const char* text, int bytesCount, int count, SkPath* path, float hOffset, float vOffset, SkPaint* paint) argument
[all...]
H A DDisplayListRenderer.h602 virtual status_t drawPath(SkPath* path, SkPaint* paint);
605 virtual status_t drawTextOnPath(const char* text, int bytesCount, int count, SkPath* path,
762 inline void addPath(SkPath* path) { argument
763 if (!path) {
768 SkPath* pathCopy = mPathMap.valueFor(path);
769 if (pathCopy == NULL || pathCopy->getGenerationID() != path->getGenerationID()) {
770 pathCopy = new SkPath(*path);
771 pathCopy->setSourcePath(path);
773 mPathMap.replaceValueFor(path, pathCopy);
776 if (mSourcePaths.indexOf(path) <
[all...]
/frameworks/base/services/java/com/android/server/
H A DMountService.java186 /** Map from path to {@link StorageVolume} */
189 /** Map from path to state */
338 final String path; field in class:MountService.UnmountCallBack
343 UnmountCallBack(String path, boolean force, boolean removeEncryption) { argument
345 this.path = path;
351 if (DEBUG_UNMOUNT) Slog.i(TAG, "Unmounting " + path);
352 doUnmountVolume(path, true, removeEncryption);
359 UmsEnableCallBack(String path, String method, boolean force) { argument
360 super(path, forc
373 ShutdownCallBack(String path, IMountShutdownObserver observer) argument
618 doShareUnshareVolume(String path, String method, boolean enable) argument
858 notifyVolumeStateChange(String label, String path, int oldState, int newState) argument
925 doMountVolume(String path) argument
989 doUnmountVolume(String path, boolean force, boolean removeEncryption) argument
1031 doFormatVolume(String path) argument
1047 doGetVolumeShared(String path, String method) argument
1516 mountVolume(String path) argument
1523 unmountVolume(String path, boolean force, boolean removeEncryption) argument
1545 formatVolume(String path) argument
1552 getStorageUsers(String path) argument
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DSettings.java370 Slog.w(PackageManagerService.TAG, "Trying to update system app code path from "
373 // Just a change in the code path is not an issue, but
379 * native library path over the one stored in the
529 // Update code path if needed
531 Slog.w(PackageManagerService.TAG, "Code path for pkg : " + p.pkg.packageName +
536 //Update resource path if needed
538 Slog.w(PackageManagerService.TAG, "Resource path for pkg : " + p.pkg.packageName +
543 // Update the native library path if needed
1351 // Avoid any application that has a space in its path
1361 // dataPath - path t
2328 createNewUserLILPw(Installer installer, int userHandle, File path) argument
[all...]
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp35 * Pass in just the filename, not the full path.
48 return false; // reject path sep chars
65 static bool isHidden(const char *root, const char *path) argument
80 if (strcmp(path, ".") == 0 || strcmp(path, "..") == 0) {
99 fullPath.appendPath(path);
102 int plen = strlen(path);
127 ignore = strncasecmp(token, path + plen - n, n) == 0;
131 ignore = strncasecmp(token, path, n - 1) == 0;
133 ignore = strcasecmp(token, path)
1705 makeDir(const String8& path) argument
2046 addResource(const String8& leafName, const String8& path, const sp<AaptFile>& file, const String8& resType) argument
[all...]
H A DAaptAssets.h197 // a full path to a file on the filesystem that holds its data.
226 AaptGroup(const String8& leaf, const String8& path) argument
227 : mLeaf(leaf), mPath(path) { }
232 // Returns the relative path after the AaptGroupEntry dirs.
259 AaptDir(const String8& leaf, const String8& path) argument
260 : mLeaf(leaf), mPath(path) { }
549 const String8& path,
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java583 int path,
796 /*package*/ static void native_drawPath(int nativeCanvas, int path, int paint) { argument
797 final Path_Delegate pathDelegate = Path_Delegate.getDelegate(path);
1133 int count, int path,
1144 String text, int path,
582 native_quickReject(int nativeCanvas, int path, int native_edgeType) argument
1131 native_drawTextOnPath(int nativeCanvas, char[] text, int index, int count, int path, float hOffset, float vOffset, int bidiFlags, int paint) argument
1143 native_drawTextOnPath(int nativeCanvas, String text, int path, float hOffset, float vOffset, int flags, int paint) argument
H A DPaint_Delegate.java1054 char[] text, int index, int count, float x, float y, int path) {
1062 String text, int start, int end, float x, float y, int path) {
1053 native_getTextPath(int native_object, int bidiFlags, char[] text, int index, int count, float x, float y, int path) argument
1061 native_getTextPath(int native_object, int bidiFlags, String text, int start, int end, float x, float y, int path) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java216 public void iccIO (int command, int fileid, String path, int p1, int p2, argument
219 public void iccIOForApp (int command, int fileid, String path, int p1, int p2, argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1048 public void iccIO(int command, int fileid, String path, int p1, int p2, int p3, String data, argument
1050 iccIOForApp(command, fileid, path, p1, p2, p3, data,pin2, null, response);
1058 public void iccIOForApp (int command, int fileid, String path, int p1, int p2, argument

Completed in 365 milliseconds

1234567891011