/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/ |
SharedStorageAgent.java | 59 int type, String domain, String relpath, long mode, long mtime) 61 Slog.d(TAG, "Shared restore: [ " + domain + " : " + relpath + "]"); 66 int slash = relpath.indexOf('/'); 69 int i = Integer.parseInt(relpath.substring(0, slash)); 71 outFile = new File(mVolumes[i].getPath(), relpath.substring(slash + 1)); 77 if (DEBUG) Slog.w(TAG, "Bad volume number token: " + relpath.substring(0, slash)); 83 Slog.e(TAG, "Skipping data with malformed path " + relpath);
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
ospath.py | 23 """Contains a substitute for Python 2.6's os.path.relpath().""" 28 # This function is a replacement for os.path.relpath(), which is only 31 # http://docs.python.org/library/os.path.html#os.path.relpath 33 # It should behave essentially the same as os.path.relpath(), except for 35 def relpath(path, start_path, os_path_abspath=None, sep=None): function
|
ospath_unittest.py | 28 from webkitpy.common.system.ospath import relpath namespace 34 """Tests relpath().""" 39 return relpath(path, abs_start_path, self.os_path_abspath)
|
directoryfileset.py | 49 return bool(self._filesystem.relpath(self._filesystem.join(dir, filename), dir))
|
filesystem.py | 221 def relpath(self, path, start='.'): member in class:FileSystem 222 return ospath.relpath(path, start)
|
filesystem_mock.py | 260 def relpath(self, path, start='.'): member in class:MockFileSystem 261 return ospath.relpath(path, start, self.abspath, self.sep)
|
/external/webkit/Tools/Scripts/ |
make-gypi | 50 collected_files.append(os.path.relpath(relative_path, '.'))
|
/external/webkit/Tools/Scripts/webkitpy/style/ |
main.py | 27 from webkitpy.common.system.ospath import relpath as _relpath
|
/development/tools/elftree/ |
elftree.c | 292 char *relpath; local 295 relpath = getenv("ANDROID_PRODUCT_OUT"); 296 if (!relpath) { 299 relpath = "."; 302 snprintf(path, PATH_MAX, "%s/%s", relpath, "system/lib");
|
/external/webkit/Tools/Scripts/webkitpy/common/config/ |
committervalidator.py | 33 from webkitpy.common.system.ospath import relpath namespace 53 # os.path.relpath 54 path = relpath(path, self._checkout_root())
|
/external/webkit/Tools/wx/build/ |
build_utils.py | 71 relpath = os.path.join(adir, feature) 72 featuredir = os.path.join(root, relpath) 73 if os.path.exists(featuredir) and not relpath in outdirs: 74 outdirs.append(relpath)
|
/external/icu4c/tools/tzcode/ |
zdump.c | 986 static void getzones(char * basedir, char * relpath, struct listentry ** last, int * count) { 992 if (relpath != NULL) { 994 strcat(path, relpath); 999 if (strstr(relpath, ".tab") == NULL) { 1003 if ((pzonename = malloc(strlen(relpath) + 1)) == NULL) { 1006 strcpy(pzonename, relpath); 1027 if (relpath != NULL) { 1028 strcpy(subpath, relpath);
|
/bionic/libc/tools/ |
gensyscalls.py | 43 def create_file( relpath ): 44 dir = os.path.dirname( bionic_temp + relpath ) 46 return open( bionic_temp + relpath, "w" )
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/ |
deduplicate_tests.py | 187 return ospath.relpath(abs_path, relative_to)
|
/external/chromium/net/proxy/ |
proxy_script_fetcher_impl_unittest.cc | 72 GURL GetTestFileUrl(const std::string& relpath) { 79 return GURL(base_url.spec() + "/" + relpath);
|
/external/chromium/testing/gmock/scripts/ |
upload.py | [all...] |
/external/chromium/testing/gtest/scripts/ |
upload.py | [all...] |
/frameworks/base/libs/utils/ |
BackupHelpers.cpp | 498 String8 relpath(relstart); 500 // If relpath is empty, it means this is the top of one of the standard named 502 if (relpath.length() == 0) { 508 // relpath < 100 chars 510 if ((5 + packageName.length() + 1 + domain.length() >= 155) || (relpath.length() >= 100)) { 615 fullname.appendPath(relpath); 622 strncpy(buf, relpath.string(), 100); [all...] |
/external/chromium/chrome/common/extensions/docs/build/ |
directory.py | 371 This method is used because we may not be able to rely on os.path.relpath 670 relpath = sample_dirname + abspath.replace(sample_path, "") 672 zip_file.write(abspath, relpath)
|
/external/oprofile/ |
oprofile_android | 389 out_path = os.path.join(samples_dir, os.path.relpath(in_path, raw_samples_dir))
|
/external/webkit/Tools/Scripts/webkitpy/common/checkout/ |
scm_unittest.py | [all...] |
scm.py | 346 self._patch_directories = [ospath.relpath(cwd, self.checkout_root)] 649 # If we were using 2.6 # checkout_root = os.path.relpath(checkout_root, path) [all...] |
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
SettingsBackupAgent.java | 234 int type, String domain, String relpath, long mode, long mtime)
|