Searched refs:result (Results 201 - 225 of 254) sorted by relevance

1234567891011

/fuchsia/zircon/kernel/object/
H A Dprocess_dispatcher.cpp42 // Ensure that the last bit of the result is not zero, and make sure
43 // we don't lose any base_value bits or make the result negative
71 zx_status_t result = process->Initialize();
72 if (result != ZX_OK)
73 return result;
79 result = VmAddressRegionDispatcher::Create(vmar, ARCH_MMU_FLAG_PERM_USER,
82 if (result != ZX_OK) {
84 return result;
/fuchsia/zircon/system/dev/ethernet/asix-88772b/
H A Dasix-88772b.c600 zx_status_t result = device_get_protocol(device, ZX_PROTOCOL_USB, &usb); local
601 if (result != ZX_OK) {
602 return result;
607 result = usb_desc_iter_init(&usb, &iter);
608 if (result < 0) return result;
/fuchsia/zircon/system/uapp/disk-pave/
H A Dpave-lib.cpp505 // or may result in data loss.
643 ssize_t result = ioctl_block_fvm_extend(parts[p].new_part.get(), &request); local
644 if (result < 0) {
646 zx_status_get_string(static_cast<zx_status_t>(result)));
697 ssize_t result = ioctl_block_fvm_query(fvm_fd.get(), &info); local
698 if (result < 0) {
699 zx_status_t status = static_cast<zx_status_t>(result);
/fuchsia/zircon/system/ulib/fdio/
H A Dunistd.c200 uint32_t result = 0; local
203 result |= ZX_FS_RIGHT_READABLE;
206 result |= ZX_FS_RIGHT_WRITABLE;
209 result |= ZX_FS_RIGHT_READABLE | ZX_FS_RIGHT_WRITABLE;
214 result |= ZX_FS_FLAG_DESCRIBE;
217 result |= (flags & ZXIO_FS_MASK);
218 return result;
222 uint32_t result = 0; local
225 result |= O_RDWR;
227 result |
[all...]
/fuchsia/zircon/kernel/lib/heap/cmpctmalloc/
H A Dcmpctmalloc.c950 void* result = local
953 check_free_fill(result, size);
954 memset(result, ALLOC_FILL, size);
955 memset(((char*)result) + size, PADDING_FILL,
959 return result;
/fuchsia/zircon/system/ulib/intel-hda/codec-utils/
H A Dstream-base.cpp263 resp.result = ZX_OK;
268 // Something went fatally wrong when trying to send the result back to the
531 resp.result = res;
837 out_resp->result = (illegal_mute || illegal_agc || illegal_gain)
868 out_resp->result = ZX_OK;
874 out_resp->result = ZX_ERR_NOT_FOUND;
/fuchsia/zircon/system/dev/gpio/aml-axg-gpio/
H A Daml-axg-gpio.c88 static zx_status_t aml_pin_to_block(aml_gpio_t* gpio, const uint32_t pin, aml_gpio_block_t** result) { argument
89 ZX_DEBUG_ASSERT(result);
95 *result = gpio_block;
/fuchsia/zircon/system/ulib/audio-utils/
H A Daudio-device-stream.cpp79 return (res != ZX_OK) ? res : resp->result;
541 if ((res == ZX_OK) && (resp.result != ZX_OK))
542 res = resp.result;
/fuchsia/zircon/system/ulib/gpt/
H A Dgpt.c606 int result = gpt_device_init(fd, info.block_size, info.block_count, local
609 if (result < 0) {
610 return result;
/fuchsia/zircon/system/ulib/hid-parser/
H A Dparser.cpp18 uint32_t result = 0u; local
21 result |= twobit << (2 * ix);
24 return result;
/fuchsia/zircon/system/ulib/inet6/
H A Dinet6.c157 int result = -1; local
172 result = 0;
177 return result;
/fuchsia/zircon/system/utest/fbl/
H A Dref_ptr_tests.cpp302 Result result() const { return result_; } function in class:__anon1349::upcasting::OverloadTestHelper
542 EXPECT_EQ(OverloadTestHelper::Result::ClassA, helper.result());
552 EXPECT_EQ(OverloadTestHelper::Result::ClassA, helper.result());
H A Dunique_ptr_tests.cpp407 Result result() const { return result_; } function in class:upcasting::OverloadTestHelper
560 EXPECT_EQ(OverloadTestHelper::Result::ClassA, helper.result());
H A Dvector_tests.cpp133 void* result = DefaultAllocatorTraits::Allocate(size); local
139 if (result) {
140 memset(result, 'f', size);
142 return result;
/fuchsia/zircon/system/utest/fs-test-utils/
H A Dfixture_test.cpp24 ssize_t result = ioctl_block_get_info(fd.get(), blk_info); local
25 if (result < 0) {
26 return static_cast<zx_status_t>(result);
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/err/
H A Derr.c487 const uint32_t *result = bsearch(&search_key, values, num_values, local
489 if (result == NULL) {
493 return &string_data[(*result) & 0x7fff];
664 // concatenates them and sets the result as the data on the most recent
/fuchsia/zircon/system/dev/ethernet/asix-88179/
H A Dasix-88179.c890 zx_status_t result = device_get_protocol(device, ZX_PROTOCOL_USB, &usb); local
891 if (result != ZX_OK) {
892 return result;
897 result = usb_desc_iter_init(&usb, &iter);
898 if (result < 0) return result;
/fuchsia/zircon/third_party/uapp/dash/src/
H A Dexpand.c449 * evaluate, place result in (backed up) result, adjust string position.
458 intmax_t result; local
501 result = arith(p + 1);
504 len = cvtnum(result);
1224 * Add the result of glob(3) to the list.
1718 int result; local
1726 result = patmatch(stackblock(), val);
1728 return result;
/fuchsia/zircon/system/dev/ethernet/intel-ethernet/
H A Die.c196 static zx_status_t phy_read(ethdev_t* eth, uint8_t phyadd, uint8_t regadd, uint16_t* result) { argument
203 *result = IE_MDIC_GET_DATA(mdic);
/fuchsia/zircon/system/ulib/perftest/
H A Drunner.cpp125 bool result = test_func(this); local
133 if (!result) {
/fuchsia/zircon/system/ulib/trace-engine/
H A Dengine.cpp454 bool result = trace_context_is_category_enabled(context, category_literal);
456 return result;
/fuchsia/zircon/third_party/ulib/jemalloc/src/
H A Dutil.c58 * unused result in the widest plausible type to avoid compiler
61 UNUSED long result = syscall(SYS_write, STDERR_FILENO, s, strlen(s)); local
63 UNUSED ssize_t result = write(STDERR_FILENO, s, strlen(s));
/fuchsia/zircon/system/dev/block/sdhci/
H A Dsdhci.c349 uint32_t result = base_clock / (2 * target_rate); local
350 if (result * target_rate * 2 < base_clock)
351 result++;
353 return result;
/fuchsia/zircon/system/dev/usb/dwc2/
H A Ddwc2.c477 dwc_usb_transfer_request_t* result = NULL; local
485 result = calloc(1, sizeof(*result));
488 result = list_remove_head_type(&dwc->free_reqs,
491 memset(result, 0, sizeof(*result));
498 return result;
/fuchsia/zircon/system/host/zbi/
H A Dzbi.cpp417 auto result = func(__VA_ARGS__); \
418 if (LZ4F_isError(result)) { \
419 fprintf(stderr, "%s: %s\n", #func, LZ4F_getErrorName(result)); \
422 return result; \
660 FileContents result; local
661 result.mapped_ = map;
662 result.exact_size_ = size;
663 result.mapped_size_ = (size + pagesize - 1) & -pagesize;
664 return result;
1775 --complete=ARCH, -B ARCH verify result i
[all...]

Completed in 306 milliseconds

1234567891011