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

1 2 3 4 5 6 7 8 91011>>

  /libcore/expectations/
taggedtests.txt 8 result: SUCCESS,
  /cts/libs/vogar-expect/src/vogar/
Result.java 33 SUCCESS
  /external/chromium_org/components/autofill/core/common/
autocheckout_status.h 11 SUCCESS,
  /external/chromium/net/url_request/
url_request_status.h 15 // types of success.
20 SUCCESS = 0,
38 URLRequestStatus() : status_(SUCCESS), os_error_(0) {}
47 // Returns true if the status is success, which makes some calling code more
49 // HANDLED_EXTERNALLY as success. For everything except user notifications,
52 return status_ == SUCCESS || status_ == IO_PENDING;
  /external/chromium_org/net/url_request/
url_request_status.h 14 // types of success.
19 SUCCESS = 0,
32 URLRequestStatus() : status_(SUCCESS), error_(0) {}
41 // Returns true if the status is success, which makes some calling code more
44 return status_ == SUCCESS || status_ == IO_PENDING;
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
gsm_amr_typedefs.h 123 #ifndef SUCCESS
124 #define SUCCESS 0
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_mutex.c 87 /*if (SUCCESS != pthread_mutex_init(plMutex, pAttr)) */
88 if (SUCCESS != pthread_mutex_init(plMutex, TIMM_OSAL_NULL))
132 if (SUCCESS != pthread_mutex_destroy(plMutex))
172 if (SUCCESS != pthread_mutex_lock(plMutex))
179 if (SUCCESS != pthread_mutex_trylock(plMutex))
193 if (SUCCESS != pthread_mutex_lock(plMutex))
196 if (SUCCESS != pthread_mutex_timedlock(plMutex, &abs_timeout))
232 if (SUCCESS != pthread_mutex_unlock(plMutex))
timm_osal_semaphores.c 96 if (SUCCESS != sem_init(psem, 0, uInitCount))
131 if (SUCCESS != sem_destroy(psem))
166 if (SUCCESS != sem_wait(psem))
174 if (SUCCESS != sem_trywait(psem))
190 if (SUCCESS != sem_timedwait(psem, &abs_timeout))
220 if (SUCCESS != sem_post(psem))
286 if (SUCCESS != sem_getvalue(psem, &sval))
timm_osal_task.c 141 if (SUCCESS != pthread_attr_init(&pHandle->ThreadAttr))
148 if (SUCCESS != pthread_attr_getschedparam(&pHandle->ThreadAttr,
156 if (SUCCESS != pthread_attr_setschedparam(&pHandle->ThreadAttr,
164 if (SUCCESS != pthread_attr_getstacksize(&pHandle->ThreadAttr,
175 if (SUCCESS != pthread_attr_setstacksize(&pHandle->ThreadAttr,
185 if (SUCCESS != pthread_create(&pHandle->threadID,
timm_osal_events.c 98 if (SUCCESS != pthread_mutex_init(&(plEvent->mutex), NULL))
104 if (SUCCESS != pthread_cond_init(&(plEvent->condition), NULL))
142 if (SUCCESS != pthread_mutex_lock(&(plEvent->mutex)))
147 if (SUCCESS != pthread_cond_destroy(&(plEvent->condition)))
154 if (SUCCESS != pthread_mutex_unlock(&(plEvent->mutex)))
160 if (SUCCESS != pthread_mutex_destroy(&(plEvent->mutex)))
192 if (SUCCESS != pthread_mutex_lock(&(plEvent->mutex)))
216 if (SUCCESS != pthread_cond_signal(&plEvent->condition))
225 if (SUCCESS != pthread_mutex_unlock(&plEvent->mutex))
286 if (SUCCESS != pthread_mutex_lock(&(plEvent->mutex))
    [all...]
  /cts/tests/src/android/speech/tts/cts/
StubTextToSpeechService.java 51 if (callback.start(16000, AudioFormat.ENCODING_PCM_16BIT, 1) != TextToSpeech.SUCCESS) {
55 if (callback.audioAvailable(data, 0, data.length) != TextToSpeech.SUCCESS) {
58 if (callback.done() != TextToSpeech.SUCCESS) {
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pv_amr_wb_type_defs.h 160 #ifndef SUCCESS
161 #define SUCCESS 0
  /frameworks/base/core/java/android/nfc/
ErrorCodes.java 38 case SUCCESS: return "SUCCESS";
65 public static final int SUCCESS = 0;
  /external/chromium_org/sync/engine/
syncer_types.h 14 SUCCESS,
49 // Success. Update applied and stored in SERVER_* fields or dropped if
53 // Success. Update details stored in SERVER_* fields, but wasn't applied.
  /packages/services/Telephony/src/com/android/phone/
Constants.java 52 SUCCESS,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
ServReqClearRequestTestCase.java 56 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
61 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
66 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
71 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
80 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
ServReqRemoveRequestTestCase.java 56 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
61 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
66 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
71 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
80 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
85 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
90 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
112 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
GoTestCase.java 53 if (!listener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
63 if (!listener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
73 if (!listener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
82 if (!listener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
ServRespTestCase.java 55 if (!listenerTest.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
65 if (!listenerTest.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
75 if (!listenerTest.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
84 if (!listenerTest.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
ServReqMultiClientTestCase03.java 47 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
57 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
67 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
100 if (!actionListener.check(ActionListenerTest.SUCCESS, TIMEOUT)) {
  /packages/apps/Mms/src/com/android/mms/transaction/
TransactionState.java 35 public static final int SUCCESS = 1;
  /external/chromium/chrome/browser/chromeos/login/
signed_settings_helper_unittest.cc 86 op->OnKeyOpComplete(OwnerManager::SUCCESS, std::vector<uint8>());
131 EXPECT_CALL(cb, OnWhitelistCompleted(SignedSettings::SUCCESS, _))
134 EXPECT_CALL(cb, OnCheckWhitelistCompleted(SignedSettings::SUCCESS, _))
139 EXPECT_CALL(cb, OnUnwhitelistCompleted(SignedSettings::SUCCESS, _))
144 EXPECT_CALL(cb, OnStorePropertyCompleted(SignedSettings::SUCCESS, _, _))
147 EXPECT_CALL(cb, OnRetrievePropertyCompleted(SignedSettings::SUCCESS, _, _))
182 EXPECT_CALL(cb, OnWhitelistCompleted(SignedSettings::SUCCESS, _))
185 EXPECT_CALL(cb, OnCheckWhitelistCompleted(SignedSettings::SUCCESS, _))
190 EXPECT_CALL(cb, OnUnwhitelistCompleted(SignedSettings::SUCCESS, _))
198 EXPECT_CALL(cb, OnStorePropertyCompleted(SignedSettings::SUCCESS, _, _)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/log_private/
syslog_parser.cc 49 if (ParseTime(time, &(entry->timestamp)) != SyslogParser::SUCCESS) {
71 return SyslogParser::SUCCESS;
81 return SyslogParser::SUCCESS;
89 if (ParseTimeHelper(&tokenizer, &(tokens[i])) != SyslogParser::SUCCESS)
107 return SyslogParser::SUCCESS;
128 return SyslogParser::SUCCESS;
  /external/wpa_supplicant_8/src/eap_server/
eap_server_vendor_test.c 20 enum { INIT, CONFIRM, SUCCESS, FAILURE } state;
31 case SUCCESS:
32 return "SUCCESS";
125 eap_vendor_test_state(data, SUCCESS);
136 return data->state == SUCCESS;
146 if (data->state != SUCCESS)
164 return data->state == SUCCESS;
  /frameworks/base/core/java/android/nfc/tech/
NdefFormatable.java 129 case ErrorCodes.SUCCESS:
148 case ErrorCodes.SUCCESS:
164 case ErrorCodes.SUCCESS:

Completed in 537 milliseconds

1 2 3 4 5 6 7 8 91011>>