HomeSort by relevance Sort by last modified time
    Searched refs:new_version (Results 1 - 25 of 39) sorted by null

1 2

  /external/zlib/
update_zlib.sh 12 new_version=$(wget -O - --no-verbose -q http://zlib.net/ | \
15 tgz_file="zlib-$new_version.tar.gz"
17 echo "Upgrading zlib to version $new_version..."
30 mv zlib-$new_version src
  /external/chromium_org/chrome/installer/setup/
install_worker.h 35 const base::Version& new_version,
44 const base::Version& new_version,
87 const base::Version& new_version,
110 const base::Version& new_version,
136 // If |new_version| is empty, the registrations will point to
140 const base::Version& new_version,
151 const base::Version& new_version,
171 // |installer_state|). |new_version| is the version of the product(s)
175 const base::Version& new_version,
181 // in |installer_state|). |new_version| is the version of the product(s
    [all...]
install_worker.cc 87 const Version& new_version,
115 new_version.GetString()));
129 const Version& new_version,
133 installer_state.GetInstallerDirectory(new_version));
202 const Version& new_version,
236 const Version& new_version,
240 AddCommandWithParameterWorkItems(installer_state, machine_state, new_version,
250 const Version& new_version,
254 AddCommandWithParameterWorkItems(installer_state, machine_state, new_version,
312 // --verbose-logging. |setup_path| and |new_version| are optional only whe
    [all...]
install.cc 165 // new_version: new Chrome version that needs to be installed
182 const Version& new_version,
198 new_version,
210 new_version.Equals(*current_version->get()) ?
224 VLOG(1) << "First install of version " << new_version.GetString();
228 if (new_version.Equals(**current_version)) {
229 VLOG(1) << "Install repaired of version " << new_version.GetString();
233 if (new_version.CompareTo(**current_version) > 0) {
235 VLOG(1) << "Version updated to " << new_version.GetString()
239 VLOG(1) << "Version updated to " << new_version.GetString()
    [all...]
install.h 102 // new_version: new Chrome version that needs to be installed
117 const Version& new_version);
  /external/chromium_org/content/browser/indexed_db/
indexed_db_database_callbacks.cc 34 int64 new_version) {
39 ipc_thread_id_, ipc_database_callbacks_id_, old_version, new_version));
indexed_db_database_callbacks.h 24 virtual void OnVersionChange(int64 old_version, int64 new_version);
mock_indexed_db_database_callbacks.h 17 virtual void OnVersionChange(int64 old_version, int64 new_version) OVERRIDE {}
  /external/chromium_org/chrome/installer/test/
alternate_version_generator.h 28 // |new_version|, when non-NULL, are given the original and new version numbers
34 std::wstring* new_version);
alternate_version_generator.cc 310 ChromeVersion new_version; member in struct:__anon10280::VisitResourceContext
333 // Replace all occurrences of current_version with new_version
342 ctx.new_version.high(), ctx.new_version.low()
407 ctx->new_version.set_value(ctx->current_version.value() + incrementer);
408 ctx->new_version_str = ctx->new_version.ToString();
417 // |new_version|, when non-NULL, are given the original and new version numbers
422 std::wstring* new_version) {
456 if (new_version != NULL)
457 new_version->assign(ctx.new_version_str)
    [all...]
alternate_version_generator_main.cc 159 std::wstring new_version; local
162 &original_version, &new_version)) {
164 new_version.c_str(), original_version.c_str());
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
diff.rb 18 def initialize(old_version, new_version)
19 @old_version, @new_version = old_version, new_version
26 @new_words = explode(@new_version)
  /external/chromium_org/chrome/browser/sync/glue/
