Home
last modified time | relevance | path

Searched refs:ares (Results 1 – 25 of 64) sorted by relevance

123

/OK3568_Linux_fs/kernel/drivers/acpi/
H A Dresource.c105 bool acpi_dev_resource_memory(struct acpi_resource *ares, struct resource *res) in acpi_dev_resource_memory() argument
111 switch (ares->type) { in acpi_dev_resource_memory()
113 memory24 = &ares->data.memory24; in acpi_dev_resource_memory()
119 memory32 = &ares->data.memory32; in acpi_dev_resource_memory()
125 fixed_memory32 = &ares->data.fixed_memory32; in acpi_dev_resource_memory()
178 bool acpi_dev_resource_io(struct acpi_resource *ares, struct resource *res) in acpi_dev_resource_io() argument
183 switch (ares->type) { in acpi_dev_resource_io()
185 io = &ares->data.io; in acpi_dev_resource_io()
191 fixed_io = &ares->data.fixed_io; in acpi_dev_resource_io()
288 bool acpi_dev_resource_address_space(struct acpi_resource *ares, in acpi_dev_resource_address_space() argument
[all …]
H A Devged.c68 static acpi_status acpi_ged_request_interrupt(struct acpi_resource *ares, in acpi_ged_request_interrupt() argument
80 struct acpi_resource_irq *p = &ares->data.irq; in acpi_ged_request_interrupt()
81 struct acpi_resource_extended_irq *pext = &ares->data.extended_irq; in acpi_ged_request_interrupt()
85 if (ares->type == ACPI_RESOURCE_TYPE_END_TAG) in acpi_ged_request_interrupt()
88 if (!acpi_dev_resource_interrupt(ares, 0, &r)) { in acpi_ged_request_interrupt()
92 if (ares->type == ACPI_RESOURCE_TYPE_IRQ) { in acpi_ged_request_interrupt()
H A Dirq.c178 static acpi_status acpi_irq_parse_one_cb(struct acpi_resource *ares, in acpi_irq_parse_one_cb() argument
186 switch (ares->type) { in acpi_irq_parse_one_cb()
188 irq = &ares->data.irq; in acpi_irq_parse_one_cb()
199 eirq = &ares->data.extended_irq; in acpi_irq_parse_one_cb()
H A Dacpi_apd.c63 static int misc_check_res(struct acpi_resource *ares, void *data) in misc_check_res() argument
67 return !acpi_dev_resource_memory(ares, &res); in misc_check_res()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/c-ares/c-ares/
H A DCVE-2022-4904.patch24 Upstream-Status: Backport [https://github.com/c-ares/c-ares/commit/9903253c347f9e0bffd285ae3829aef2…
29 test/ares-test-init.cc | 2 ++
54 diff --git a/test/ares-test-init.cc b/test/ares-test-init.cc
56 --- a/test/ares-test-init.cc
57 +++ b/test/ares-test-init.cc
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/c-ares/
H A Dc-ares_1.18.1.bb2 SUMMARY = "c-ares is a C library that resolves names asynchronously."
3 HOMEPAGE = "http://daniel.haxx.se/projects/c-ares/"
8 SRC_URI = "git://github.com/c-ares/c-ares.git;branch=main;protocol=https \
/OK3568_Linux_fs/kernel/drivers/i2c/
H A Di2c-core-acpi.c55 bool i2c_acpi_get_i2c_resource(struct acpi_resource *ares, in i2c_acpi_get_i2c_resource() argument
60 if (ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS) in i2c_acpi_get_i2c_resource()
63 sb = &ares->data.i2c_serial_bus; in i2c_acpi_get_i2c_resource()
72 static int i2c_acpi_fill_info(struct acpi_resource *ares, void *data) in i2c_acpi_fill_info() argument
79 if (info->addr || !i2c_acpi_get_i2c_resource(ares, &sb)) in i2c_acpi_fill_info()
136 static int i2c_acpi_add_resource(struct acpi_resource *ares, void *data) in i2c_acpi_add_resource() argument
141 if (*irq <= 0 && acpi_dev_resource_interrupt(ares, 0, &r)) in i2c_acpi_add_resource()
589 struct acpi_resource *ares; in i2c_acpi_space_handler() local
595 ret = acpi_buffer_to_resource(info->connection, info->length, &ares); in i2c_acpi_space_handler()
605 if (!value64 || !i2c_acpi_get_i2c_resource(ares, &sb)) { in i2c_acpi_space_handler()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpio/
H A Dgpiolib-acpi.c154 bool acpi_gpio_get_irq_resource(struct acpi_resource *ares, in acpi_gpio_get_irq_resource() argument
159 if (ares->type != ACPI_RESOURCE_TYPE_GPIO) in acpi_gpio_get_irq_resource()
162 gpio = &ares->data.gpio; in acpi_gpio_get_irq_resource()
260 static acpi_status acpi_gpiochip_alloc_event(struct acpi_resource *ares, in acpi_gpiochip_alloc_event() argument
272 if (!acpi_gpio_get_irq_resource(ares, &agpio)) in acpi_gpiochip_alloc_event()
642 static int acpi_populate_gpio_lookup(struct acpi_resource *ares, void *data) in acpi_populate_gpio_lookup() argument
646 if (ares->type != ACPI_RESOURCE_TYPE_GPIO) in acpi_populate_gpio_lookup()
650 const struct acpi_resource_gpio *agpio = &ares->data.gpio; in acpi_populate_gpio_lookup()
1000 struct acpi_resource *ares; in acpi_gpio_adr_space_handler() local
1007 achip->conn_info.length, &ares); in acpi_gpio_adr_space_handler()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/curl/
H A Dcurl_7.82.0.bb58 # 'ares' and 'threaded-resolver' are mutually exclusive
59 PACKAGECONFIG[ares] = "--enable-ares,--disable-ares,c-ares,,,threaded-resolver"
87 PACKAGECONFIG[threaded-resolver] = "--enable-threaded-resolver,--disable-threaded-resolver,,,,ares"
/OK3568_Linux_fs/kernel/drivers/irqchip/
H A Dqcom-irq-combiner.c145 static acpi_status count_registers_cb(struct acpi_resource *ares, void *context) in count_registers_cb() argument
149 if (ares->type == ACPI_RESOURCE_TYPE_GENERIC_REGISTER) in count_registers_cb()
176 static acpi_status get_registers_cb(struct acpi_resource *ares, void *context) in get_registers_cb() argument
183 if (ares->type != ACPI_RESOURCE_TYPE_GENERIC_REGISTER) in get_registers_cb()
186 reg = &ares->data.generic_reg; in get_registers_cb()
/OK3568_Linux_fs/buildroot/package/c-ares/
H A DConfig.in2 bool "c-ares"
6 http://c-ares.haxx.se/
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/nodejs/nodejs/
H A Dsystem-c-ares.patch1 keep nodejs compatible with c-ares 1.17.1
3 Upstream-Status: Inappropriate [c-ares specific]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/nodejs/
H A Dnodejs_16.19.1.bb8 DEPENDS:append:class-native = " c-ares-native"
25 file://system-c-ares.patch \
65 PACKAGECONFIG ??= "ares brotli icu zlib"
67 PACKAGECONFIG[ares] = "--shared-cares,,c-ares"
94 if 'ares' in d.getVar('PACKAGECONFIG'):
/OK3568_Linux_fs/buildroot/package/resiprocate/
H A Dresiprocate.mk18 RESIPROCATE_DEPENDENCIES = c-ares
19 RESIPROCATE_CONF_OPTS = -with-c-ares \
/OK3568_Linux_fs/kernel/include/linux/
H A Dacpi.h466 bool acpi_dev_resource_memory(struct acpi_resource *ares, struct resource *res);
467 bool acpi_dev_resource_io(struct acpi_resource *ares, struct resource *res);
468 bool acpi_dev_resource_address_space(struct acpi_resource *ares,
470 bool acpi_dev_resource_ext_address_space(struct acpi_resource *ares,
474 bool acpi_dev_resource_interrupt(struct acpi_resource *ares, int index,
483 int acpi_dev_filter_resource_type(struct acpi_resource *ares,
486 static inline int acpi_dev_filter_resource_type_cb(struct acpi_resource *ares, in acpi_dev_filter_resource_type_cb() argument
489 return acpi_dev_filter_resource_type(ares, (unsigned long)arg); in acpi_dev_filter_resource_type_cb()
1089 bool acpi_gpio_get_irq_resource(struct acpi_resource *ares,
1093 static inline bool acpi_gpio_get_irq_resource(struct acpi_resource *ares, in acpi_gpio_get_irq_resource() argument
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/wireshark/
H A Dwireshark_3.4.12.bb7 DEPENDS = "pcre expat glib-2.0 glib-2.0-native libgcrypt libgpg-error libxml2 bison-native c-ares"
51 PACKAGECONFIG[c-ares] = "-DENABLE_CARES=ON,-DENABLE_CARES=OFF, c-ares"
/OK3568_Linux_fs/buildroot/package/grpc/
H A Dgrpc.mk16 GRPC_DEPENDENCIES = c-ares host-grpc libabseil-cpp openssl protobuf re2 zlib
17 HOST_GRPC_DEPENDENCIES = host-c-ares host-libabseil-cpp host-openssl host-protobuf \
/OK3568_Linux_fs/buildroot/package/libcurl/
H A Dlibcurl.mk94 LIBCURL_DEPENDENCIES += c-ares
95 LIBCURL_CONF_OPTS += --enable-ares
97 LIBCURL_CONF_OPTS += --disable-ares
/OK3568_Linux_fs/kernel/drivers/platform/x86/
H A Dsurface3_power.c385 struct acpi_resource *ares; in mshw0011_space_handler() local
390 ret = acpi_buffer_to_resource(info->connection, info->length, &ares); in mshw0011_space_handler()
394 if (!value64 || ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS) { in mshw0011_space_handler()
399 sb = &ares->data.i2c_serial_bus; in mshw0011_space_handler()
450 ACPI_FREE(ares); in mshw0011_space_handler()
H A Dintel_cht_int33fe_common.c19 static int cht_int33fe_i2c_res_filter(struct acpi_resource *ares, void *data) in cht_int33fe_i2c_res_filter() argument
24 if (i2c_acpi_get_i2c_resource(ares, &sb)) in cht_int33fe_i2c_res_filter()
H A Di2c-multi-instantiate.c34 static int i2c_multi_inst_count(struct acpi_resource *ares, void *data) in i2c_multi_inst_count() argument
39 if (i2c_acpi_get_i2c_resource(ares, &sb)) in i2c_multi_inst_count()
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/wget/
H A Dwget.inc32 PACKAGECONFIG[ares] = "--with-cares,--without-cares,c-ares"
/OK3568_Linux_fs/external/security/librkcrypto/test/c_mode/
H A Daes_gcm.c66 unsigned int mres, ares; member
758 ctx->ares = 0;
835 n = ctx->ares;
844 ctx->ares = n;
868 ctx->ares = n;
898 if (ctx->ares) {
901 ctx->ares = 0;
1050 if (ctx->ares) {
1053 ctx->ares = 0;
1208 if (ctx->ares) {
[all …]
H A Dsm4_gcm.c60 unsigned int mres, ares; member
752 ctx->ares = 0;
829 n = ctx->ares;
838 ctx->ares = n;
862 ctx->ares = n;
892 if (ctx->ares) {
895 ctx->ares = 0;
1044 if (ctx->ares) {
1047 ctx->ares = 0;
1201 if (ctx->ares) {
[all …]
/OK3568_Linux_fs/kernel/drivers/iio/imu/inv_mpu6050/
H A Dinv_mpu_acpi.c84 static int acpi_i2c_check_resource(struct acpi_resource *ares, void *data) in acpi_i2c_check_resource() argument
89 if (i2c_acpi_get_i2c_resource(ares, &sb)) { in acpi_i2c_check_resource()

123