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

1 2

  /external/netperf/
netsh.h 90 #ifdef DIRTY
95 #endif /* DIRTY */
netsh.c 196 #ifdef DIRTY
201 #endif /* DIRTY */
431 #ifdef DIRTY
432 /* dirty and clean cache stuff */
437 #endif /* DIRTY */
607 /* local dirty and clean counts */
608 #ifdef DIRTY
617 printf("I don't know how to get dirty.\n");
618 #endif /* DIRTY */
621 /* remote dirty and clean counts *
    [all...]
nettest_sctp.c 5 #define DIRTY
385 #ifdef DIRTY
403 #ifdef DIRTY
405 #endif /* DIRTY */
562 #ifdef DIRTY
565 #endif /* DIRTY */
686 #ifdef DIRTY
687 /* initialize the random number generator for putting dirty stuff */
702 #ifdef DIRTY
703 /* we want to dirty some number of consecutive integers in the buffer *
    [all...]
nettest_unix.c 3 #define DIRTY
250 #ifdef DIRTY
265 #ifdef DIRTY
267 #endif /* DIRTY */
391 #ifdef DIRTY
394 #endif /* DIRTY */
473 #ifdef DIRTY
474 /* initialize the random number generator for putting dirty stuff */
481 #ifdef DIRTY
482 /* we want to dirty some number of consecutive integers in the buffer *
    [all...]
nettest_dlpi.c 170 #ifdef DIRTY
172 #endif /* DIRTY */
360 #ifdef DIRTY
363 #endif /* DIRTY */
441 #ifdef DIRTY
442 /* initialize the random number generator for putting dirty stuff */
445 #endif /* DIRTY */
449 #ifdef DIRTY
450 /* we want to dirty some number of consecutive integers in the buffer */
452 /* them cleanly into the cache. The clean ones will follow any dirty */
    [all...]
nettest_sdp.c 5 #define DIRTY
389 #ifdef DIRTY
392 #endif /* DIRTY */
514 #ifdef DIRTY
519 #endif /* DIRTY */
    [all...]
nettest_xti.c 10 #define DIRTY
624 #ifdef DIRTY
625 fprintf(where," : dirty data");
626 #endif /* DIRTY */
777 #ifdef DIRTY
780 #endif /* DIRTY */
900 #ifdef DIRTY
901 /* we want to dirty some number of consecutive integers in the buffer */
903 /* them cleanly into the cache. The clean ones will follow any dirty */
911 #endif /* DIRTY */
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/
ContactsSyncAdapterService.java 113 // See if we've got dirty contacts or dirty groups containing our contacts
114 boolean changed = hasDirtyRows(cr, uri, RawContacts.DIRTY);
121 changed = hasDirtyRows(cr, uri, Groups.DIRTY);
CalendarSyncAdapterService.java 47 Events.DIRTY + "=1 AND " + Events.ACCOUNT_NAME + "=?";
  /libcore/luni/src/main/java/libcore/io/
DiskLruCache.java 96 private static final String DIRTY = "DIRTY";
109 * DIRTY 335c4c6028171cfddfbaae1a9c313c52
112 * DIRTY 1ab96a171faeeee38496d8b330771a7a
124 * o DIRTY lines track that an entry is actively being created or updated.
125 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
126 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
272 } else if (parts[0].equals(DIRTY) && parts.length == 2) {
283 * cache. Dirty entries are assumed to be inconsistent and will be deleted.
326 writer.write(DIRTY + ' ' + entry.key + '\n')
453 File dirty = entry.getDirtyFile(i); local
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDebug.java 109 // Compute number of dirty events in the calendar
111 + " AND " + CalendarContract.Events.DIRTY + "=1";
CalendarProvider2.java 171 " SET " + Events.DIRTY + "=1" +
335 // _id, _sync_account, _sync_account_type, dirty, _sync_mark, calendar_id
    [all...]
CalendarDatabaseHelper.java 460 CalendarContract.Events.DIRTY + " INTEGER," +
528 "dirty INTEGER," +
584 "dirty INTEGER," +
620 CalendarContract.Calendars.DIRTY + " INTEGER," +
663 "dirty INTEGER," +
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
LegacyContactImporterTest.java 152 Groups.DIRTY,
188 RawContacts.DIRTY,
GroupsTest.java 176 values.put(Groups.DIRTY, 0);
  /frameworks/base/core/java/android/provider/
CalendarContract.java 133 * to true, the modified row is not marked as "dirty" (needs to be synced)
267 public static final String DIRTY = "dirty";
281 * transitions from non-dirty to dirty. The duplicated event will not be
284 * originating event has its dirty flag cleared by the sync adapter.
445 DatabaseUtils.cursorLongToContentValuesIfPresent(cursor, cv, DIRTY);
565 * <li>{@link #DIRTY}</li>
630 DIRTY,
    [all...]
BrowserContract.java 45 * the dirty flag is not automatically set and the "syncToNetwork" parameter
130 public static final String DIRTY = "dirty";
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyContactImporter.java 260 Groups.DIRTY + "," +
271 int DIRTY = 5;
299 insert.bindLong(GroupsInsert.DIRTY, c.getLong(GroupsQuery._SYNC_DIRTY));
395 RawContacts.DIRTY + "," +
411 int DIRTY = 4;
541 bindString(insert, RawContactsInsert.DIRTY,
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarSyncTestingBase.java 59 EVENT_COLUMNS_TO_SKIP.add(CalendarContract.Events.DIRTY);
65 CALENDARS_COLUMNS_TO_SKIP.add(CalendarContract.Calendars.DIRTY);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 168 * "dirty", and need syncing to the SampleSync server.
172 * @return a list of Users that are considered "dirty"
175 Log.i(TAG, "*** Looking for local dirty contacts");
197 Log.i(TAG, "Dirty Contact: " + Long.toString(rawContactId));
239 * so that we're ready for the next time. This involves clearing out the 'dirty'
258 Log.i(TAG, "Clearing dirty flag for: " + rawContact.getBestName());
553 * Clear the local system 'dirty' flag for a contact.
737 RawContacts.DIRTY,
    [all...]
ContactOperations.java 309 mValues.put(RawContacts.DIRTY, isDirtyValue);
412 // delete a contact, and the ability to clear the dirty flag.
417 // the contact as 'dirty' for us!
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 273 map.put(Bookmarks.DIRTY, Bookmarks.DIRTY);
408 Bookmarks.DIRTY + " INTEGER NOT NULL DEFAULT 0," +
532 db.insertOrThrow(TABLE_BOOKMARKS, Bookmarks.DIRTY, values);
636 values.put(Bookmarks.DIRTY, true);
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ContactsSyncAdapter.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactLoader.java 511 RawContacts.DIRTY,
583 public final static int DIRTY = 19;
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 78 Calendars.DIRTY,
131 values.put(Calendars.DIRTY, 0);
173 original.put(Calendars.DIRTY, 1);
326 Events.DIRTY,
385 values.put(Events.DIRTY, 0);
388 // only the sync adapter can set the DIRTY flag
389 //values.put(Events.DIRTY, 1);
479 values.put(Events.DIRTY, 0);
489 values.put(Events.DIRTY, asSyncAdapter ? 0 : 1);
514 * @param values Set of values to update (sets DELETED and DIRTY)
    [all...]

Completed in 611 milliseconds

1 2