HomeSort by relevance Sort by last modified time
    Searched refs:DIRTY (Results 1 - 25 of 43) 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/service/
ContactsSyncAdapterService.java 106 // See if we've got dirty contacts or dirty groups containing our contacts
107 boolean changed = hasDirtyRows(cr, uri, RawContacts.DIRTY);
114 changed = hasDirtyRows(cr, uri, Groups.DIRTY);
CalendarSyncAdapterService.java 41 Events.DIRTY + "=1 AND " + Events.ACCOUNT_NAME + "=?";
EasCalendarSyncHandler.java 88 /** Content selection for dirty calendar events. */
89 private static final String DIRTY_EXCEPTION_IN_CALENDAR = Events.DIRTY + "=1 AND " +
92 /** Where clause for updating dirty events. */
96 /** Content selection for dirty or marked top level events. */
97 private static final String DIRTY_OR_MARKED_TOP_LEVEL_IN_CALENDAR = "(" + Events.DIRTY +
240 * Find all dirty events for our calendar and mark their parents. Also delete any dirty events
248 // to find new/changed exceptions and mark the parent dirty
255 // We use _sync_mark here to distinguish dirty parents from parents with dirty
    [all...]
EasContactsSyncHandler.java 282 * Mark contacts in dirty groups as dirty.
288 GROUPS_ID_PROJECTION, Groups.DIRTY + "=1", null, null);
298 // in this group as dirty (per ContactsContract). We will then know to upload
310 // Clear the dirty flag for all of our groups
312 updateValues.put(Groups.DIRTY, 0);
716 // Find any groups of ours that are dirty and dirty those groups' members
725 mContentResolver.query(uri, null, ContactsContract.RawContacts.DIRTY + "=1", null,
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 97 private static final String DIRTY = "DIRTY";
110 * DIRTY 335c4c6028171cfddfbaae1a9c313c52
113 * DIRTY 1ab96a171faeeee38496d8b330771a7a
125 * o DIRTY lines track that an entry is actively being created or updated.
126 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
127 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
305 } else if (secondSpace == -1 && firstSpace == DIRTY.length() && line.startsWith(DIRTY)) {
316 * cache. Dirty entries are assumed to be inconsistent and will be deleted
525 File dirty = entry.getDirtyFile(i); local
    [all...]
  /development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/util/
DiskLruCache.java 107 private static final String DIRTY = "DIRTY";
123 * DIRTY 335c4c6028171cfddfbaae1a9c313c52
126 * DIRTY 1ab96a171faeeee38496d8b330771a7a
138 * o DIRTY lines track that an entry is actively being created or updated.
139 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
140 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
390 } else if (parts[0].equals(DIRTY) && parts.length == 2) {
401 * cache. Dirty entries are assumed to be inconsistent and will be deleted.
444 writer.write(DIRTY + ' ' + entry.key + '\n')
582 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 203 Events.DIRTY + "=1," +
387 // _id, _sync_account, _sync_account_type, dirty, _sync_mark, calendar_id
    [all...]
CalendarDatabaseHelper.java 525 CalendarContract.Events.DIRTY + " INTEGER," +
594 + "dirty INTEGER,"
661 "dirty INTEGER," +
    [all...]
  /frameworks/base/core/java/android/provider/
CalendarContract.java 168 * to true, the modified row is not marked as "dirty" (needs to be synced)
303 public static final String DIRTY = "dirty";
306 * Used in conjunction with {@link #DIRTY} to indicate what packages wrote local changes.
323 * transitions from non-dirty to dirty. The duplicated event will not be
326 * originating event has its dirty flag cleared by the sync adapter.
531 DatabaseUtils.cursorLongToContentValuesIfPresent(cursor, cv, DIRTY);
656 * <li>{@link #DIRTY}</li>
724 DIRTY,
    [all...]
BrowserContract.java 54 * the dirty flag is not automatically set and the "syncToNetwork" parameter
145 public static final String DIRTY = "dirty";
  /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);
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_ContactsTest.java 132 ContactsContract.RawContacts.DIRTY,
CalendarTest.java 94 Calendars.DIRTY,
150 values.put(Calendars.DIRTY, 0);
194 original.put(Calendars.DIRTY, 1);
349 Events.DIRTY,
410 values.put(Events.DIRTY, 0);
413 // only the sync adapter can set the DIRTY flag
414 //values.put(Events.DIRTY, 1);
504 values.put(Events.DIRTY, 0);
514 values.put(Events.DIRTY, asSyncAdapter ? 0 : 1);
539 * @param values Set of values to update (sets DELETED and DIRTY)
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 272 map.put(Bookmarks.DIRTY, Bookmarks.DIRTY);
419 Bookmarks.DIRTY + " INTEGER NOT NULL DEFAULT 0," +
546 db.insert(TABLE_BOOKMARKS, Bookmarks.DIRTY, values);
652 values.put(Bookmarks.DIRTY, true);
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
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/ContactsCommon/src/com/android/contacts/common/model/
RawContact.java 232 return getValues().getAsBoolean(RawContacts.DIRTY);
ContactLoader.java 136 RawContacts.DIRTY,
208 public static final int DIRTY = 19;
649 cursorColumnToContentValues(cursor, cv, ContactQuery.DIRTY);
    [all...]

Completed in 467 milliseconds

1 2