HomeSort by relevance Sort by last modified time
    Searched refs:cv (Results 26 - 50 of 139) sorted by null

12 3 4 5 6

  /external/chromium/base/third_party/dynamic_annotations/
dynamic_annotations.h 127 /* Report that wait on the condition variable at address "cv" has succeeded
129 #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, lock) \
130 DYNAMIC_ANNOTATIONS_NAME(AnnotateCondVarWait)(__FILE__, __LINE__, cv, lock)
132 /* Report that wait on the condition variable at "cv" has succeeded. Variant
134 #define ANNOTATE_CONDVAR_WAIT(cv) \
135 DYNAMIC_ANNOTATIONS_NAME(AnnotateCondVarWait)(__FILE__, __LINE__, cv, NULL)
138 "cv". */
139 #define ANNOTATE_CONDVAR_SIGNAL(cv) \
140 DYNAMIC_ANNOTATIONS_NAME(AnnotateCondVarSignal)(__FILE__, __LINE__, cv)
143 "cv". *
    [all...]
dynamic_annotations.c 72 const char *file, int line, const volatile void *cv,
75 const char *file, int line, const volatile void *cv){}
77 const char *file, int line, const volatile void *cv){}
  /external/valgrind/dynamic_annotations/
dynamic_annotations.h 124 /* Report that wait on the condition variable at address "cv" has succeeded
126 #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, lock) \
127 DYNAMIC_ANNOTATIONS_NAME(AnnotateCondVarWait)(__FILE__, __LINE__, cv, lock)
129 /* Report that wait on the condition variable at "cv" has succeeded. Variant
131 #define ANNOTATE_CONDVAR_WAIT(cv) \
132 DYNAMIC_ANNOTATIONS_NAME(AnnotateCondVarWait)(__FILE__, __LINE__, cv, NULL)
135 "cv". */
136 #define ANNOTATE_CONDVAR_SIGNAL(cv) \
137 DYNAMIC_ANNOTATIONS_NAME(AnnotateCondVarSignal)(__FILE__, __LINE__, cv)
140 "cv". *
    [all...]
dynamic_annotations.c 79 const char *file, int line, const volatile void *cv,
82 const char *file, int line, const volatile void *cv) {DYNAMIC_ANNOTATIONS_IMPL}
84 const char *file, int line, const volatile void *cv) {DYNAMIC_ANNOTATIONS_IMPL}
  /packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncParser.java 124 ContentValues cv = new ContentValues(); local
