HomeSort by relevance Sort by last modified time
    Searched defs:new_path (Results 1 - 11 of 11) sorted by null

  /external/chromium/net/base/
net_util_posix.cc 46 std::string new_path; local
48 new_path = old_path;
49 ReplaceSubstringsAfterOffset(&new_path, 0, "//", "/");
50 old_path.swap(new_path);
51 } while (new_path != old_path);
  /external/chromium/net/tools/dump_cache/
cache_dumper.cc 75 std::string new_path = local
77 entry_path_ = FilePath(ASCIIToWide(new_path));
  /external/linux-tools-perf/util/
exec_cmd.c 85 struct strbuf new_path = STRBUF_INIT; local
87 add_path(&new_path, perf_exec_path());
88 add_path(&new_path, argv0_path);
91 strbuf_addstr(&new_path, old_path);
93 strbuf_addstr(&new_path, "/usr/local/bin:/usr/bin:/bin");
95 setenv("PATH", new_path.buf, 1);
97 strbuf_release(&new_path);
  /external/chromium/chrome/browser/download/
download_file_manager.cc 350 FilePath new_path = full_path; local
359 uniquifier = download_util::GetUniquePathNumber(new_path);
361 download_util::AppendNumberToPath(&new_path, uniquifier);
366 if (!download->Rename(new_path)) {
383 new_path, uniquifier));
  /external/chromium/chrome/browser/extensions/
extension_management_browsertest.cc 96 FilePath new_path = service->extensions()->back()->path(); local
100 EXPECT_NE(old_path.value(), new_path.value());
  /external/chromium/net/url_request/
url_request_file_job.cc 234 std::string new_path = request_->url().path(); local
235 new_path.push_back('/');
237 replacements.SetPathStr(new_path);
250 FilePath new_path = file_path_;
252 resolved = file_util::ResolveShortcut(&new_path);
258 *location = FilePathToFileURL(new_path);
  /external/ipsec-tools/src/racoon/
remoteconf.c 640 vchar_t *new_path; local
652 if ((new_path = vmalloc(len)) == NULL) {
658 new_path->v[0] = '\0';
659 (void)strlcat(new_path->v, script_dir, len);
660 (void)strlcat(new_path->v, "/", len);
661 (void)strlcat(new_path->v, path->v, len);
664 path = new_path;
  /external/linux-tools-perf/
builtin-help.c 322 struct strbuf new_path = STRBUF_INIT; local
329 strbuf_addstr(&new_path, system_path(PERF_MAN_PATH));
330 strbuf_addch(&new_path, ':');
332 strbuf_addstr(&new_path, old_path);
334 setenv("MANPATH", new_path.buf, 1);
336 strbuf_release(&new_path);
  /bootable/recovery/
recovery.cpp 574 char new_path[PATH_MAX]; local
575 strlcpy(new_path, path, PATH_MAX);
576 strlcat(new_path, "/", PATH_MAX);
577 strlcat(new_path, item, PATH_MAX);
578 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
579 result = update_directory(new_path, unmount_when_done, wipe_cache, device);
584 char new_path[PATH_MAX]; local
585 strlcpy(new_path, path, PATH_MAX);
586 strlcat(new_path, "/", PATH_MAX)
    [all...]
  /external/chromium/chrome/common/extensions/
extension.cc 658 FilePath new_path = Extension::MaybeNormalizePath(path); local
660 std::string(reinterpret_cast<const char*>(new_path.value().data()),
661 new_path.value().size() * sizeof(FilePath::CharType));
    [all...]
  /external/qemu/block/
vvfat.c 2386 char* new_path = qemu_malloc(l + diff + 1); local
    [all...]

Completed in 2549 milliseconds