Searched defs:status (Results 276 - 300 of 3649) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/icu/source/tools/genbrk/
H A Dgenbrk.cpp127 UErrorCode status = U_ZERO_ERROR; local
162 status = U_ZERO_ERROR;
182 pData = udata_create(outDir, NULL, outFileName, &dummyDataInfo, NULL, &status);
184 udata_finish(pData, &status);
185 return (int)status;
189 u_init(&status);
190 if (U_FAILURE(status)) {
191 fprintf(stderr, "%s: can not initialize ICU. status = %s\n",
192 argv[0], u_errorName(status));
195 status
[all...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/hash/
H A Dauth.c89 err_status_t status; local
111 status = auth_type_alloc(at, &a, test_case->key_length_octets,
113 if (status)
114 return status;
117 status = auth_init(a, test_case->key);
118 if (status) {
120 return status;
125 status = auth_compute(a, test_case->data,
127 if (status) {
129 return status;
[all...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/rng/
H A Dprng.c55 err_status_t status; local
64 status = random_source(tmp_key, 16);
65 if (status)
66 return status;
72 status = x917_prng.rand((uint8_t *)&x917_prng.state, 16);
73 if (status)
74 return status;
84 err_status_t status; local
92 status = x917_prng_init(x917_prng.rand);
93 if (status)
[all...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/test/
H A Daes_calc.c75 err_status_t status; local
136 status = aes_expand_encryption_key(key, key_len, &exp_key);
137 if (status) {
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...]
/external/chromium_org/third_party/libsrtp/srtp/test/
H A Droc_driver.c65 err_status_t status; local
72 status = roc_test(1 << 18);
73 if (status) {
75 exit(status);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/generic/
H A Dsystemdependent.c65 ULONG status; local
70 if (DosGetProcessorStatus(proc_id, &status))
73 if (status == PROC_ONLINE)
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dgetstring.c316 * \return current context status
322 GLenum status = ctx->ResetStatus; local
328 return status;
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprinit.h195 * It takes a PRIntn argument, which is the exit status code of the
198 NSPR_API(void) PR_ProcessExit(PRIntn status); variable
218 PRStatus status; member in struct:PRCallOnceType
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dtest_utils.cc48 UErrorCode status = U_ZERO_ERROR; local
53 NULL, TRUE, &status);
54 if (!U_SUCCESS(status)) {
56 uchar, u_errorName(status));
75 UErrorCode status = U_ZERO_ERROR;
76 UConverter* conv = ucnv_open(charset_name, &status);
77 // if (!U_SUCCESS(status))
/external/chromium_org/third_party/skia/dm/
H A DDMReporter.cpp19 SkString status; local
20 status.printf("%s%d tasks left", FLAGS_verbose ? "\n" : kSkOverwriteLine, pending);
22 status.appendf(", %d failed", failed);
27 status.appendf("\t%4dM peak", max_rss_mb);
29 status.appendf("\t%5dms\t%s", timeMs, name.c_str());
31 SkDebugf("%s", status.c_str());
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DSkGLContextHelper.cpp119 GrGLenum status; local
120 SK_GL_RET(*this, status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
122 if (GR_GL_FRAMEBUFFER_COMPLETE != status ||
/external/chromium_org/third_party/skia/src/ports/
H A DSkMutex_pthread.h48 SkDEBUGCODE(int status = )pthread_mutex_init(&fMutex, NULL);
50 if (status != 0) {
51 print_pthread_error(status);
52 SkASSERT(0 == status);
59 SkDEBUGCODE(int status = )pthread_mutex_destroy(&fMutex);
61 if (status != 0) {
62 print_pthread_error(status);
63 SkASSERT(0 == status);
72 static void print_pthread_error(int status) { argument
73 switch (status) {
[all...]
/external/chromium_org/third_party/sqlite/src/test/
H A Dcrashtest1.c71 int status; local
93 waitpid(pid, &status, 0);
/external/chromium_org/third_party/webrtc/base/
H A Dposix.cc95 int status; local
96 pid_t child = waitpid(pid, &status, 0);
106 if (!WIFEXITED(status)) {
111 int exit_code = WEXITSTATUS(status);
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-postbuild-fail.py48 status=build_error_code) variable
54 status=build_error_code) variable
59 status=build_error_code) variable
65 status=build_error_code) variable
/external/chromium_org/ui/ozone/platform/dri/
H A Ddri_window_delegate_proxy.cc32 bool status = sender_->Send(new OzoneGpuMsg_DestroyWindowDelegate(widget_));
33 DCHECK(status);
56 bool status =
58 DCHECK(status);
64 bool status = sender_->Send(new OzoneGpuMsg_CreateWindowDelegate(widget_)); local
65 DCHECK(status);
/external/chromium_org/v8/src/base/
H A Dlogging.cc37 int status; local
39 char* demangled = abi::__cxa_demangle(mangled, NULL, &length, &status);
/external/chromium_org/v8/test/mjsunit/harmony/
H A Darray-of.js85 var status = "pass"; variable
86 Object.defineProperty(Array.prototype, "0", {set: function(v) {status = "FAIL 1"}});
88 assertEquals(status, "pass");
90 Object.defineProperty(Bag.prototype, "0", {set: function(v) {status = "FAIL 2"}});
92 assertEquals(status, "pass");
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dclone_test.cc29 int status; local
30 pid_t wait_result = waitpid(clone_pid, &status, __WCLONE);
35 if (wait_result == clone_pid && WIFEXITED(status)) {
/external/deqp/framework/delibs/debase/
H A DdeMath.c37 unsigned int status = 0; local
40 ret = _controlfp_s(&status, 0, 0);
43 switch (status & _MCW_RC)
/external/icu/icu4c/source/common/
H A Dservnotf.cpp39 ICUNotifier::addListener(const EventListener* l, UErrorCode& status) argument
41 if (U_SUCCESS(status)) {
43 status = U_ILLEGAL_ARGUMENT_ERROR;
50 listeners = new UVector(5, status);
60 listeners->addElement((void*)l, status); // cast away const
72 ICUNotifier::removeListener(const EventListener *l, UErrorCode& status) argument
74 if (U_SUCCESS(status)) {
76 status = U_ILLEGAL_ARGUMENT_ERROR;
H A Dustack.cpp14 UStack::UStack(UErrorCode &status) : argument
15 UVector(status)
19 UStack::UStack(int32_t initialCapacity, UErrorCode &status) : argument
20 UVector(initialCapacity, status)
24 UStack::UStack(UObjectDeleter *d, UElementsAreEqual *c, UErrorCode &status) : argument
25 UVector(d, c, status)
29 UStack::UStack(UObjectDeleter *d, UElementsAreEqual *c, int32_t initialCapacity, UErrorCode &status) : argument
30 UVector(d, c, initialCapacity, status)
/external/icu/icu4c/source/i18n/
H A Dfpositer.cpp35 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) { argument
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 i
[all...]
H A Drbt_data.cpp24 TransliterationRuleData::TransliterationRuleData(UErrorCode& status) argument
25 : UMemory(), ruleSet(status), variableNames(status),
28 if (U_FAILURE(status)) {
42 UErrorCode status = U_ZERO_ERROR; local
54 variableNames.put(*(UnicodeString*)e->key.pointer, value, status);
62 status = U_MEMORY_ALLOCATION_ERROR;
68 status = U_MEMORY_ALLOCATION_ERROR;
74 if (U_FAILURE(status)) {

Completed in 3009 milliseconds

<<11121314151617181920>>