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

1 2 3

  /frameworks/base/services/core/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;
  /cts/suite/cts/deviceTests/opengl/jni/reference/
GLReference.cpp 41 double updates[numFrames]; local
49 updates[i] = t1 - t0;
53 env->SetDoubleArrayRegion(updateTimes, 0, numFrames, updates);
  /external/chromium_org/components/leveldb_proto/
leveldb_database.cc 59 leveldb::WriteBatch updates; local
63 updates.Put(leveldb::Slice(it->first), leveldb::Slice(it->second));
67 updates.Delete(leveldb::Slice(*it));
72 leveldb::Status status = db_->Write(options, &updates);
  /packages/apps/Launcher3/src/com/android/launcher3/compat/
PackageInstallerCompatVL.java 55 // On start, send updates for all active sessions
109 if (DEBUG) Log.d(TAG, "updates resumed");
126 ArrayList<PackageInstallInfo> updates = new ArrayList<PackageInstallInfo>(); local
128 updates.add(newInfo);
133 updates.add(new PackageInstallInfo(session.getAppPackageName(),
139 if (!updates.isEmpty()) {
140 app.setPackageState(updates);
164 // Replay all updates with a one time update for this installed package. No
165 // need to store this record for future updates, as the app list will get
PackageInstallerCompatV16.java 58 if (DEBUG) Log.d(TAG, "updates paused");
81 if (DEBUG) Log.d(TAG, "updates resumed");
89 ArrayList<PackageInstallInfo> updates = new ArrayList<PackageInstallInfo>(); local
93 updates.add(infoFromJson(packageName, json));
96 if (!updates.isEmpty()) {
97 sendUpdate(app, updates);
135 private void sendUpdate(LauncherAppState app, ArrayList<PackageInstallInfo> updates) {
140 app.setPackageState(updates);
  /packages/apps/Email/src/com/android/email/service/
Pop3Service.java 274 Cursor updates = resolver.query( local
281 while (updates.moveToNext()) {
282 long id = updates.getLong(Message.ID_COLUMNS_ID_COLUMN);
298 updates.close();
ImapService.java 947 Cursor updates = resolver.query(EmailContent.Message.UPDATED_CONTENT_URI, local
    [all...]
  /external/chromium_org/chrome/browser/component_updater/
update_response.cc 196 // Get the list of urls for full and optionally, for diff updates.
261 std::vector<xmlNode*> updates = GetChildren(app, "updatecheck"); local
262 if (updates.empty()) {
267 return ParseUpdateCheckTag(updates[0], result, error);
  /external/chromium_org/chrome/browser/extensions/api/management/
management_browsertest.cc 173 // Used for testing notifications sent during extension updates.
192 const std::set<std::string>& updates() { return updates_; } function in class:NotificationListener
297 ASSERT_TRUE(ContainsKey(notification_listener.updates(),
313 ASSERT_TRUE(ContainsKey(notification_listener.updates(),
393 ASSERT_TRUE(ContainsKey(notification_listener.updates(),
  /external/chromium_org/chrome/common/extensions/
update_manifest.cc 139 std::vector<xmlNode*> updates = GetChildren(app_node, xml_namespace, local
141 if (updates.size() > 1) {
145 if (updates.empty()) {
149 xmlNode *updatecheck = updates[0];
  /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/libs/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);
243 SpriteUpdate& update = updates.editItemAt(i);
329 const SpriteUpdate& update = updates.itemAt(i);
344 updates.clear();
  /external/chromium_org/chrome/browser/extensions/updater/
extension_downloader.cc 128 // This parses and updates a URL query such that the value of the |authuser|
210 // If the extension updates itself from the gallery, ignore any update URL
498 // We want to try parsing the manifest, and if it indicates updates are
499 // available, we want to fire off requests to fetch those updates.
550 std::vector<int> updates; local
551 DetermineUpdates(fetch_data, *results, &updates);
552 for (size_t i = 0; i < updates.size(); i++) {
553 const UpdateManifest::Result* update = &(results->list.at(updates[i]));
  /external/chromium_org/sync/test/engine/
mock_connection_manager.cc 60 EXPECT_TRUE(update_queue_.empty()) << "Unfetched updates.";
508 sync_pb::GetUpdatesResponse* updates = &update_queue_.front(); local
509 for (int i = 0; i < updates->entries_size(); ++i) {
510 if (!updates->entries(i).deleted()) {
511 ModelType entry_type = GetModelType(updates->entries(i));
514 << "Syncer did not request updates being provided by the test.";
518 response->mutable_get_updates()->CopyFrom(*updates);
657 sync_pb::GetUpdatesResponse* updates = GetUpdateResponse(); local
658 EXPECT_GT(updates->entries_size(), 0);
659 return updates->mutable_entries()->Mutable(updates->entries_size() - 1)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/ns/
ns_core.h 72 int updates; member in struct:NSinst_t_
  /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;
  /external/chromium_org/sync/engine/
directory_update_handler_unittest.cc 35 // A test harness for tests that focus on processing updates.
37 // Update processing is what occurs when we first download updates. It converts
39 // Any invalid or redundant updates will be dropped at this point.
148 // Add it to the applicable updates list.
184 // Add it to the applicable updates list.
217 // Add it to the applicable updates list.
291 // Add to the applicable updates list.
292 SyncEntityList updates; local
293 updates.push_back(type_root.get());
294 updates.push_back(e1.get())
348 SyncEntityList updates; local
    [all...]

Completed in 572 milliseconds

1 2 3