180 cv.put(MailboxColumns.SYNC_KEY, newKey);
205 cv.put(MailboxColumns.SYNC_INTERVAL, mMailbox.mSyncInterval);
212 cv.put(MailboxColumns.SYNC_INTERVAL, Mailbox.CHECK_INTERVAL_PING);
220 mMailbox.update(mContext, cv);
FolderSyncParser.java 166 ContentValues cv = new ContentValues(); local
167 cv.put(AccountColumns.SYNC_KEY, mAccount.mSyncKey);
169 mAccount.mId), cv, null, null); local
298 ContentValues cv = new ContentValues(); local
302 cv.put(MailboxColumns.SYNC_INTERVAL, options.mInterval);
303 cv.put(MailboxColumns.SYNC_LOOKBACK, options.mLookback);
306 mContentResolver.update(Mailbox.CONTENT_URI, cv, WHERE_SERVER_ID_AND_ACCOUNT,
480 ContentValues cv = new ContentValues(); local
482 cv.put(Mailbox.DISPLAY_NAME, displayName);
485 cv.put(Mailbox.PARENT_SERVER_ID, parentId)
    [all...]
  /packages/apps/Email/src/com/android/email/
Controller.java 449 ContentValues cv = new ContentValues(); local
450 cv.put(MessageColumns.FLAG_LOADED, Message.FLAG_LOADED_COMPLETE);
451 mProviderContext.getContentResolver().update(uri, cv, null, null);
578 ContentValues cv = new ContentValues(); local
579 cv.put(EmailContent.MessageColumns.MAILBOX_KEY, outboxId);
583 resolver.update(uri, cv, null, null);
661 ContentValues cv = new ContentValues();
662 cv.put(MailboxColumns.VISIBLE_LIMIT, Email.VISIBLE_LIMIT_DEFAULT);
663 resolver.update(Mailbox.CONTENT_URI, cv,
704 ContentValues cv = new ContentValues();
808 ContentValues cv = new ContentValues(); local
840 ContentValues cv = new ContentValues(); local
    [all...]
  /external/valgrind/main/drd/
drd.h 127 * Tell DRD that waiting on the condition variable at address cv has succeeded
134 #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, mtx) do { } while(0)
137 * Tell DRD that the condition variable at address cv is about to be signaled.
139 #define ANNOTATE_CONDVAR_SIGNAL(cv) do { } while(0)
142 * Tell DRD that the condition variable at address cv is about to be signaled.
144 #define ANNOTATE_CONDVAR_SIGNAL_ALL(cv) do { } while(0)
147 * Tell DRD that waiting on condition variable at address cv succeeded and that
149 * to happen after the matching ANNOTATE_CONDVAR_SIGNAL(cv). Since this is the
153 #define ANNOTATE_CONDVAR_WAIT(cv) do { } while(0)
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
ClassStubber.java 32 public ClassStubber(ClassVisitor cv) {
33 super(cv);
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseGeneralTest.java 855 ContentValues cv; local
1028 ContentValues cv = new ContentValues(); local
    [all...]
  /external/valgrind/main/helgrind/tests/
tc20_verifywrap.c 45 pthread_cond_t cv; local
146 r= pthread_cond_init( &cv, NULL ); assert(!r);
147 r= pthread_cond_wait( &cv, &mx4 ); assert(r);
152 r= pthread_cond_signal( &cv ); assert(!r);
158 r= pthread_cond_broadcast( &cv ); assert(!r);
165 r= pthread_cond_timedwait( &cv, &mx4, &abstime ); assert(r);
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
EmailSyncAdapterTests.java 196 ContentValues cv = new ContentValues(); local
197 cv.put(SyncColumns.SERVER_ID, TEST_SERVER_ID);
199 mResolver.update(ContentUris.withAppendedId(Message.CONTENT_URI, deleteMessageId), cv, local
225 ContentValues cv = new ContentValues(); local
227 cv.put(SyncColumns.SERVER_ID, TEST_SERVER_ID);
228 cv.put(MessageColumns.FLAGS, randomFlags);
230 mResolver.update(ContentUris.withAppendedId(Message.CONTENT_URI, changeMessageId), cv, local
279 ContentValues cv = new ContentValues(); local
280 cv.put(Message.FLAG_READ, 0);
282 id), cv, null, null) local
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmGenerator.java 316 ClassVisitor cv = new TransformClassAdapter(mLog, mStubMethods,
328 cv = new DelegateClassAdapter(mLog, cv, className, delegateMethods);
332 cr.accept(cv, 0 /* flags */);
365 ClassHasNativeVisitor cv = new ClassHasNativeVisitor(); local
366 cr.accept(cv, 0 /* flags */);
367 return cv.hasNativeMethods();
DelegateClassAdapter.java 52 * @param cv the class visitor to which this adapter must delegate calls.
59 ClassVisitor cv,
62 super(cv);
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 182 ContentValues cv = new ContentValues(2); local
224 cv.clear();
225 cv.put(Words.WORD, word);
226 cv.put(Words.FREQUENCY, frequencyInt);
227 cv.put(Words.LOCALE, locale);
228 cv.put(Words.APP_ID, appidInt);
231 getContentResolver().insert(contentUri, cv);
  /cts/tests/tests/content/src/android/content/cts/
ContentValuesTest.java 324 ContentValues cv = new ContentValues(); local
325 cv.put("Boolean", false);
326 cv.put("String", "string");
328 assertTrue(mContentValues.equals(cv));
345 ContentValues cv = new ContentValues(); local
346 cv.put("Boolean", true);
347 cv.put("String", "111");
349 assertFalse(mContentValues.equals(cv));
734 ContentValues cv = new ContentValues(); local
735 cv.put("String", "cts")
    [all...]
  /external/harfbuzz/src/
harfbuzz-gdef.c 383 static HB_Error Load_CaretValue( HB_CaretValue* cv,
396 cv->CaretValueFormat = GET_UShort();
400 switch ( cv->CaretValueFormat )
406 cv->cvf.cvf1.Coordinate = GET_Short();
416 cv->cvf.cvf2.CaretValuePoint = GET_UShort();
426 cv->cvf.cvf3.Coordinate = GET_Short();
434 ( error = _HB_OPEN_Load_Device( &cv->cvf.cvf3.Device,
446 cv->cvf.cvf4.IdCaretValue = GET_UShort();
462 static void Free_CaretValue( HB_CaretValue* cv)
464 if ( cv->CaretValueFormat == 3
479 HB_CaretValue* cv; local
529 HB_CaretValue* cv; local
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/provider/
MockProvider.java 166 for (ContentValues cv: valuesList) {
170 rowValues[i++] = cv.get(column);
196 ContentValues cv = mMockStore.get(path); local
197 if (cv != null) {
198 updateValuesList.add(cv);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ShortcutRepositoryImplLog.java 556 ContentValues cv = new ContentValues(); local
557 cv.put(Shortcuts.intent_key.name(), intentKey);
558 cv.put(Shortcuts.source.name(), sourceName);
559 cv.put(Shortcuts.source_version_code.name(), source.getVersionCode());
560 cv.put(Shortcuts.format.name(), suggestion.getSuggestionFormat());
561 cv.put(Shortcuts.title.name(), suggestion.getSuggestionText1());
562 cv.put(Shortcuts.description.name(), suggestion.getSuggestionText2());
563 cv.put(Shortcuts.description_url.name(), suggestion.getSuggestionText2Url());
564 cv.put(Shortcuts.icon1.name(), icon1Uri);
565 cv.put(Shortcuts.icon2.name(), icon2Uri)
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
MailboxSettings.java 319 final ContentValues cv = new ContentValues(); local
323 cv.put(AccountColumns.SYNC_INTERVAL, account.mSyncInterval);
324 cv.put(AccountColumns.SYNC_LOOKBACK, account.mSyncLookback);
327 cv.put(MailboxColumns.SYNC_INTERVAL, mailbox.mSyncInterval);
328 cv.put(MailboxColumns.SYNC_LOOKBACK, mailbox.mSyncLookback);
331 context.getContentResolver().update(uri, cv, null, null);
  /packages/apps/Exchange/src/com/android/exchange/
EasSyncService.java 407 ContentValues cv = new ContentValues(); local
410 cv.put(AccountColumns.FLAGS, account.mFlags);
411 account.update(service.mContext, cv);
1088 ContentValues cv = new ContentValues(); local
1094 cv, null, null); local
1101 cv, null, null); local
1655 ContentValues cv = new ContentValues(); local
1666 ContentValues cv = new ContentValues(); local
1897 ContentValues cv = new ContentValues(); local
1904 cv, null, null); local
2409 ContentValues cv = new ContentValues(); local
2413 cv, null, null); local
2499 ContentValues cv = new ContentValues(); local
2504 Account.CONTENT_URI, accountId), cv, null, null); local
2577 ContentValues cv = new ContentValues(); local
2582 mMailboxId), cv, null, null); local
    [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java 2854 ContentValues cv = new ContentValues(); local
    [all...]
  /external/chromium/base/synchronization/
waitable_event_posix.cc 141 base::ConditionVariable* cv() { function in class:base::SyncWaiter
204 sw.cv()->TimedWait(max_wait);
206 sw.cv()->Wait();
267 sw.cv()->Wait();
  /external/clang/test/SemaCXX/
dcl_init_aggr.cpp 37 char cv[4] = { 'a', 's', 'd', 'f', 0 }; // expected-error{{excess elements in array initializer}} variable
  /external/valgrind/main/helgrind/
helgrind.h 411 /* Report that wait on the condition variable at address CV has
412 succeeded and the lock at address LOCK is now held. CV and LOCK
415 #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, lock) \
418 /* Report that wait on the condition variable at CV has succeeded.
420 #define ANNOTATE_CONDVAR_WAIT(cv) \
424 address CV. */
425 #define ANNOTATE_CONDVAR_SIGNAL(cv) \
429 CV. */
430 #define ANNOTATE_CONDVAR_SIGNAL_ALL(cv) \

Completed in 943 milliseconds

12 3 4 5 6