Home
last modified time | relevance | path

Searched refs:scan (Results 1 – 25 of 661) sorted by relevance

12345678910>>...27

/openbmc/linux/drivers/net/wireless/st/cw1200/
H A Dscan.c31 scan->type, scan->num_channels, scan->flags); in cw1200_scan_start()
109 priv->scan.curr = priv->scan.begin; in cw1200_hw_scan()
136 priv->scan.begin != priv->scan.end); in cw1200_scan_work()
164 if (!priv->scan.req || (priv->scan.curr == priv->scan.end)) { in cw1200_scan_work()
215 scan.num_ssids = priv->scan.n_ssids; in cw1200_scan_work()
216 scan.ssids = &priv->scan.ssids[0]; in cw1200_scan_work()
217 scan.num_channels = it - priv->scan.curr; in cw1200_scan_work()
228 scan.ch = kcalloc(it - priv->scan.curr, in cw1200_scan_work()
236 scan.ch[i].number = priv->scan.curr[i]->hw_value; in cw1200_scan_work()
261 priv->scan.curr = priv->scan.end; in cw1200_scan_work()
[all …]
/openbmc/linux/Documentation/scheduler/
H A Dsched-debug.rst28 In combination, the "scan delay" and "scan size" determine the scan rate.
29 When "scan delay" decreases, the scan rate increases. The scan delay and
30 hence the scan rate of every task is adaptive and depends on historical
31 behaviour. If pages are properly placed then the scan delay increases,
32 otherwise the scan delay decreases. The "scan size" is not adaptive but
33 the higher the "scan size", the higher the scan rate.
35 Higher scan rates incur higher system overhead as page faults must be
42 ``scan_period_min_ms`` is the minimum time in milliseconds to scan a
46 ``scan_delay_ms`` is the starting "scan delay" used for a task when it
49 ``scan_period_max_ms`` is the maximum time in milliseconds to scan a
[all …]
/openbmc/linux/drivers/gpu/drm/
H A Ddrm_mm.c749 scan->mm = mm; in drm_mm_scan_init_with_range()
754 scan->color = color; in drm_mm_scan_init_with_range()
757 scan->size = size; in drm_mm_scan_init_with_range()
758 scan->mode = mode; in drm_mm_scan_init_with_range()
761 scan->range_start = start; in drm_mm_scan_init_with_range()
762 scan->range_end = end; in drm_mm_scan_init_with_range()
765 scan->hit_end = 0; in drm_mm_scan_init_with_range()
820 if (scan->alignment) { in drm_mm_scan_add_block()
832 min(col_end, scan->range_end) - adj_start < scan->size) in drm_mm_scan_add_block()
842 scan->hit_end = adj_start + scan->size; in drm_mm_scan_add_block()
[all …]
/openbmc/linux/drivers/net/wireless/ti/wl12xx/
H A Dscan.c27 if (!test_bit(i, wl->scan.scanned_ch) && in wl1271_get_scan_channels()
69 set_bit(i, wl->scan.scanned_ch); in wl1271_get_scan_channels()
101 if (wl->conf.scan.split_scan_timeout) in wl1271_scan_send()
138 if (wl->scan.ssid_len) { in wl1271_scan_send()
140 memcpy(cmd->params.ssid, wl->scan.ssid, wl->scan.ssid_len); in wl1271_scan_send()
147 wl->scan.ssid, wl->scan.ssid_len, in wl1271_scan_send()
148 wl->scan.req->ie, in wl1271_scan_send()
210 switch (wl->scan.state) { in wl1271_scan_stm()
217 if (wl->scan.req->no_cck) { in wl1271_scan_stm()
234 if (wl->scan.req->no_cck) { in wl1271_scan_stm()
[all …]
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/dvm/
H A Dscan.c615 struct iwl_scan_cmd *scan; in iwlagn_request_scan() local
659 scan = priv->scan_cmd; in iwlagn_request_scan()
681 scan->suspend_time = 0; in iwlagn_request_scan()
721 scan->direct_scan[p].len = in iwlagn_request_scan()
851 scan_cmd_size - sizeof(*scan)); in iwlagn_request_scan()
871 scan->channel_count = in iwlagn_request_scan()
873 (void *)&scan->data[cmd_len]); in iwlagn_request_scan()
876 scan->channel_count = in iwlagn_request_scan()
879 (void *)&scan->data[cmd_len]); in iwlagn_request_scan()
883 if (scan->channel_count == 0) { in iwlagn_request_scan()
[all …]
/openbmc/entity-manager/src/
H A Dperform_probe.cpp30 FoundDevices& devices, const std::shared_ptr<PerformScan>& scan, in probeDbus() argument
36 for (const auto& [path, interfaces] : scan->dbusProbeObjects) in probeDbus()
81 const std::shared_ptr<PerformScan>& scan, FoundDevices& foundDevs) in probe() argument
132 cur = (std::find(scan->passedProbes.begin(), in probe()
133 scan->passedProbes.end(), in probe()
134 commandStr) != scan->passedProbes.end()); in probe()
172 cur = probeDbus(probeInterface, dbusProbeMap, foundDevs, scan, in probe()
219 _probeCommand(probeCommand), probeName(std::move(probeName)), scan(scanPtr) in PerformProbe()
224 if (probe(_probeCommand, scan, foundDevs)) in ~PerformProbe()
226 scan->updateSystemConfiguration(recordRef, probeName, foundDevs); in ~PerformProbe()
H A Dperform_scan.cpp53 const std::shared_ptr<PerformScan>& scan, size_t retries = 5) in getInterfaces() argument
73 timer->async_wait([timer, instance, scan, probeVector, in getInterfaces()
75 getInterfaces(instance, probeVector, scan, retries - 1); in getInterfaces()
80 scan->dbusProbeObjects[instance.path][instance.interface] = resp; in getInterfaces()
118 const std::shared_ptr<PerformScan>& scan, in processDbusObjects() argument
124 registerCallback(scan->_systemConfiguration, scan->objServer, path); in processDbusObjects()
147 const std::shared_ptr<PerformScan>& scan, in findDbusObjects() argument
151 for (const auto& [path, probeInterfaces] : scan->dbusProbeObjects) in findDbusObjects()
165 [interfaces, probeVector{std::move(probeVector)}, scan, in findDbusObjects()
190 scan, retries - 1); in findDbusObjects()
[all …]
/openbmc/u-boot/lib/zlib/
H A Ddeflate.c1148 if (*scan == *match) scan++;
1173 } while (*++scan == *++match && *++scan == *++match &&
1174 *++scan == *++match && *++scan == *++match &&
1175 *++scan == *++match && *++scan == *++match &&
1176 *++scan == *++match && *++scan == *++match &&
1247 } while (*++scan == *++match && *++scan == *++match &&
1248 *++scan == *++match && *++scan == *++match &&
1249 *++scan == *++match && *++scan == *++match &&
1250 *++scan == *++match && *++scan == *++match &&
1765 if (prev == *++scan && prev == *++scan && prev == *++scan) {
[all …]
/openbmc/linux/lib/zlib_deflate/
H A Ddeflate.c637 scan++, match++; in longest_match()
643 scan < strend); in longest_match()
648 if (*scan == *match) scan++; in longest_match()
651 scan = strend - (MAX_MATCH-1); in longest_match()
666 scan += 2, match++; in longest_match()
673 } while (*++scan == *++match && *++scan == *++match && in longest_match()
674 *++scan == *++match && *++scan == *++match && in longest_match()
675 *++scan == *++match && *++scan == *++match && in longest_match()
676 *++scan == *++match && *++scan == *++match && in longest_match()
677 scan < strend); in longest_match()
[all …]
/openbmc/linux/arch/sparc/mm/
H A Dio-unit.c100 unsigned long rotor, scan, limit; in iounit_get_area() local
117 scan = rotor; in iounit_get_area()
118 nexti: scan = find_next_zero_bit(iounit->bmap, limit, scan); in iounit_get_area()
119 if (scan + npages > limit) { in iounit_get_area()
122 scan = iounit->limit[j - 1]; in iounit_get_area()
130 for (k = 1, scan++; k < npages; k++) in iounit_get_area()
131 if (test_bit(scan++, iounit->bmap)) in iounit_get_area()
133 iounit->rotor[j - 1] = (scan < limit) ? scan : iounit->limit[j - 1]; in iounit_get_area()
134 scan -= npages; in iounit_get_area()
138 set_bit(scan, iounit->bmap); in iounit_get_area()
[all …]
/openbmc/linux/tools/power/cpupower/utils/
H A Dcpufreq-set.c66 const char *scan; in string_to_frequency() local
74 for (scan = str; isdigit(*scan) || *scan == '.'; scan++) { in string_to_frequency()
75 if (*scan == '.' && match_count == 0) in string_to_frequency()
77 else if (*scan == '.' && match_count == 1) in string_to_frequency()
81 if (*scan) { in string_to_frequency()
85 scan[i] && tolower(scan[i]) == unit->str_unit[i]; in string_to_frequency()
88 if (scan[i]) in string_to_frequency()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/x11vnc/files/
H A DCVE-2020-29074.patch9 Subject: [PATCH] scan: limit access to shared memory segments to current user
12 src/scan.c | 2 +-
15 diff --git a/src/scan.c b/src/scan.c
17 --- a/src/scan.c
18 +++ b/src/scan.c
/openbmc/linux/Documentation/driver-api/acpi/
H A Dscan_handlers.rst26 The core ACPI namespace scanning code in drivers/acpi/scan.c carries out basic
39 called ACPI scan handlers represented by the following structure::
49 take care of, list_node is the hook to the global list of ACPI scan handlers
56 to match a scan handler against each of them using the ids arrays of the
57 available scan handlers. If a matching scan handler is found, its .attach()
62 The device node's handler field is then populated with the address of the scan
66 interesting to the given scan handler and may be matched against the next scan
68 the namespace scan should be terminated due to a serious error. The error code
72 callbacks from the scan handlers of all device nodes in the given namespace
73 scope (if they have scan handlers). Next, it unregisters all of the device
[all …]
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/dvb-apps/
H A Ddvb-apps_1.1.1.20140321.bb7 file://dvb-scan-table \
31 install -d ${D}/${docdir}/dvb-apps/scan
36 cp -R --no-dereference --preserve=mode,links ${WORKDIR}/dvb-scan-table/* ${D}/usr/share/dvb
44 dvb-scan dvb-scan-dbg dvb-scan-data \
56 RDEPENDS:dvb-scan =+ "libdvbapi libdvbcfg libdvbsec"
76 FILES:dvb-scan = "${bindir}/*scan "
77 FILES:dvb-scan-dbg = "${bindir}/.debug/*scan"
78 FILES:dvb-scan-data = "${docdir}/dvb-apps/scan"
/openbmc/linux/drivers/net/wireless/ti/wlcore/
H A Dscan.c40 if (wl->scan.state == WL1271_SCAN_STATE_IDLE) in wl1271_scan_complete_work()
51 wl->scan.state = WL1271_SCAN_STATE_IDLE; in wl1271_scan_complete_work()
52 memset(wl->scan.scanned_ch, 0, sizeof(wl->scan.scanned_ch)); in wl1271_scan_complete_work()
53 wl->scan.req = NULL; in wl1271_scan_complete_work()
65 if (wl->scan.failed) { in wl1271_scan_complete_work()
348 wl->scan.ssid_len = ssid_len; in wlcore_scan()
349 memcpy(wl->scan.ssid, ssid, ssid_len); in wlcore_scan()
351 wl->scan.ssid_len = 0; in wlcore_scan()
355 wl->scan.req = req; in wlcore_scan()
356 memset(wl->scan.scanned_ch, 0, sizeof(wl->scan.scanned_ch)); in wlcore_scan()
[all …]
/openbmc/openbmc/meta-security/recipes-security/redhat-security/files/
H A Dfind-chroot-py.sh23 scan () { function
79 scan 3 '*' $1
85 scan 2 '*'
86 scan 1 '*.py'
H A Dfind-nodrop-groups.sh24 scan () { function
68 scan 3 '*' $1
74 scan 1 '*.so'
75 scan 2 '*'
H A Dfind-chroot.sh23 scan () { function
76 scan 3 '*' $1
82 scan 2 '*'
83 scan 1 '*.so'
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/hplip/hplip/
H A D050-fix-glibcisms.patch3 diff --git a/scan/sane/OrbliteScan/LinuxCommon.h b/scan/sane/OrbliteScan/LinuxCommon.h
5 --- a/scan/sane/OrbliteScan/LinuxCommon.h
6 +++ b/scan/sane/OrbliteScan/LinuxCommon.h
/openbmc/linux/drivers/net/wireless/marvell/libertas/
H A DREADME165 This command is used to do a specific scan.
178 Display the current contents of the driver scan table (ie. get the
179 scan results).
187 Initiate a customized scan and retrieve the results
197 bssid=xx:xx:xx:xx:xx:xx specify a BSSID filter for the scan
198 ssid="[SSID]" specify a SSID filter for the scan
200 dur=[scan time] time to scan for each channel in milliseconds
213 2) Perform an active scan for a specific SSID:
217 the current scan table intact, update existing or append new scan data:
222 matches with the new scan data:
[all …]
/openbmc/linux/drivers/iio/orientation/
H A Dhid-sensor-rotation.c24 } scan; member
82 vals[i] = rot_state->scan.sampled_vals[i]; in dev_rot_read_raw()
157 iio_push_to_buffers_with_timestamp(indio_dev, &rot_state->scan, in dev_rot_proc_event()
177 rot_state->scan.sampled_vals[0] = ((s16 *)raw_data)[0]; in dev_rot_capture_sample()
178 rot_state->scan.sampled_vals[1] = ((s16 *)raw_data)[1]; in dev_rot_capture_sample()
179 rot_state->scan.sampled_vals[2] = ((s16 *)raw_data)[2]; in dev_rot_capture_sample()
180 rot_state->scan.sampled_vals[3] = ((s16 *)raw_data)[3]; in dev_rot_capture_sample()
182 memcpy(&rot_state->scan.sampled_vals, raw_data, in dev_rot_capture_sample()
183 sizeof(rot_state->scan.sampled_vals)); in dev_rot_capture_sample()
187 sizeof(rot_state->scan.sampled_vals)); in dev_rot_capture_sample()
/openbmc/linux/drivers/net/wireless/ath/ath9k/
H A Dantenna.c313 antcomb->scan = false; in ath_select_ant_div_from_quick_scan()
441 if (!(antcomb->scan) && in ath_ant_div_conf_fast_divbias()
451 if (!(antcomb->scan) && in ath_ant_div_conf_fast_divbias()
458 if (!(antcomb->scan) && in ath_ant_div_conf_fast_divbias()
598 antcomb->scan = true; in ath_ant_try_scan()
606 antcomb->scan = true; in ath_ant_try_scan()
613 antcomb->scan = true; in ath_ant_try_scan()
619 antcomb->scan = false; in ath_ant_try_scan()
796 antcomb->scan = true; in ath_ant_comb_scan()
800 if (!antcomb->scan) { in ath_ant_comb_scan()
[all …]
/openbmc/qemu/scripts/coverity-scan/
H A Drun-coverity-scan105 -t coverity-scanner -f scripts/coverity-scan/coverity-scan.docker \
106 --extra-files scripts/coverity-scan/run-coverity-scan \
119 …wget https://scan.coverity.com/download/cxx/linux64 --post-data "token=$COVERITY_TOKEN&project=$PR…
126 …wget https://scan.coverity.com/download/cxx/linux64 --post-data "token=$COVERITY_TOKEN&project=$PR…
361 ./run-coverity-scan --version "$VERSION" \
431 https://scan.coverity.com/builds?project="$PROJNAME"
/openbmc/u-boot/drivers/input/
H A Dcros_ec_keyb.c49 struct mbkp_keyscan scan; in check_for_keys() local
53 if (cros_ec_scan_keyboard(dev->parent, &scan)) { in check_for_keys()
57 *samep = last_scan_valid && !memcmp(&last_scan, &scan, sizeof(scan)); in check_for_keys()
66 memcpy(&last_scan, &scan, sizeof(last_scan)); in check_for_keys()
73 data = scan.data[bit / 8]; in check_for_keys()
/openbmc/linux/mm/
H A Dmemfd.c79 int error, scan; in memfd_wait_for_pins() local
84 for (scan = 0; scan <= LAST_SCAN; scan++) { in memfd_wait_for_pins()
91 if (!scan) in memfd_wait_for_pins()
93 else if (schedule_timeout_killable((HZ << scan) / 200)) in memfd_wait_for_pins()
94 scan = LAST_SCAN; in memfd_wait_for_pins()
113 if (scan == LAST_SCAN) in memfd_wait_for_pins()

12345678910>>...27