Searched refs:failed (Results 1 - 19 of 19) sorted by relevance

/fuchsia/zircon/third_party/ulib/backtrace/
H A Dbtest.c81 int failed; member in struct:bdata
91 int failed; member in struct:sdata
100 int failed; member in struct:symdata
132 const char *want_function, int *failed)
134 if (*failed)
140 *failed = 1;
147 *failed = 1;
153 *failed = 1;
159 *failed = 1;
175 data->failed
131 check(const char *name, int index, const struct info *all, int want_lineno, const char *want_function, int *failed) argument
[all...]
H A Dfileline.c55 int failed; local
62 failed = state->fileline_initialization_failed;
64 failed = backtrace_atomic_load_int (&state->fileline_initialization_failed);
66 if (failed)
68 error_callback (data, "failed to read executable information", -1);
131 failed = 1;
134 if (!failed)
138 failed = 1;
141 if (failed)
H A DMakefile.in580 @failed=0; all=0; xfail=0; xpass=0; skip=0; \
594 failed=`expr $$failed + 1`; \
609 failed=`expr $$failed + 1`; \
626 if test "$$failed" -eq 0; then \
635 banner="$$failed of $$all $$tests failed"; \
638 banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
653 if test "$$failed"
[all...]
/fuchsia/zircon/third_party/ulib/musl/third_party/tre/
H A Dtre-mem.c78 allocated block or NULL if an underlying malloc() failed. */
82 if (mem->failed) {
92 mem->failed = 1;
105 mem->failed = 1;
111 mem->failed = 1;
H A Dtre.h182 int failed; member in struct:tre_mem_struct
197 allocated block or NULL if an underlying malloc() failed. */
201 allocated block or NULL if an underlying malloc() failed. The memory
/fuchsia/zircon/system/ulib/unittest/
H A Dall-tests.cpp72 unittest_printf_critical(" The following test cases failed:\n");
73 test_case_element* failed = failed_test_case_list; local
74 while (failed) {
75 unittest_printf_critical(" %s\n", failed->name);
76 test_case_element* failed_next = failed->failed_next;
77 failed->failed_next = nullptr;
78 failed = failed_next;
/fuchsia/zircon/third_party/ulib/jemalloc/msvc/projects/vc2015/test_threads/
H A Dtest_threads.cpp84 bool failed = leaked > 65536; // in case C++ runtime allocated something (e.g. iostream locale or facet) local
85 printf("\nTest %s!\n", (failed ? "FAILED" : "successful"));
88 return failed ? 1 : 0;
/fuchsia/zircon/system/ulib/fs-test-utils/
H A Dperftest.cpp77 uint32_t failed = 0; member in struct:fs_test_utils::__anon1131::TestStats
129 fprintf(out, "[ FAILED ] %d tests.\n", stats.failed);
178 bool failed = !perftest::RunTest(kTestSuite, test.name.c_str(), test_wrapper, local
180 if (failed) {
185 stats->failed++;
296 return stats.failed == 0 && !error;
/fuchsia/zircon/kernel/include/kernel/
H A Dspinlock.h278 const bool failed = lock->TryAcquire(); local
279 return !failed; // Guard uses true to indicate success.
298 const bool failed = spin_trylock(lock); local
299 return !failed; // Guard uses true to indicate success.
/fuchsia/zircon/system/public/zircon/device/
H A Dramdisk.h44 uint64_t failed; member in struct:ramdisk_blk_counts
81 // Retrieve the number of received, successful, and failed block writes since the last call to
/fuchsia/zircon/scripts/
H A Dbuildall123 echo some projects have failed to build:
/fuchsia/zircon/system/utest/core/handle-info/
H A Dhandle-info.c23 zx_handle_t failed = ZX_HANDLE_INVALID; local
24 ASSERT_EQ(ZX_ERR_INVALID_ARGS, zx_handle_replace(replaced, ZX_RIGHT_SIGNAL, &failed), "");
26 ASSERT_EQ(ZX_HANDLE_INVALID, failed, "");
42 ASSERT_EQ(zx_handle_close(event), ZX_OK, "failed to close the handle");
160 ASSERT_EQ(zx_handle_close(event), ZX_OK, "failed to close original handle");
162 ASSERT_EQ(zx_handle_close(h), ZX_OK, "failed to close replacement handle");
/fuchsia/zircon/system/dev/nand/aml-rawnand/
H A Daml-rawnand.h44 uint64_t failed; member in struct:__anon438::__anon439
H A Daml-rawnand.c314 raw_nand->stats.failed++;
336 raw_nand->stats.failed++;
544 zxlogf(ERROR, "%s: aml_wait_dma_finish failed %d\n",
550 zxlogf(ERROR, "%s: aml_queue_rb failed %d\n", __func__, status);
555 zxlogf(ERROR, "%s: aml_check_ecc_pages failed %d\n",
896 zxlogf(ERROR, "%s: Page0 Read (all copies) failed\n", __func__);
925 zxlogf(ERROR, "raw_nand_test_allocbufs: pdev_get_bti failed (%d)\n",
941 "raw_nand_test_allocbufs: io_buffer_init(data_buffer) failed\n");
952 "raw_nand_test_allocbufs: io_buffer_init(info_buffer) failed\n");
1041 zxlogf(ERROR, "aml_raw_nand_bind: pdev_get_device_info failed\
[all...]
/fuchsia/zircon/third_party/uapp/kilo/
H A Dkilo.c355 /* ioctl() failed. Try to query the terminal itself. */
360 if (retval == -1) goto failed;
363 if (write(ofd,"\x1b[999C\x1b[999B",12) != 12) goto failed;
365 if (retval == -1) goto failed;
382 failed:
/fuchsia/zircon/third_party/ulib/linenoise/
H A Dlinenoise.c328 /* ioctl() failed. Try to query the terminal itself.
337 if (start == -1) goto failed;
340 if (write(ofd,"\x1b[999C",6) != 6) goto failed;
342 if (cols == -1) goto failed;
361 failed:
/fuchsia/zircon/system/dev/block/ramdisk/
H A Dramdisk.c160 // If we are not deferring, then any excess blocks have failed.
161 dev->blk_counts.failed += txn_blocks - blocks;
165 dev->blk_counts.failed += txn_blocks;
/fuchsia/zircon/system/utest/ramdisk/
H A Dramdisk.cpp384 ASSERT_EQ(res, 0, "Background thread failed");
445 ASSERT_EQ(res, 0, "Background thread failed");
1113 // Later (failed) operations
1371 ASSERT_EQ(counts.failed, 2);
1398 ASSERT_EQ(counts.failed, 2);
1441 // Always send a wake-up call; even if we failed to go to sleep.
1533 ASSERT_EQ(res, 0, "Background thread failed");
1561 ASSERT_EQ(res, 0, "Background thread failed");
/fuchsia/zircon/third_party/ulib/musl/ldso/
H A Ddynlink.c957 error("failed to reserve %zu bytes of address space: %d\n",
1475 " %p+%#zx failed: %s",
1949 error("zxr_message_size bootstrap handle %#x failed: %d (%s)",
2284 goto failed;
2295 failed:

Completed in 150 milliseconds