HomeSort by relevance Sort by last modified time
    Searched defs:updates (Results 1 - 25 of 40) sorted by null

1 2

  /frameworks/base/services/java/com/android/server/updates/
CarrierProvisioningUrlsInstallReceiver.java 17 package com.android.server.updates;
CertPinInstallReceiver.java 17 package com.android.server.updates;
IntentFirewallInstallReceiver.java 17 package com.android.server.updates;
SmsShortCodesInstallReceiver.java 17 package com.android.server.updates;
TZInfoInstallReceiver.java 17 package com.android.server.updates;
SELinuxPolicyInstallReceiver.java 17 package com.android.server.updates;
ConfigUpdateInstallReceiver.java 17 package com.android.server.updates;
  /external/chromium/chrome/browser/sync/engine/
store_timestamps_command.cc 27 const GetUpdatesResponse& updates = local
36 for (int i = 0; i < updates.new_progress_marker_size(); ++i) {
39 updates.new_progress_marker(i).data_type_id());
45 dir->SetDownloadProgress(model, updates.new_progress_marker(i));
48 updates.changes_remaining() == 0);
51 << "Get Updates got new progress marker for types: "
55 if (updates.has_changes_remaining()) {
56 int64 changes_left = updates.changes_remaining();
verify_updates_command_unittest.cc 60 void AddUpdate(GetUpdatesResponse* updates,
63 sync_pb::SyncEntity* e = updates->add_entries();
83 GetUpdatesResponse* updates = session()->status_controller()-> local
85 AddUpdate(updates, "b1", root, syncable::BOOKMARKS);
86 AddUpdate(updates, "b2", root, syncable::BOOKMARKS);
87 AddUpdate(updates, "p1", root, syncable::PREFERENCES);
88 AddUpdate(updates, "a1", root, syncable::AUTOFILL);
process_updates_command.cc 29 const GetUpdatesResponse& updates = local
31 const int update_count = updates.entries_size();
33 // Don't bother processing updates if there were none.
verify_updates_command.cc 40 const GetUpdatesResponse& updates = status->updates_response().get_updates(); local
41 int update_count = updates.entries().size();
46 *reinterpret_cast<const SyncEntity *>(&(updates.entries(i)));
88 LOG(ERROR) << "Illegal negative id in received updates";
115 // If we have an existing entry, we check here for updates that break
  /external/chromium/chrome/browser/extensions/
extension_management_browsertest.cc 57 // Helper method that installs a low permission extension then updates
194 // Used for testing notifications sent during extension updates.
213 const std::set<std::string>& updates() { return updates_; } function in class:NotificationListener
300 ASSERT_TRUE(ContainsKey(notification_listener.updates(),
315 ASSERT_TRUE(ContainsKey(notification_listener.updates(),
extension_bookmarks_module.cc 596 DictionaryValue* updates; local
597 EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(1, &updates));
601 const bool has_title = updates->GetString(keys::kTitleKey, &title);
605 updates->GetString(keys::kUrlKey, &url_string);
extension_updater.cc 227 // If the extension updates itself from the gallery, ignore any update URL
710 // We want to try parsing the manifest, and if it indicates updates are
711 // available, we want to fire off requests to fetch those updates.
741 // below if they actually have updates we need to fetch and install).
750 std::vector<int> updates = DetermineUpdates(fetch_data, *results); local
751 for (size_t i = 0; i < updates.size(); i++) {
752 const UpdateManifest::Result* update = &(results->list.at(updates[i]));
    [all...]
extension_updater_unittest.cc 563 UpdateManifest::Results updates; local
565 updates);
568 // Create two updates - expect that DetermineUpdates will return the first
577 "1.1", "http://localhost/e1_1.1.crx", &updates);
582 tmp[1]->VersionString(), "http://localhost/e2_2.0.crx", &updates);
583 updateable = updater.DetermineUpdates(fetch_data, updates);
603 UpdateManifest::Results updates; local
611 "1.1", "http://localhost/e1_1.1.crx", &updates);
614 updater.DetermineUpdates(fetch_data, updates);
    [all...]
  /external/chromium/chrome/common/extensions/
update_manifest.cc 137 std::vector<xmlNode*> updates = GetChildren(app_node, xml_namespace, local
139 if (updates.size() > 1) {
143 if (updates.empty()) {
147 xmlNode *updatecheck = updates[0];
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_backing_store.h 70 Eina_Tiler *updates; /**< updated/dirty areas */ member in struct:_Ewk_Tile
ewk_tiled_matrix.c 46 Eina_List *updates; member in struct:_Ewk_Tile_Matrix
76 if (t->updates || t->stats.full_update)
77 tm->updates = eina_list_remove(tm->updates, t);
112 if (t->updates || t->stats.full_update)
113 tm->updates = eina_list_remove(tm->updates, t);
460 tm->updates = eina_list_append(tm->updates, t);
525 if (!t->updates && !t->stats.full_update
    [all...]
  /external/chromium/chrome/browser/sync/sessions/
status_controller.cc 160 // Returns the number of updates received from the sync server.
162 const ClientToServerResponse& updates = shared_.updates_response; local
163 if (updates.has_get_updates()) {
164 return updates.get_updates().entries().size();
  /external/qemu/distrib/sdl-1.2.15/test/
testalpha.c 249 SDL_Rect updates[2]; local
254 updates[0] = position;
255 SDL_BlitSurface(backing, NULL, screen, &updates[0]);
257 updates[0].x = 0; updates[0].y = 0;
258 updates[0].w = 0; updates[0].h = 0;
295 updates[1] = position;
296 SDL_BlitSurface(screen, &updates[1], backing, NULL);
299 updates[1] = position
308 SDL_Rect updates[2]; local
    [all...]
testpalette.c 235 SDL_Rect updates[NBOATS]; local
266 updates[i].x = MIN(old_x, boatx[i]);
267 updates[i].y = boaty[i];
268 updates[i].w = boat[0]->w + SPEED;
269 updates[i].h = boat[0]->h;
271 if(updates[i].x < 0) {
272 updates[i].w += updates[i].x;
273 updates[i].x = 0;
275 if(updates[i].x + updates[i].w > SCRW
    [all...]
  /frameworks/base/services/input/
SpriteController.cpp 110 // Collect information about sprite updates.
115 Vector<SpriteUpdate> updates; local
124 updates.push(SpriteUpdate(sprite, sprite->getStateLocked()));
133 SpriteUpdate& update = updates.editItemAt(i);
151 SpriteUpdate& update = updates.editItemAt(i);
192 SpriteUpdate& update = updates.editItemAt(i);
244 SpriteUpdate& update = updates.editItemAt(i);
330 const SpriteUpdate& update = updates.itemAt(i);
345 updates.clear();
  /frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
ProfiledWebView.java 171 int updates = (updatesString == null) ? -1 : Integer.parseInt(updatesString); local
180 return updates * 1000.0 / animationTime;
  /external/webrtc/src/modules/audio_processing/ns/
ns_core.h 72 int updates; member in struct:NSinst_t_
  /frameworks/base/services/tests/servicestests/src/com/android/server/updates/
CertPinInstallReceiverTest.java 17 package com.android.server.updates;

Completed in 1503 milliseconds

1 2