HomeSort by relevance Sort by last modified time
    Searched refs:new_path (Results 26 - 50 of 51) sorted by null

12 3

  /external/autotest/client/cros/cellular/
cell_tools.py 251 new_path = _WaitForModemToReturn(
254 if not _IsCdmaModemConfiguredCorrectly(manager, new_path):
256 return new_path
  /test/vts/runners/host/
utils.py 225 new_path = os.path.join(base_path, file_full_path)
226 if os.path.isfile(new_path):
228 file_full_path = new_path
  /system/update_engine/
p2p_manager.cc 625 FilePath new_path = path.RemoveExtension(); local
626 LOG_ASSERT(new_path.MatchesExtension(kP2PExtension));
627 if (rename(path.value().c_str(), new_path.value().c_str()) != 0) {
629 << " to " << new_path.value();
  /external/selinux/python/sepolicy/sepolicy/
manpage.py 187 self.new_path = self.old_path + self.os_version + "/"
202 if not os.path.isdir(self.new_path):
203 os.mkdir(self.new_path)
208 convert_manpage_to_html((self.new_path + d.split("_selinux")[0] + ".html"), self.old_path + d)
213 convert_manpage_to_html((self.new_path + r.split("_selinux")[0] + ".html"), self.old_path + r)
262 html = self.new_path + self.os_version + ".html"
    [all...]
  /frameworks/native/cmds/installd/
dexopt.cpp 853 std::string new_path = oat_path; local
863 std::string new_path = oat_path; local
    [all...]
otapreopt.cpp 1066 std::string new_path = StringPrintf("%s\/oat\/%s\/%s.odex.%s", local
1072 LOG(ERROR) << "apk_path of " << apk_path << " is too long: " << new_path; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
os.py 306 new_path = join(top, name)
307 if followlinks or not islink(new_path):
308 for x in walk(new_path, topdown, onerror, followlinks):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
os.py 321 new_path = join(top, name)
322 if followlinks or not islink(new_path):
323 for x in walk(new_path, topdown, onerror, followlinks):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
os.py 292 new_path = join(top, name)
293 if followlinks or not islink(new_path):
294 for x in walk(new_path, topdown, onerror, followlinks):
mailbox.py 325 new_path = os.path.join(self._path, subdir, key + suffix)
326 os.rename(os.path.join(self._path, temp_subpath), new_path)
328 os.utime(new_path, (os.path.getatime(new_path),
879 new_path = os.path.join(self._path, str(new_key))
880 f = _create_carefully(new_path)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
os.py 292 new_path = join(top, name)
293 if followlinks or not islink(new_path):
294 for x in walk(new_path, topdown, onerror, followlinks):
mailbox.py 338 new_path = os.path.join(self._path, subdir, key + suffix)
339 os.rename(os.path.join(self._path, temp_subpath), new_path)
341 os.utime(new_path, (os.path.getatime(new_path),
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
os.py 292 new_path = join(top, name)
293 if followlinks or not islink(new_path):
294 for x in walk(new_path, topdown, onerror, followlinks):
mailbox.py 338 new_path = os.path.join(self._path, subdir, key + suffix)
339 os.rename(os.path.join(self._path, temp_subpath), new_path)
341 os.utime(new_path, (os.path.getatime(new_path),
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
os.py 292 new_path = join(top, name)
293 if followlinks or not islink(new_path):
294 for x in walk(new_path, topdown, onerror, followlinks):
mailbox.py 338 new_path = os.path.join(self._path, subdir, key + suffix)
339 os.rename(os.path.join(self._path, temp_subpath), new_path)
341 os.utime(new_path, (os.path.getatime(new_path),
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
os.py 292 new_path = join(top, name)
293 if followlinks or not islink(new_path):
294 for x in walk(new_path, topdown, onerror, followlinks):
mailbox.py 338 new_path = os.path.join(self._path, subdir, key + suffix)
339 os.rename(os.path.join(self._path, temp_subpath), new_path)
341 os.utime(new_path, (os.path.getatime(new_path),
    [all...]
  /frameworks/base/libs/androidfw/
AssetManager2.cpp 192 const std::string new_path = "assets/" + filename; local
193 return OpenNonAsset(new_path, mode);
198 const std::string new_path = "assets/" + filename; local
199 return OpenNonAsset(new_path, cookie, mode);
    [all...]
  /bootable/recovery/
recovery.cpp 721 std::string new_path = path + "/" + item; local
722 if (new_path.back() == '/') {
724 new_path.pop_back();
725 std::string result = browse_directory(new_path, device);
729 return new_path;
    [all...]
  /frameworks/native/cmds/dumpstate/
dumpstate.cpp 1779 std::string new_path = ds.GetPath(".zip"); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c 787 char new_path[MAX_PATH+1]; local
793 result = GetCurrentDirectoryA(MAX_PATH+1, new_path);
799 if (strncmp(new_path, "\\\\", 2) == 0 ||
800 strncmp(new_path, "//", 2) == 0)
803 env[1] = new_path[0];
804 return SetEnvironmentVariableA(env, new_path);
812 wchar_t _new_path[MAX_PATH+1], *new_path = _new_path; local
818 result = GetCurrentDirectoryW(MAX_PATH+1, new_path);
822 new_path = malloc(result * sizeof(wchar_t));
823 if (!new_path) {
    [all...]
  /external/libcxx/utils/libcxx/test/
config.py     [all...]
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_filesystem_test.py     [all...]
  /development/vndk/tools/definition-tool/
vndk_definition_tool.py 899 def rename_lib(self, lib, new_partition, new_path):
901 lib.path = new_path
    [all...]

Completed in 1650 milliseconds

12 3