Searched defs:inPath (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java369 final String inPath = nextArg();
370 if (inPath == null && params.sessionParams.sizeBytes == 0) {
374 if (doWriteSession(sessionId, inPath, params.sessionParams.sizeBytes, "base.apk",
530 private int doWriteSession(int sessionId, String inPath, long sizeBytes, String splitName, argument
532 if ("-".equals(inPath)) {
533 inPath = null;
534 } else if (inPath != null) {
535 final File file = new File(inPath);
550 if (inPath != null) {
551 in = new FileInputStream(inPath);
[all...]
/frameworks/base/libs/hwui/
H A DVectorDrawable.cpp134 static void applyTrim(SkPath* outPath, const SkPath& inPath, float trimPathStart, float trimPathEnd, argument
137 *outPath = inPath;
145 SkPathMeasure measure(inPath, false);
177 SkPath inPath = *outPath; local
178 applyTrim(outPath, inPath, mStagingProperties.getTrimPathStart(),
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerShellCommand.java144 final String inPath = getNextArg();
145 if (inPath == null && params.sessionParams.sizeBytes == 0) {
149 if (doWriteSplit(sessionId, inPath, params.sessionParams.sizeBytes, "base.apk",
1146 private int doWriteSplit(int sessionId, String inPath, long sizeBytes, String splitName, argument
1149 if ("-".equals(inPath)) {
1150 inPath = null;
1151 } else if (inPath != null) {
1152 final File file = new File(inPath);
1167 if (inPath != null) {
1168 in = new FileInputStream(inPath);
[all...]

Completed in 146 milliseconds