Lines Matching defs:path

1496                     // we will need the shared library path, so look that up and store it here
2879 String path; // subpath within the semantic domain
2890 sb.append(domain); sb.append(':'); sb.append(path); sb.append(',');
2972 mInfo.domain, mInfo.path, mInfo.mode, mInfo.mtime,
3193 if (info.path.equals(BACKUP_MANIFEST_FILENAME)) {
3323 + info.path);
3336 info.domain, info.path, info.mode, info.mtime,
3804 b.append(info.path);
3823 info.path = extractString(block, 345, 155); // prefix
3824 String path = extractString(block, 0, 100);
3825 if (path.length() > 0) {
3826 if (info.path.length() > 0) info.path += '/';
3827 info.path += path;
3866 // Parse out the path
3870 info.path, 0, FullBackup.SHARED_PREFIX.length())) {
3872 info.path = info.path.substring(FullBackup.SHARED_PREFIX.length());
3875 if (DEBUG) Slog.i(TAG, "File in shared storage: " + info.path);
3877 info.path, 0, FullBackup.APPS_PREFIX.length())) {
3881 info.path = info.path.substring(FullBackup.APPS_PREFIX.length());
3884 int slash = info.path.indexOf('/');
3885 if (slash < 0) throw new IOException("Illegal semantic path in " + info.path);
3886 info.packageName = info.path.substring(0, slash);
3887 info.path = info.path.substring(slash+1);
3890 if (!info.path.equals(BACKUP_MANIFEST_FILENAME)) {
3891 slash = info.path.indexOf('/');
3892 if (slash < 0) throw new IOException("Illegal semantic path in non-manifest " + info.path);
3893 info.domain = info.path.substring(0, slash);
3905 info.path = info.path.substring(slash + 1);
4006 if ("path".equals(keyStr)) {
4007 info.path = valStr;