Searched refs:inPath (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/libs/hwui/ |
D | VectorDrawable.cpp | 134 static void applyTrim(SkPath* outPath, const SkPath& inPath, float trimPathStart, float trimPathEnd, in applyTrim() argument 137 *outPath = inPath; in applyTrim() 145 SkPathMeasure measure(inPath, false); in applyTrim() 177 SkPath inPath = *outPath; in getStagingPath() local 178 applyTrim(outPath, inPath, mStagingProperties.getTrimPathStart(), in getStagingPath()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageManagerShellCommand.java | 144 final String inPath = getNextArg(); in runInstall() local 145 if (inPath == null && params.sessionParams.sizeBytes == 0) { in runInstall() 149 if (doWriteSplit(sessionId, inPath, params.sessionParams.sizeBytes, "base.apk", in runInstall() 1146 private int doWriteSplit(int sessionId, String inPath, long sizeBytes, String splitName, in doWriteSplit() argument 1149 if ("-".equals(inPath)) { in doWriteSplit() 1150 inPath = null; in doWriteSplit() 1151 } else if (inPath != null) { in doWriteSplit() 1152 final File file = new File(inPath); in doWriteSplit() 1167 if (inPath != null) { in doWriteSplit() 1168 in = new FileInputStream(inPath); in doWriteSplit()
|
/frameworks/base/cmds/pm/src/com/android/commands/pm/ |
D | Pm.java | 369 final String inPath = nextArg(); in runInstall() local 370 if (inPath == null && params.sessionParams.sizeBytes == 0) { in runInstall() 374 if (doWriteSession(sessionId, inPath, params.sessionParams.sizeBytes, "base.apk", in runInstall() 530 private int doWriteSession(int sessionId, String inPath, long sizeBytes, String splitName, in doWriteSession() argument 532 if ("-".equals(inPath)) { in doWriteSession() 533 inPath = null; in doWriteSession() 534 } else if (inPath != null) { in doWriteSession() 535 final File file = new File(inPath); in doWriteSession() 550 if (inPath != null) { in doWriteSession() 551 in = new FileInputStream(inPath); in doWriteSession()
|