Searched refs:status (Results 1 - 25 of 5668) sorted by relevance

1234567891011>>

/external/chromium_org/sync/sessions/
H A Dstatus_controller_unittest.cc18 StatusController status; local
20 status.set_last_download_updates_result(SYNCER_OK);
22 status.model_neutral_state().last_download_updates_result);
24 status.set_commit_result(SYNC_AUTH_ERROR);
25 EXPECT_EQ(SYNC_AUTH_ERROR, status.model_neutral_state().commit_result);
28 status.increment_num_successful_commits();
29 EXPECT_EQ(14, status.model_neutral_state().num_successful_commits);
34 StatusController status; local
35 EXPECT_EQ(0, status.TotalNumConflictingItems());
37 status
[all...]
/external/chromium_org/third_party/icu/source/test/testmap/
H A Dtestmap.c29 UErrorCode status = U_ZERO_ERROR; local
31 udata_setCommonData(NULL, &status);
32 printf("setCommonData(NULL) -> %s [should fail]\n", u_errorName(status));
33 if(status != U_ILLEGAL_ARGUMENT_ERROR)
39 status = U_ZERO_ERROR;
40 udata_setCommonData(U_ICUDATA_ENTRY_POINT, &status);
41 printf("setCommonData(%p) -> %s\n", U_ICUDATA_ENTRY_POINT, u_errorName(status));
42 if(U_FAILURE(status))
48 status = U_ZERO_ERROR;
49 c = ucnv_open("iso-8859-7", &status);
[all...]
/external/icu/icu4c/source/test/testmap/
H A Dtestmap.c30 UErrorCode status = U_ZERO_ERROR; local
32 udata_setCommonData(NULL, &status);
33 printf("setCommonData(NULL) -> %s [should fail]\n", u_errorName(status));
34 if(status != U_ILLEGAL_ARGUMENT_ERROR)
40 status = U_ZERO_ERROR;
41 udata_setCommonData(&U_ICUDATA_ENTRY_POINT, &status);
42 printf("setCommonData(%p) -> %s\n", (void*)&U_ICUDATA_ENTRY_POINT, u_errorName(status));
43 if(U_FAILURE(status))
49 status = U_ZERO_ERROR;
50 c = ucnv_open("iso-8859-3", &status);
[all...]
/external/chromium_org/chrome/browser/ui/
H A Dsad_tab.cc10 bool SadTab::ShouldShow(base::TerminationStatus status) { argument
11 return (status == base::TERMINATION_STATUS_ABNORMAL_TERMINATION ||
12 status == base::TERMINATION_STATUS_PROCESS_WAS_KILLED ||
13 status == base::TERMINATION_STATUS_PROCESS_CRASHED);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcntabcol.cpp24 UErrorCode status = U_ZERO_ERROR; local
26 testTable = uprv_cnttab_open(testMapping, &status);
30 uprv_cnttab_addContraction(testTable, 0, (UChar)i, i, &status);
31 if(U_FAILURE(status)) {
32 errln("Error occurred at position %i, error = %i (%s)\n", i, status, u_errorName(status));
37 if(U_SUCCESS(status)) {
39 res = uprv_cnttab_getCE(testTable, 0, i, &status);
40 if(U_FAILURE(status)) {
41 errln("Error occurred at position %i, error = %i (%s)\n", i, status, u_errorNam
54 UErrorCode status = U_ZERO_ERROR; local
74 UErrorCode status = U_ZERO_ERROR; local
104 UErrorCode status = U_ZERO_ERROR; local
145 UErrorCode status = U_ZERO_ERROR; local
172 UErrorCode status = U_ZERO_ERROR; local
182 UErrorCode status = U_REGEX_SET_CONTAINS_STRING; local
[all...]
H A Dv32test.cpp58 #define TEST_CHECK_STATUS(status) \
59 if (U_FAILURE(status)) {\
60 errln("UVector32Test failure at line %d. status=%s\n", __LINE__, u_errorName(status));\
76 UErrorCode status = U_ZERO_ERROR; local
80 a = new UVector32(status);
81 TEST_CHECK_STATUS(status);
84 status = U_ZERO_ERROR;
85 a = new UVector32(2000, status);
86 TEST_CHECK_STATUS(status);
[all...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/rng/
H A Dctr_prng.c55 err_status_t status; local
64 status = random_source(tmp_key, 32);
65 if (status)
66 return status;
69 status = aes_icm_context_init(&ctr_prng.state, tmp_key, 30);
70 if (status)
71 return status;
78 err_status_t status; local
86 status = ctr_prng_init(ctr_prng.rand);
87 if (status)
[all...]
/external/srtp/crypto/rng/
H A Dctr_prng.c55 err_status_t status; local
64 status = random_source(tmp_key, 32);
65 if (status)
66 return status;
69 status = aes_icm_context_init(&ctr_prng.state, tmp_key);
70 if (status)
71 return status;
78 err_status_t status; local
86 status = ctr_prng_init(ctr_prng.rand);
87 if (status)
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dv32test.cpp58 #define TEST_CHECK_STATUS(status) \
59 if (U_FAILURE(status)) {\
60 errln("UVector32Test failure at line %d. status=%s\n", __LINE__, u_errorName(status));\
76 UErrorCode status = U_ZERO_ERROR; local
80 a = new UVector32(status);
81 TEST_CHECK_STATUS(status);
84 status = U_ZERO_ERROR;
85 a = new UVector32(2000, status);
86 TEST_CHECK_STATUS(status);
[all...]
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dlocal_file_sync_status_unittest.cc32 LocalFileSyncStatus status; local
34 status.StartWriting(URL(kFile));
35 status.StartWriting(URL(kFile));
36 status.EndWriting(URL(kFile));
38 EXPECT_TRUE(status.IsWriting(URL(kFile)));
39 EXPECT_TRUE(status.IsWriting(URL(kParent)));
40 EXPECT_TRUE(status.IsWriting(URL(kChild)));
41 EXPECT_FALSE(status.IsWriting(URL(kOther1)));
42 EXPECT_FALSE(status.IsWriting(URL(kOther2)));
45 EXPECT_TRUE(status
66 LocalFileSyncStatus status; local
91 LocalFileSyncStatus status; local
105 LocalFileSyncStatus status; local
[all...]
/external/chromium_org/chrome/common/net/
H A Dnet_error_info.cc13 const char* DnsProbeStatusToString(int status) { argument
14 switch (status) {
35 bool DnsProbeStatusIsFinished(DnsProbeStatus status) { argument
36 return status >= DNS_PROBE_FINISHED_INCONCLUSIVE &&
37 status < DNS_PROBE_MAX;
/external/chromium_org/content/public/common/
H A Dsigned_certificate_timestamp_id_and_status.cc10 int id, net::ct::SCTVerifyStatus status)
11 : id(id), status(status) {}
15 return id == other.id && status == other.status;
9 SignedCertificateTimestampIDAndStatus( int id, net::ct::SCTVerifyStatus status) argument
/external/icu/icu4c/source/common/
H A Dicudataver.c15 U_CAPI void U_EXPORT2 u_getDataVersion(UVersionInfo dataVersionFillin, UErrorCode *status) { argument
18 if (U_FAILURE(*status)) {
23 icudatares = ures_openDirect(NULL, U_ICU_VERSION_BUNDLE , status);
24 if (U_SUCCESS(*status)) {
25 ures_getVersionByKey(icudatares, U_ICU_DATA_KEY, dataVersionFillin, status);
H A Duinit.cpp35 initData(UErrorCode &status) argument
38 uplug_init(&status);
53 ucnv_io_countKnownConverters(&status);
66 u_init(UErrorCode *status) { argument
68 umtx_initOnce(gICUInitOnce, &initData, *status);
69 UTRACE_EXIT_STATUS(*status);
/external/chromium_org/third_party/libsrtp/srtp/crypto/ae_xfm/
H A Dxfm.c69 err_status_t status; local
87 status = hmac_init(&hmac_ctx, key, KEY_LEN);
88 if (status) return status;
89 status = hmac_compute(&hmac_ctx, "ENC", 3, ENC_KEY_LEN, enc_key);
90 if (status) return status;
92 status = hmac_init(&hmac_ctx, key, KEY_LEN);
93 if (status) return status;
145 err_status_t status; local
229 err_status_t status; local
342 err_status_t status; local
[all...]
/external/srtp/crypto/ae_xfm/
H A Dxfm.c34 err_status_t status; local
52 status = hmac_init(&hmac_ctx, key, KEY_LEN);
53 if (status) return status;
54 status = hmac_compute(&hmac_ctx, "ENC", 3, ENC_KEY_LEN, enc_key);
55 if (status) return status;
57 status = hmac_init(&hmac_ctx, key, KEY_LEN);
58 if (status) return status;
110 err_status_t status; local
195 err_status_t status; local
308 err_status_t status; local
[all...]
/external/chromium_org/base/mac/
H A Dmac_logging.h20 // system routines that report status via an OSStatus or OSErr value. It is
24 // will contain the symbolic constant name corresponding to the status value,
37 OSStatus status);
54 #define OSSTATUS_LOG_STREAM(severity, status) \
55 COMPACT_GOOGLE_LOG_EX_ ## severity(OSStatusLogMessage, status).stream()
56 #define OSSTATUS_VLOG_STREAM(verbose_level, status) \
58 -verbose_level, status).stream()
60 #define OSSTATUS_LOG(severity, status) \
61 LAZY_STREAM(OSSTATUS_LOG_STREAM(severity, status), LOG_IS_ON(severity))
62 #define OSSTATUS_LOG_IF(severity, condition, status) \
[all...]
/external/chromium_org/net/ssl/
H A Dsigned_certificate_timestamp_and_status.cc13 const ct::SCTVerifyStatus status)
14 : sct(sct), status(status) {}
11 SignedCertificateTimestampAndStatus( const scoped_refptr<ct::SignedCertificateTimestamp>& sct, const ct::SCTVerifyStatus status) argument
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1233.js40 var status = "fail"; variable
44 status = "succeed";
47 assertEquals("succeed", status);
/external/icu/icu4c/source/i18n/unicode/
H A Dmeasunit.h195 * @param status ICU error code.
198 static MeasureUnit *createGForce(UErrorCode &status);
203 * @param status ICU error code.
206 static MeasureUnit *createArcMinute(UErrorCode &status);
211 * @param status ICU error code.
214 static MeasureUnit *createArcSecond(UErrorCode &status);
219 * @param status ICU error code.
222 static MeasureUnit *createDegree(UErrorCode &status);
227 * @param status ICU error code.
230 static MeasureUnit *createAcre(UErrorCode &status);
[all...]
/external/chromium_org/webkit/common/quota/
H A Dquota_status_code.cc10 const char* QuotaStatusCodeToString(QuotaStatusCode status) { argument
11 switch (status) {
/external/clang/test/Sema/
H A Dtransparent-union-pointer.c12 int status = 0; local
13 wait(&status);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dhpmufn.c48 #define TEST_STATUS(status, expected) \
49 if (status != expected) { \
50 log_err_status(status, "FAIL at %s:%d. Actual status = \"%s\"; Expected status = \"%s\"\n", \
51 __FILE__, __LINE__, u_errorName(status), u_errorName(expected)); gMutexFailures++; }
123 UErrorCode status = U_ZERO_ERROR; local
138 u_setMemoryFunctions(&gContext, myMemAlloc, myMemRealloc, myMemFree, &status);
139 TEST_STATUS(status, U_INVALID_STATE_ERROR);
145 status
221 myMutexInit(const void *context, UMTX *mutex, UErrorCode *status) argument
265 UErrorCode status = U_ZERO_ERROR; local
397 UErrorCode status = U_ZERO_ERROR; local
[all...]
H A Dspooftest.c31 #define TEST_ASSERT_SUCCESS(status) {if (U_FAILURE(status)) { \
32 log_err_status(status, "Failure at file %s, line %d, error = %s\n", __FILE__, __LINE__, u_errorName(status));}}
53 UErrorCode status = U_ZERO_ERROR; \
55 sc = uspoof_open(&status); \
56 TEST_ASSERT_SUCCESS(status); \
57 if (U_SUCCESS(status)){
61 TEST_ASSERT_SUCCESS(status); \
113 UErrorCode status local
[all...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/test/
H A Drand_gen.c75 err_status_t status; local
81 status = crypto_kernel_init();
82 if (status) {
94 status = crypto_kernel_set_debug_module(optarg, 1);
95 if (status) {
114 status = crypto_kernel_list_debug_modules();
115 if (status) {
124 status = crypto_get_random(buffer, num_octets);
125 if (status) {
132 status
[all...]

Completed in 7760 milliseconds

1234567891011>>