/external/chromium_org/content/common/ |
ssl_status_serialization.cc | 29 pickle.WriteUInt16(iter->status); 66 uint16 status; local 68 !pickle.ReadUInt16(&iter, &status)) 73 static_cast<net::ct::SCTVerifyStatus>(status)));
|
/external/chromium_org/content/public/common/ |
signed_certificate_timestamp_id_and_status.h | 16 // SignedCertificateTimestampStore), and its verification status. 19 int id, net::ct::SCTVerifyStatus status); 24 net::ct::SCTVerifyStatus status; member in struct:content::SignedCertificateTimestampIDAndStatus
|
/external/chromium_org/crypto/ |
scoped_test_nss_db.cc | 44 SECStatus status = SECMOD_CloseUserDB(slot_.get()); local 45 if (status != SECSuccess)
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/stream/ |
stream_event_emitter.cc | 32 uint32_t status = 0; local 34 status |= POLLIN; 37 status |= POLLOUT; 39 ClearEvents_Locked(~status); 40 RaiseEvents_Locked(status);
|
/external/chromium_org/net/ssl/ |
signed_certificate_timestamp_and_status.h | 20 ct::SCTVerifyStatus status); 25 ct::SCTVerifyStatus status; member in struct:net::SignedCertificateTimestampAndStatus
|
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/ |
ResponseInit.h | 19 : status(200) 24 : status(200) 27 DictionaryHelper::get(options, "status", status); 36 unsigned short status; member in class:blink::ResponseInit
|
/external/chromium_org/third_party/icu/source/i18n/ |
fpositer.cpp | 35 UErrorCode status = U_ZERO_ERROR; local 36 data = new UVector32(status); 37 data->assign(*rhs.data, status); 38 if (status != U_ZERO_ERROR) { 59 void FieldPositionIterator::setData(UVector32 *adopt, UErrorCode& status) { 60 // Verify that adopt has valid data, and update status if it doesn't. 61 if (U_SUCCESS(status)) { 64 status = U_ILLEGAL_ARGUMENT_ERROR; 68 status = U_ILLEGAL_ARGUMENT_ERROR; 76 // We own the data, even if status is in error, so we need to delete it no [all...] |
/external/chromium_org/third_party/icu/source/samples/translit/answers/ |
main_1.cpp | 22 UErrorCode status = U_ZERO_ERROR; local 27 cal = Calendar::createInstance(greece, status); 28 check(status, "Calendar::createInstance"); 49 defFmt->format(cal->getTime(status), str, status); 50 check(status, "DateFormat::format"); 57 fmt->format(cal->getTime(status), str, status); 58 check(status, "DateFormat::format");
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cformtst.c | 63 UErrorCode status = U_ZERO_ERROR; local 67 resultlengthneeded=udat_format(dat, d1, NULL, resultlength, NULL, &status); 68 if(status==U_BUFFER_OVERFLOW_ERROR) 70 status=U_ZERO_ERROR; 73 udat_format(dat, d1, result1, resultlength, NULL, &status); 75 if(U_FAILURE(status)) 77 log_err("Error in formatting using udat_format(.....): %s\n", myErrorName(status));
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
itformat.cpp | 86 UErrorCode status = U_ZERO_ERROR; local 87 Locale::setDefault( Locale::getEnglish(), status ); local 88 if (U_FAILURE(status)) { 165 UErrorCode status = U_ZERO_ERROR; local 166 Locale::setDefault( saveDefaultLocale, status ); 167 if (U_FAILURE(status)) {
|
/external/chromium_org/third_party/libsrtp/srtp/crypto/rng/ |
ctr_prng.c | 55 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/chromium_org/third_party/libsrtp/srtp/crypto/test/ |
kernel_driver.c | 61 err_status_t status; local 67 status = crypto_kernel_init(); 68 if (status) { 84 status = crypto_kernel_set_debug_module(optarg, 1); 85 if (status) { 96 printf("checking crypto_kernel status...\n"); 97 status = crypto_kernel_status(); 98 if (status) { 105 status = crypto_kernel_shutdown(); 106 if (status) { [all...] |
/external/chromium_org/third_party/lzma_sdk/ |
LzmaLib.c | 44 ELzmaStatus status; local 45 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
|
/external/chromium_org/third_party/ots/third_party/lzma_sdk/ |
LzmaLib.c | 45 ELzmaStatus status; local 46 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
|
/external/chromium_org/third_party/re2/re2/testing/ |
regexp_test.cc | 44 RegexpStatus status; local 46 "(?P<g1>a+)|(e)(?P<g2>w*)+(?P<g1>b+)", Regexp::PerlX, &status); 47 EXPECT_TRUE(status.ok()); 63 RegexpStatus status; local 65 "(?P<g1>a+)|(e)(?P<g2>w*)+(?P<g1>b+)", Regexp::PerlX, &status); 66 EXPECT_TRUE(status.ok());
|
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-ldflags-passed-to-libtool.py | 29 status=build_error_code) variable
|
/external/chromium_org/tools/gyp/test/msvs/buildevents/ |
gyptest-ninja-warnings.py | 20 status=1, variable 25 status=1, variable
|
/external/compiler-rt/lib/tsan/benchmarks/ |
start_many_threads.cc | 40 int status = pthread_create(&t[i], 0, Thread, (void*)i); local 41 assert(status == 0);
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
wait.cc | 27 int *status = x + argc * 3; local 30 res = wait(status); 32 res = waitpid(pid, status, WNOHANG); 34 res = wait3(status, WNOHANG, NULL); 36 res = wait4(pid, status, WNOHANG, NULL);
|
waitid.cc | 12 int *status = x + argc * 3; local
|
/external/icu/icu4c/source/i18n/ |
fpositer.cpp | 35 UErrorCode status = U_ZERO_ERROR; local 36 data = new UVector32(status); 37 data->assign(*rhs.data, status); 38 if (status != U_ZERO_ERROR) { 59 void FieldPositionIterator::setData(UVector32 *adopt, UErrorCode& status) { 60 // Verify that adopt has valid data, and update status if it doesn't. 61 if (U_SUCCESS(status)) { 64 status = U_ILLEGAL_ARGUMENT_ERROR; 68 status = U_ILLEGAL_ARGUMENT_ERROR; 76 // We own the data, even if status is in error, so we need to delete it no [all...] |
/external/icu/icu4c/source/samples/translit/answers/ |
main_1.cpp | 22 UErrorCode status = U_ZERO_ERROR; local 27 cal = Calendar::createInstance(greece, status); 28 check(status, "Calendar::createInstance"); 49 defFmt->format(cal->getTime(status), str, status); 50 check(status, "DateFormat::format"); 57 fmt->format(cal->getTime(status), str, status); 58 check(status, "DateFormat::format");
|
/external/icu/icu4c/source/test/cintltst/ |
cformtst.c | 63 UErrorCode status = U_ZERO_ERROR; local 67 resultlengthneeded=udat_format(dat, d1, NULL, resultlength, NULL, &status); 68 if(status==U_BUFFER_OVERFLOW_ERROR) 70 status=U_ZERO_ERROR; 73 udat_format(dat, d1, result1, resultlength, NULL, &status); 75 if(U_FAILURE(status)) 77 log_err("Error in formatting using udat_format(.....): %s\n", myErrorName(status));
|
/external/icu/icu4c/source/test/intltest/ |
itformat.cpp | 88 UErrorCode status = U_ZERO_ERROR; local 89 Locale::setDefault( Locale::getEnglish(), status ); local 90 if (U_FAILURE(status)) { 185 UErrorCode status = U_ZERO_ERROR; local 186 Locale::setDefault( saveDefaultLocale, status ); 187 if (U_FAILURE(status)) {
|
/external/libnfc-nci/src/nfa/include/ |
nfa_nv_ci.h | 38 tNFA_NV_CO_STATUS status; member in struct:__anon7755 47 tNFA_NV_CO_STATUS status; member in struct:__anon7756 70 ** Parameters status - NFA_NV_CO_OK, NFA_NV_CO_NOSPACE, or NFA_NV_CO_FAIL 77 NFC_API extern void nfa_nv_ci_write (tNFA_NV_CO_STATUS status); 90 ** status - NFA_NV_CO_OK if full buffer of data, 100 tNFA_NV_CO_STATUS status,
|