HomeSort by relevance Sort by last modified time
    Searched refs:changes (Results 101 - 125 of 559) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/third_party/libevent/
devpoll.c 68 struct pollfd *changes; member in struct:devpollop
97 if (pwrite(devpollop->dpfd, devpollop->changes,
118 pfd = &devpollop->changes[devpollop->nchanges++];
171 devpollop->changes = calloc(nfiles, sizeof(struct pollfd));
172 if (devpollop->changes == NULL) {
410 if (devpollop->changes)
411 free(devpollop->changes);
  /external/chromium_org/third_party/libevent/
devpoll.c 68 struct pollfd *changes; member in struct:devpollop
97 if (pwrite(devpollop->dpfd, devpollop->changes,
118 pfd = &devpollop->changes[devpollop->nchanges++];
171 devpollop->changes = calloc(nfiles, sizeof(struct pollfd));
172 if (devpollop->changes == NULL) {
410 if (devpollop->changes)
411 free(devpollop->changes);
  /external/chromium_org/chrome/browser/managed_mode/
managed_user_registration_utility_unittest.cc 50 const SyncChangeList& changes() const { return change_list_; } function in class:__anon7659::MockChangeProcessor
181 const SyncChangeList& changes = change_processor()->changes(); local
182 for (SyncChangeList::const_iterator it = changes.begin(); it != changes.end();
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_system_unittest.cc 69 // Get the changes for URL and verify.
70 FileChangeList changes; local
71 change_tracker()->GetChangesForURL(url, &changes);
72 ASSERT_EQ(1U, changes.size());
74 " actual:" << changes.DebugString());
75 EXPECT_EQ(expected_change, changes.front());
214 // The changes will be offset.
local_file_sync_service.h 48 // This is called when there're one or more local changes available.
94 // changes.
152 void SetOriginChangeCount(const GURL& origin, int64 changes);
157 // Per-origin changes (cached info, could be stale).
188 const FileChangeList& changes,
199 // Origins which have pending changes but have not been initialized yet.
local_file_sync_service_unittest.cc 53 const FileChangeList& changes) {
58 ASSERT_TRUE(changes.empty());
91 ACTION_P2(MockStatusCallbackAndRecordChange, status, changes) {
94 changes->push_back(arg0);
460 std::vector<FileChange> changes; local
463 .WillOnce(MockStatusCallbackAndRecordChange(SYNC_STATUS_OK, &changes))
464 .WillOnce(MockStatusCallbackAndRecordChange(SYNC_STATUS_OK, &changes));
472 EXPECT_EQ(2U, changes.size());
474 changes[0]); local
477 changes[1]) local
545 std::vector<FileChange> changes; local
    [all...]
  /external/chromium_org/chrome/common/extensions/
PRESUBMIT.py 5 """Presubmit script for changes affecting extensions.
118 changes = ''
122 changes = ('%s\nLine %d:\n-%s\n+%s\n' %
123 (changes, i + 1, line1, line2))
124 if changes:
128 'convert them manually.\n\nSuggested changes are: %s' %
129 (name, changes)))
  /external/chromium_org/content/browser/dom_storage/
dom_storage_database.cc 74 const DOMStorageValuesMap& changes) {
75 if (!LazyOpen(!changes.empty())) {
76 // If we're being asked to commit changes that will result in an
78 return clear_all_first && changes.empty() &&
95 DOMStorageValuesMap::const_iterator it = changes.begin();
96 for(; it != changes.end(); ++it) {
dom_storage_database.h 39 // |changes| will be examined - keys mapped to a null NullableString16
41 bool CommitChanges(bool clear_all_first, const DOMStorageValuesMap& changes);
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncFragment.java 82 // We don't need our own sync changes to trigger refreshes.
160 HashMap<Long, CalendarRow> changes = ((SelectCalendarsSyncAdapter) listAdapter) local
162 if (changes != null && changes.size() > 0) {
163 for (CalendarRow row : changes.values()) {
178 changes.clear();
  /external/libvpx/libvpx/tools/
ftfy.sh 14 -n, --dry-run Shows a diff of the changes to be made.
15 --amend Squashes the changes into the commit at HEAD
17 --commit Creates a new commit containing only the whitespace changes
112 log "Working tree is dirty, commit your changes first"
154 log "Formatting changes applied, verify and commit."
  /external/chromium/chrome/browser/sync/glue/
theme_change_processor.cc 61 const sync_api::SyncManager::ChangeRecord* changes,
68 // generates multiple changes. When we fix syncapi to not do that,
78 LOG(WARNING) << change_count << " theme changes detected; "
82 changes[change_count - 1];
  /external/chromium/chrome/browser/sync/
js_sync_manager_observer.cc 28 const sync_api::SyncManager::ChangeRecord* changes,
36 change_values->Append(changes[i].ToValue(trans));
  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_sync_unittest.cc 87 // SyncChangeProcessor which just records the changes made, accessed after
88 // being converted to the more useful SettingSyncData via changes().
113 const SettingSyncDataList& changes() { return changes_; } function in class:extensions::__anon7339::MockSyncChangeProcessor
135 ADD_FAILURE() << "No matching changes for " << extension_id << "/" <<
143 ADD_FAILURE() << matching_changes.size() << " matching changes for " <<
170 // The recipient of all sync changes.
300 EXPECT_EQ(0u, sync_processor_->changes().size());
337 // Already in sync, so no changes.
338 EXPECT_EQ(0u, sync_processor_->changes().size());
343 EXPECT_EQ(0u, sync_processor_->changes().size())
    [all...]
  /external/chromium_org/chrome/browser/webdata/
autocomplete_syncable_service.h 77 const autofill::AutofillChangeList& changes) OVERRIDE;
80 // and/or processing sync changes.
98 // Helper to persist any changes that occured during model association to
144 // Syncs |changes| to the cloud.
145 void ActOnChanges(const autofill::AutofillChangeList& changes);
  /external/chromium_org/sync/internal_api/public/
sync_manager.h 83 // Notify the delegate that changes have been applied to the sync model.
86 // called. |changes| is an array of size |change_count|, and contains the
87 // ID of each individual item that was changed. |changes| exists only for
89 // the same time, this method is invoked once per data type and |changes|
95 // The SyncManager constructs |changes| in the following guaranteed order:
100 // 4. Items with parents & predecessors in |changes|.
101 // 5. Repeat #4 until all items are in |changes|.
112 const ImmutableChangeRecordList& changes) = 0;
119 // split-transactions changes. For example, if a model processor wants to
120 // perform blocking I/O due to a change, it should calculate the changes
    [all...]
  /external/chromium_org/third_party/icu/source/data/translit/
trnsfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or re
  /external/icu4c/data/translit/
trnsfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or re
  /frameworks/base/services/java/com/android/server/
AttributeCache.java 86 int changes = mConfiguration.updateFrom(config); local
87 if ((changes & ~(ActivityInfo.CONFIG_FONT_SCALE |
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutRefactoringTest.java 133 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
134 checkEdits(basename, changes);
  /external/chromium_org/chrome/browser/sync/glue/
generic_change_processor.h 33 // local service into transactions and receiving changes from the sync model,
51 // Build and store a list of all changes into |syncer_changes_|.
55 const syncer::ImmutableChangeRecordList& changes) OVERRIDE;
85 // The SyncableService this change processor will forward changes on to.
88 // A SyncMergeResult used to track the changes made during association. The
90 // the pointer is valid though, we increment it with any changes received
94 // The current list of changes received from the syncer. We buffer because
102 // listening to changes (the local_service_ will be interacting with us
synced_device_tracker.h 35 const syncer::ImmutableChangeRecordList& changes) OVERRIDE;
typed_url_change_processor.h 42 // This class is responsible for taking changes from the history backend and
64 const syncer::ImmutableChangeRecordList& changes) OVERRIDE;
66 // Commit changes here, after we've released the transaction lock to avoid
70 // Stop processing changes and wait for being destroyed.
86 // notification. We use this to throttle the number of sync changes we send
103 // The model we are processing changes from. This is owned by the
113 // The set of pending changes that will be written out on the next
  /external/chromium_org/chrome/browser/value_store/
leveldb_value_store.h 64 // Adds a setting to a WriteBatch, and logs the change in |changes|. For use
71 ValueStoreChangeList* changes);
73 // Commits the changes in |batch| to the database, returning the error message
  /external/chromium_org/third_party/mesa/src/docs/
MESA_resize_buffers.spec 39 changes.
42 when a window size changes but would still like Mesa to adjust to

Completed in 361 milliseconds

1 2 3 45 6 7 8 91011>>