bookmark_change_processor.cc 116 int64 new_version = local
119 syncer::WriteTransaction trans(FROM_HERE, share_handle(), &new_version);
135 UpdateTransactionVersion(new_version, bookmark_model_,
140 int64 new_version = syncer::syncable::kInvalidTransactionVersion; local
142 syncer::WriteTransaction trans(FROM_HERE, share_handle(), &new_version);
157 UpdateTransactionVersion(new_version, bookmark_model_,
214 int64 new_version = syncer::syncable::kInvalidTransactionVersion; local
218 syncer::WriteTransaction trans(FROM_HERE, share_handle(), &new_version);
239 new_version,
351 int64 new_version = syncer::syncable::kInvalidTransactionVersion local
384 int64 new_version = syncer::syncable::kInvalidTransactionVersion; local
    [all...]
bookmark_change_processor.h 143 // Update transaction version of |model| and |nodes| to |new_version| if
146 int64 new_version,
  /external/chromium_org/chromeos/dbus/
update_engine_client.h 52 std::string new_version; member in struct:chromeos::UpdateEngineClient::Status
update_engine_client.cc 303 reader.PopString(&status.new_version) &&
355 std::string new_version; local
360 reader.PopString(&new_version) &&
370 status.new_version = new_version;
  /external/chromium_org/sync/engine/
commit_util.cc 220 int64 new_version = entry_response.version(); local
228 new_version = 0;
230 bad_commit_version = 0 == new_version;
232 bad_commit_version = old_version > new_version;
237 << " new_version:" << entry_response.version();
244 local_entry->PutBaseVersion(new_version);
246 << " to: " << new_version;
247 local_entry->PutServerVersion(new_version);
345 << " new_version:" << entry_response.version();
  /external/chromium_org/chrome/installer/util/
installer_state.h 165 // * new_version >= CUV.
169 const base::Version& new_version) const;
185 // than |new_version| and not equal to |existing_version|. |existing_version|
187 void RemoveOldVersionDirectories(const base::Version& new_version,
installer_state_unittest.cc 267 Version new_version(kNewVersion);
269 ASSERT_TRUE(new_version.IsValid());
273 installer_state.GetInstallerDirectory(new_version));
277 base::UTF8ToWide(new_version.GetString())));
309 installer_state.RemoveOldVersionDirectories(new_version,
320 installer_state.RemoveOldVersionDirectories(new_version,
509 Version new_version(kNewVersion);
515 ASSERT_TRUE(new_version.IsValid());
574 installer_state.RemoveOldVersionDirectories(new_version,
installer_state.cc 558 const Version& new_version) const {
560 DCHECK(new_version.IsValid());
564 new_version.CompareTo(critical_update_version_) >= 0) {
671 const Version& new_version,
678 existing_version_strings.insert(new_version.GetString());
  /bionic/libc/tools/zoneinfo/
update-tzdata.py 156 new_version = re.search('(tzdata.+)\\.tar\\.gz', data_filename).group(1)
171 print 'Calling ZoneCompactor to update bionic to %s...' % new_version
176 bionic_libc_zoneinfo_dir, new_version])
  /external/chromium_org/chrome/common/extensions/docs/server2/
test_file_system.py 73 def SetVersion(self, path, new_version):
79 self._path_stats[path] = new_version
86 new_version)
  /external/chromium_org/chrome/browser/chromeos/login/screens/
update_screen.cc 140 VLOG(1) << "Noncritical update available: " << status.new_version;
143 VLOG(1) << "Critical update available: " << status.new_version;
163 VLOG(1) << "Non-critical update available: " << status.new_version;
166 VLOG(1) << "Critical update available: " << status.new_version;
  /external/chromium_org/chrome/browser/extensions/updater/
local_extension_cache.cc 116 Version new_version(version);
118 if (new_version.CompareTo(prev_version) <= 0) {
422 Version new_version(info.version);
424 if (new_version.CompareTo(prev_version) <= 0) {
  /external/elfutils/0.153/src/
ldscript.y 62 static struct version *new_version (struct id_list *local,
431 { $$ = new_version (NULL, $2); }
433 { $$ = new_version ($2, NULL); }
654 new_version (struct id_list *local, struct id_list *global)

Completed in 468 milliseconds

1 2