Home
last modified time | relevance | path

Searched refs:combo (Results 1 – 25 of 70) sorted by relevance

123

/OK3568_Linux_fs/external/xserver/
H A Dmeson_options.txt1 option('xorg', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
5 option('xwayland', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
7 option('glamor', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
9 option('xwayland_eglstream', type: 'combo', choices: ['true', 'false', 'auto'],
11 option('xnest', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
17 option('xwin', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
35 option('ipv6', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto')
58 option('int10', type: 'combo', choices: ['stub', 'x86emu', 'vm86', 'auto', 'false'],
66 option('hal', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
68 option('systemd_logind', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-connectivity/connman/connman-gnome/
H A D0001-Port-to-Gtk3.patch192 - combo = gtk_combo_box_new_text();
193 - gtk_combo_box_append_text(GTK_COMBO_BOX(combo), "DHCP");
194 - gtk_combo_box_append_text(GTK_COMBO_BOX(combo), "MANUAL");
195 + combo = gtk_combo_box_text_new();
196 + gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combo), "DHCP");
197 + gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(combo), "MANUAL");
198 gtk_combo_box_set_row_separator_func(GTK_COMBO_BOX(combo),
200 gtk_table_attach_defaults(GTK_TABLE(table), combo, 2, 4, 0, 1);
203 gtk_combo_box_set_active(GTK_COMBO_BOX(combo), 0);
212 gtk_combo_box_set_active(GTK_COMBO_BOX(combo), 1);
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/phy/
H A Dbrcm,stingray-usb-phy.txt5 - "brcm,sr-usb-combo-phy" is combo PHY has two PHYs, one SS and one HS.
9 - Must be 1 for brcm,sr-usb-combo-phy as it expects one argument to indicate
17 compatible = "brcm,sr-usb-combo-phy";
23 compatible = "brcm,sr-usb-combo-phy";
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/
H A Dgitignore55 !/build/core/combo/
56 !/build/core/combo/include/
57 !/build/core/combo/include/arch/
58 !/build/core/combo/include/arch/linux-*/
59 !/build/core/combo/include/arch/linux-*/AndroidConfig.h
H A Dmkbootimg.mk16 CFLAGS += -include $(SRCDIR)/build/core/combo/include/arch/$(android_arch)/AndroidConfig.h
/OK3568_Linux_fs/buildroot/package/armbian-firmware/
H A DConfig.in14 Firmware files for AP6212 WiFi/BT combo chip.
19 Firmware files for AP6256 WiFi/BT combo chip.
24 Firmware files for AP6255 WiFi/BT combo chip.
29 Firmware files for Realtek 8822CS SDIO combo chip.
/OK3568_Linux_fs/kernel/drivers/media/pci/ivtv/
H A Divtv-irq.c921 u32 combo; in ivtv_irq_handler() local
930 combo = ~itv->irqmask & stat; in ivtv_irq_handler()
933 if (combo) write_reg(combo, IVTV_REG_IRQSTATUS); in ivtv_irq_handler()
935 if (0 == combo) { in ivtv_irq_handler()
959 if (combo & ~0xff6d0400) in ivtv_irq_handler()
960 IVTV_DEBUG_HI_IRQ("======= valid IRQ bits: 0x%08x ======\n", combo); in ivtv_irq_handler()
962 if (combo & IVTV_IRQ_DEC_DMA_COMPLETE) { in ivtv_irq_handler()
966 if (combo & IVTV_IRQ_DMA_READ) { in ivtv_irq_handler()
970 if (combo & IVTV_IRQ_ENC_DMA_COMPLETE) { in ivtv_irq_handler()
974 if (combo & IVTV_IRQ_ENC_PIO_COMPLETE) { in ivtv_irq_handler()
[all …]
/OK3568_Linux_fs/kernel/drivers/video/rockchip/mpp/
H A DKconfig21 rockchip mpp rkv combo decoder and hevc decoder.
26 rockchip mpp rkv combo decoder v2.
31 rockchip mpp rkv combo encoder.
36 rockchip mpp rkv combo encoder v2.
/OK3568_Linux_fs/yocto/poky/scripts/
H A Dcombo-layer.conf.example1 # combo-layer example configuration file
22 # the relative dir within the combo repo to put the component files
60 # patch from upstream, and then apply the modified patch to the combo
64 # hook = combo-layer-hook-default.sh
70 # If provided, truncate imported history during "combo-layer --history
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/usb/
H A Dhisilicon,histb-xhci.txt23 "combo": for combo phy
44 phy-names = "inno", "combo";
/OK3568_Linux_fs/external/linux-rga/
H A Dmeson_options.txt1 option('libdrm', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto',
3 option('librga_demo', type: 'combo', choices: ['true', 'false', 'auto'], value: 'false',
/OK3568_Linux_fs/kernel/drivers/net/wireless/ath/wil6210/
H A Dfw_inc.c203 const struct wil_fw_concurrency_combo *combo; in fw_handle_concurrency() local
216 combo = rec->combos; in fw_handle_concurrency()
218 if (remain < sizeof(*combo)) in fw_handle_concurrency()
220 remain -= sizeof(*combo); in fw_handle_concurrency()
221 limit = combo->limits; in fw_handle_concurrency()
222 lsize = combo->n_limits * sizeof(*limit); in fw_handle_concurrency()
226 limit += combo->n_limits; in fw_handle_concurrency()
227 combo = (struct wil_fw_concurrency_combo *)limit; in fw_handle_concurrency()
H A Dcfg80211.c2702 const struct wil_fw_concurrency_combo *combo; in wil_cfg80211_iface_combinations_from_fw() local
2713 combo = conc->combos; in wil_cfg80211_iface_combinations_from_fw()
2716 total_limits += combo->n_limits; in wil_cfg80211_iface_combinations_from_fw()
2717 limit = combo->limits + combo->n_limits; in wil_cfg80211_iface_combinations_from_fw()
2718 combo = (struct wil_fw_concurrency_combo *)limit; in wil_cfg80211_iface_combinations_from_fw()
2729 combo = conc->combos; in wil_cfg80211_iface_combinations_from_fw()
2731 iface_combinations[i].max_interfaces = combo->max_interfaces; in wil_cfg80211_iface_combinations_from_fw()
2733 combo->n_diff_channels; in wil_cfg80211_iface_combinations_from_fw()
2735 combo->same_bi; in wil_cfg80211_iface_combinations_from_fw()
2736 iface_combinations[i].n_limits = combo->n_limits; in wil_cfg80211_iface_combinations_from_fw()
[all …]
/OK3568_Linux_fs/external/libmali/
H A Dmeson_options.txt1 option('arch', type: 'combo', choices: ['auto', 'arm', 'armv7l', 'armhf', 'arm32', 'armv8', 'arm64'…
23 option('optimize-level', type: 'combo', choices: ['O0', 'O1', 'O2', 'O3', 'Os', 'Ofast', 'Og'], val…
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/broadcom/stingray/
H A Dstingray-usb.dtsi18 compatible = "brcm,sr-usb-combo-phy";
45 compatible = "brcm,sr-usb-combo-phy";
/OK3568_Linux_fs/u-boot/drivers/phy/
H A DKconfig70 bool "Support Rockchip NANENG combo PHY Driver"
74 Enable this to support the Rockchip NANENG combo PHY.
117 combo PHY with Samsung IP block.
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/build/
H A D0001-Riscv-Add-risc-v-Android-config-header.patch9 create mode 100644 core/combo/include/arch/linux-riscv64/AndroidConfig.h
11 diff --git a/core/combo/include/arch/linux-riscv64/AndroidConfig.h b/core/combo/include/arch/linux-…
15 +++ b/core/combo/include/arch/linux-riscv64/AndroidConfig.h
/OK3568_Linux_fs/yocto/meta-clang/recipes-multimedia/gstreamer/
H A Dgstreamer1.0-libav_%.bbappend3 …:toolchain-clang:mips64 = " file://0001-Disable-fpu-using-code-when-using-clang-mips64-combo.patch"
/OK3568_Linux_fs/kernel/drivers/phy/intel/
H A DMakefile3 obj-$(CONFIG_PHY_INTEL_LGM_COMBO) += phy-intel-lgm-combo.o
/OK3568_Linux_fs/buildroot/package/ux500-firmware/
H A DConfig.in5 binary blobs) for the Azurewave AW-NH580 combo module (wifi,
/OK3568_Linux_fs/kernel/drivers/iio/imu/
H A DKconfig65 Say yes here to build support for the NXP FXOS8700 m+g combo
77 Say yes here to build support for the NXP FXOS8700 m+g combo
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Decx-common.dtsi217 combophy0: combo-phy@fff58000 {
224 combophy5: combo-phy@fff5d000 {
/OK3568_Linux_fs/yocto/meta-openembedded/meta-gnome/recipes-gnome/gnome-disk-utility/
H A Dgnome-disk-utility_42.0.bb26 # As soon as elogind is of interest this needs rework: meson option is combo
/OK3568_Linux_fs/kernel/drivers/misc/ti-st/
H A DKconfig14 BT / FM and GPS combo chips. This enables protocol drivers
/OK3568_Linux_fs/u-boot/arch/arm/mach-sti/
H A DKconfig16 - On-Board USB combo WiFi/Bluetooth RTL8723BU

123