Home
last modified time | relevance | path

Searched refs:set (Results 5451 - 5475 of 8355) sorted by relevance

1...<<211212213214215216217218219220>>...335

/kernel/linux/linux-6.6/drivers/pinctrl/renesas/
H A Dpinctrl-rza1.c441 * @value: output value to set the pin to
570 * rza1_set_bit() - un-locked set/clear a single bit in pin configuration
574 unsigned int bit, bool set) in rza1_set_bit()
579 if (set) in rza1_set_bit()
621 * rza1_pin_set_direction() - set I/O direction on a pin in port mode
723 * set to one. in rza1_pin_mux_single()
841 .set = rza1_gpio_set,
573 rza1_set_bit(struct rza1_port *port, unsigned int reg, unsigned int bit, bool set) rza1_set_bit() argument
/kernel/linux/linux-6.6/drivers/tty/hvc/
H A Dhvsi.c582 /* note that we can only set DTR */
602 printk(KERN_ERR "hvsi%i: couldn't set DTR!\n", hp->index); in hvsi_set_mctrl()
739 printk(KERN_ERR "%s: couldn't set DTR\n", tty->name); in hvsi_open()
1001 unsigned int set, unsigned int clear) in hvsi_tiocmset()
1009 set &= TIOCM_DTR; in hvsi_tiocmset()
1013 new_mctrl = (hp->mctrl & ~clear) | set; in hvsi_tiocmset()
1000 hvsi_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear) hvsi_tiocmset() argument
/kernel/linux/linux-6.6/drivers/tty/
H A Damiserial.c162 /* set a pending Tx Interrupt, transmitter should restart now */ in rs_start()
354 /* set a pending Tx Interrupt, transmitter should restart now */ in check_modem_status()
501 * and set the speed of the serial port in startup()
565 * This routine is called to set the UART divisor registers to match
675 * !!! ignore all characters if CREAD is not set in change_speed()
738 /* set a pending Tx Interrupt, transmitter should restart now */ in rs_flush_chars()
779 /* set a pending Tx Interrupt, transmitter should restart now */ in rs_write()
830 /* set a pending Tx Interrupt, transmitter should restart now */ in rs_send_xchar()
1032 static int rs_tiocmset(struct tty_struct *tty, unsigned int set, in rs_tiocmset() argument
1042 if (set in rs_tiocmset()
[all...]
/kernel/linux/linux-6.6/drivers/usb/serial/
H A Dmxuport.c698 static int mxuport_tiocmset(struct tty_struct *tty, unsigned int set, in mxuport_tiocmset() argument
709 if (set & TIOCM_RTS) in mxuport_tiocmset()
712 if (set & TIOCM_DTR) in mxuport_tiocmset()
H A Ddigi_acceleport.c222 static int digi_tiocmset(struct tty_struct *tty, unsigned int set,
672 /* set baud rate */ in digi_set_termios()
679 /* don't set RTS if using hardware flow control */ in digi_set_termios()
719 /* set parity */ in digi_set_termios()
736 /* set word size */ in digi_set_termios()
760 /* set stop bits */ in digi_set_termios()
775 /* set input flow control */ in digi_set_termios()
803 /* set output flow control */ in digi_set_termios()
823 /* set receive enable/disable */ in digi_set_termios()
871 unsigned int set, unsigne in digi_tiocmset()
870 digi_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear) digi_tiocmset() argument
[all...]
H A Dpl2303.c337 * This is needed due to the looney way its endpoints are set up.
569 * Returns the nearest supported baud rate that can be set directly without
598 * NOTE: If unsupported baud rates are set directly, the PL2303 seems to
721 dev_dbg(&port->dev, "baud set = %u\n", baud); in pl2303_encode_baud_rate()
1000 unsigned int set, unsigned int clear) in pl2303_tiocmset()
1009 if (set & TIOCM_RTS) in pl2303_tiocmset()
1011 if (set & TIOCM_DTR) in pl2303_tiocmset()
999 pl2303_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear) pl2303_tiocmset() argument
/kernel/linux/linux-6.6/kernel/irq/
H A Dchip.c37 * irq_set_chip - set the irq chip for an irq
61 * irq_set_irq_type - set the irq trigger type for an irq
81 * irq_set_handler_data - set irq handler data for an irq
101 * irq_set_msi_desc_off - set MSI descriptor data for an irq at offset
124 * irq_set_msi_desc - set MSI descriptor data for an irq
136 * irq_set_chip_data - set irq chip data for an irq
609 * - Standard level irq (IRQF_ONESHOT is not set) in cond_unmask_irq()
995 * situation where the outermost chip is not yet set in __irq_do_set_handler()
1004 * Bail out if the outer chip is not set up in __irq_do_set_handler()
1037 * hence the need to set th in __irq_do_set_handler()
1098 irq_modify_status(unsigned int irq, unsigned long clr, unsigned long set) irq_modify_status() argument
[all...]
/kernel/linux/linux-6.6/drivers/dma/
H A Ddmatest.c152 .set = dmatest_run_set,
162 .set = dmatest_chan_set,
186 * set, all bytes in the destination buffer has bit 7 cleared.
188 * Bit 6 is set for all bytes which are to be copied by the DMA
189 * engine. Bit 5 is set for all bytes which are to be overwritten by
290 .set = param_set_bool,
967 op = "set"; in dmatest_add_threads()
1153 /* we might be called early to set run=, defer running until all in start_threaded_tests()
/kernel/linux/linux-6.6/drivers/pinctrl/nuvoton/
H A Dpinctrl-wpcm450.c1049 void __iomem *set = NULL; in wpcm450_gpio_register() local
1077 set = pctrl->gpio_base + bank->dataout; in wpcm450_gpio_register()
1083 dat, set, NULL, dirout, NULL, flags); in wpcm450_gpio_register()
/kernel/linux/linux-6.6/drivers/i2c/busses/
H A Di2c-pxa.c289 const char *set; member
292 #define PXA_BIT(m, s, u) { .mask = m, .set = s, .unset = u }
299 const char *str = val & bits->mask ? bits->set : bits->unset; in decode_bits()
579 /* set control register values */ in i2c_pxa_do_reset()
822 * Note for HS mode, set ICR [GPIOEN].
868 * If ISR_ALD is set, we lost arbitration. in i2c_pxa_irq_txempty()
875 i2c_pxa_scream_blue_murder(i2c, "ALD set"); in i2c_pxa_irq_txempty()
1500 pr_info("i2c: <%s> set rate to %ld\n", in i2c_pxa_probe()
1503 pr_warn("i2c: <%s> clock rate not set\n", in i2c_pxa_probe()
/kernel/linux/linux-6.6/mm/
H A Dzswap.c91 .set = zswap_enabled_param_set,
101 .set = zswap_compressor_param_set,
112 .set = zswap_zpool_param_set,
722 * need both params to be set correctly before trying to in zswap_pool_create()
917 pr_err("can't set param, initialization failed\n"); in __zswap_param_set()
1016 /* if this is load-time (pre-init) param setting, only set param. */ in zswap_enabled_param_set()
/test/testfwk/xdevice/src/xdevice/_core/report/
H A Dresult_reporter.py371 LOG.error("parse test time error, set it to 0.0")
486 child.set(ReportConstant.module_name, module_name)
493 child.set(ReportConstant.ignored, "%s" % ignored)
509 # set test suites element attributes and children
522 child.set(ReportConstant.unavailable, "0")
/test/testfwk/xdevice/src/xdevice/_core/executor/
H A Dconcurrent.py198 # set execute state
290 # set product_info to self.task
448 testsuites_element.set(ReportConstant.tests,
460 target_testsuite_element.set(ReportConstant.tests,
464 testsuites_element.set(ReportConstant.tests, str(inherited_test))
609 # set execute state
655 # set product_info to self.task
/test/xts/acts/commonlibrary/ets_utils/util_lib_standard/entry/src/ohosTest/js/test/
H A Dutil.test.js1036 * @tc.desc: Returns `true` if ignore BOM flag is set, and `false` otherwise.
1050 * @tc.desc: Returns `true` if ignore BOM flag is set, and `false` otherwise.
1064 * @tc.desc: Returns `true` if ignore BOM flag is set, and `false` otherwise.
1078 * @tc.desc: Returns `true` if ignore BOM flag is set, and `false` otherwise.
1092 * @tc.desc: Returns `true` if ignore BOM flag is set, and `false` otherwise.
1106 * @tc.desc: Returns `true` if ignore BOM flag is set, and `false` otherwise.
1120 * @tc.desc: Returns `true` if ignore BOM flag is set, and `false` otherwise.
1134 * @tc.desc: Returns `true` if ignore BOM flag is set, and `false` otherwise.
8835 Reflect.set(This, 'buffer', 'intData');
8854 Reflect.set(Thi
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_kit_service_test/
H A Dbms_bundle_data_mgr_test.cpp3747 std::set<PreScanInfo> scanInfos; in HWTEST_F()
3760 std::set<PreScanInfo> scanInfos; in HWTEST_F()
3773 std::set<PreScanInfo> scanInfos; in HWTEST_F()
3788 std::set<PreScanInfo> scanInfos; in HWTEST_F()
3801 std::set<PreBundleConfigInfo> scanInfos; in HWTEST_F()
3814 std::set<PreBundleConfigInfo> scanInfos; in HWTEST_F()
3827 std::set<PreBundleConfigInfo> scanInfos; in HWTEST_F()
3842 std::set<PreBundleConfigInfo> scanInfos; in HWTEST_F()
3855 std::set<PreScanInfo> scanInfos; in HWTEST_F()
3868 std::set<PreBundleConfigInf in HWTEST_F()
[all...]
/applications/standard/calendardata/hvigor/
H A Dhvigor-wrapper.js190 set: e => {
507 e["set" + (r ? "" : "UTC")+t](n)
852 return e.set(n, r), r
1434 }, set: function (e) {
1440 }, set: function (e) {
1448 }, set: function (e) {
1465 }, set: function (e) {
2771 ui.set("console", yt), ui.set("stdout", Ft), ui.set("stder
[all...]
/foundation/CastEngine/castengine_cast_plus_stream/src/rtsp/src/
H A Drtsp_package.cpp171 std::set<int>::iterator featureIndex = negParam.GetFeatureSet().begin(); in EncapFeature()
172 std::set<int>::iterator endIterator = negParam.GetFeatureSet().end(); in EncapFeature()
175 CLOGI("Encapsulate feature set %{public}s", featureStr.c_str()); in EncapFeature()
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/rtsp/src/
H A Drtsp_package.cpp171 std::set<int>::iterator featureIndex = negParam.GetFeatureSet().begin(); in EncapFeature()
172 std::set<int>::iterator endIterator = negParam.GetFeatureSet().end(); in EncapFeature()
175 CLOGI("Encapsulate feature set %{public}s", featureStr.c_str()); in EncapFeature()
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/
H A Dui_node.h549 const std::set<int32_t>& activeItems, const std::set<int32_t>& cachedItems, int32_t baseIndex) in DoSetActiveChildRange()
/foundation/arkui/ace_engine/adapter/ohos/entrance/
H A Ddialog_container.cpp499 const std::set<std::string>& callbacks) in ShowDialog()
520 const std::set<std::string>& callbacks) in ShowDialog()
/foundation/arkui/ace_engine/frameworks/core/components_ng/property/
H A Daccessibility_property.cpp302 static const std::set<std::string> TAGS_SUBTREE_COMPONENT = {
371 static const std::set<std::string> TAGS_FOCUSABLE = {
/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_ble_central_manager_server.cpp106 // if bleScanFilter been set empty when stopped scan, we need refuse callback instead of filter pass
319 std::set<int32_t> BluetoothBleCentralManagerServer::proxyPids_;
321 bool BluetoothBleCentralManagerServer::FreezeByRss(std::set<int> pidSet, bool isProxy) in FreezeByRss()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/default_app/
H A Ddefault_app_mgr.cpp65 const std::set<std::string> APP_TYPES_VALUE[] = {
81 const std::set<std::string> supportAppTypes = {BROWSER, IMAGE, AUDIO, VIDEO, PDF, WORD, EXCEL, PPT, EMAIL};
252 // set any success, clear failed records in SetDefaultApplication()
279 // set default app in SetDefaultApplicationInternal()
367 LOG_I(BMS_TAG_DEFAULT, "set default application to preset, type : %{public}s", item.first.c_str()); in HandleUninstallBundle()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_data_mgr_test/
H A Dbms_extension_data_mgr_test.cpp696 std::set<std::string> uninstallBundles; in HWTEST_F()
810 std::set<std::string> uninstallBundles; in HWTEST_F()
/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/audio_encoder/aac/
H A Dffmpeg_aac_encoder_plugin.cpp20 #include <set>
56 static std::set<AudioSampleFormat> supportedSampleFormats = {
575 MEDIA_LOG_E("no MEDIA_BITRATE, set to 32k"); in GetMetaData()

Completed in 70 milliseconds

1...<<211212213214215216217218219220>>...335