HomeSort by relevance Sort by last modified time
    Searched refs:DIRTY (Results 1 - 25 of 40) 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...]
nettest_bsd.c     [all...]
  /packages/apps/Exchange/exchange2/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 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
280 } else if (parts[0].equals(DIRTY) && parts.length == 2) {
291 * cache. Dirty entries are assumed to be inconsistent and will be deleted.
334 writer.write(DIRTY + ' ' + entry.key + '\n')
469 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";
CalendarDatabaseHelper.java 522 CalendarContract.Events.DIRTY + " INTEGER," +
588 + "dirty INTEGER,"
655 "dirty INTEGER," +
    [all...]
CalendarProvider2.java 200 " SET " + Events.DIRTY + "=1" +
379 // _id, _sync_account, _sync_account_type, dirty, _sync_mark, calendar_id
    [all...]
  /frameworks/base/core/java/android/provider/
CalendarContract.java 171 * to true, the modified row is not marked as "dirty" (needs to be synced)
305 public static final String DIRTY = "dirty";
319 * transitions from non-dirty to dirty. The duplicated event will not be
322 * originating event has its dirty flag cleared by the sync adapter.
520 DatabaseUtils.cursorLongToContentValuesIfPresent(cursor, cv, DIRTY);
642 * <li>{@link #DIRTY}</li>
709 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);
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 270 map.put(Bookmarks.DIRTY, Bookmarks.DIRTY);
417 Bookmarks.DIRTY + " INTEGER NOT NULL DEFAULT 0," +
544 db.insert(TABLE_BOOKMARKS, Bookmarks.DIRTY, values);
650 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!
ContactManager.java 177 * "dirty", and need syncing to the SampleSync server.
181 * @return a list of Users that are considered "dirty"
184 Log.i(TAG, "*** Looking for local dirty contacts");
206 Log.i(TAG, "Dirty Contact: " + Long.toString(rawContactId));
285 * so that we're ready for the next time. This involves clearing out the 'dirty'
304 Log.i(TAG, "Clearing dirty flag for: " + rawContact.getBestName());
652 * Clear the local system 'dirty' flag for a contact.
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 79 Calendars.DIRTY,
135 values.put(Calendars.DIRTY, 0);
179 original.put(Calendars.DIRTY, 1);
334 Events.DIRTY,
395 values.put(Events.DIRTY, 0);
398 // only the sync adapter can set the DIRTY flag
399 //values.put(Events.DIRTY, 1);
489 values.put(Events.DIRTY, 0);
499 values.put(Events.DIRTY, asSyncAdapter ? 0 : 1);
524 * @param values Set of values to update (sets DELETED and DIRTY)
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
ContactsSyncAdapter.java     [all...]
CalendarSyncAdapter.java 88 private static final String DIRTY_OR_MARKED_TOP_LEVEL_IN_CALENDAR = "(" + Events.DIRTY
92 Events.DIRTY + "=1 AND " + Events.ORIGINAL_ID + " NOTNULL AND " +
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactLoader.java 561 RawContacts.DIRTY,
633 public final static int DIRTY = 19;
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GroupsTest.java 173 values.put(Groups.DIRTY, 0);

Completed in 873 milliseconds

1 2